Should I use a Configuration or a folder to store configuration of a object?
Usually it would be a configuration object, unless you’re using something that forces a folder to be used instead.
1 Like
Thank you! I will indead use a configuration object for my project.
1 Like
If you want to store something other than Value objects (such as IntValue or Vector3Value), then use a Folder, as configuration objects don’t allow anything other than Value Objects to be stored inside them. But if you’re only going to be using objects like Color3Value and CFrameValue, then you can use the Configuration object to store them.
2 Likes