Is there a way to put an instance into a low-memory state?

An option would be setting the instance’s parent to nil and then reassigning it to a DataModel descendant once you need the instance again. This way, it will not interfere with other stuff until you want it to.

You should change any objects’ properties, if possible, while they have a nil ancestor for optimal performance results.

Note: Any events prevously connected to that instance would have to be manually disconnected.

1 Like