Is it possible to save anything inside Folder?

The fact that those functions each have the red “deprecated” banner should be a very glaring red flag that no they are not solutions to your problem. You should not be using deprecated items for new work.

You are able to save things inside folders but they must be transferrable into a primitive Lua datatype excluding the types function, thread and userdata. If you want to be able to “save a model”, then what you actually need to be doing is saving an indicator of some kind about the model (such as its name). When you load data, you look if this string exists and then fetch a model out of ServerStorage.

Remember that folders superseded using models as containers for objects, so if you aren’t making an assembly of parts, you should be using folders. It’d probably be easier this way for you because then you can write a function that will take a folder and transform it into a dictionary.

By the way - stop using the parent argument of Instance.new.