SpyCoderX SpyCoderX loading
So, cloud variables have a limit on their size (256 characters) and count (10 cloud variables), meaning they might not be the best for storing per-user settings.

But in case you want to use cloud variables regardless:

1. When a user closes the settings menu, you should save their settings.
2. When a user opens the project, load the settings.

Now, to save and load:

To save, we either add the user’s settings or update them.
Add - just find a cloud variable with space and save the user’s name and settings.
Update - find where the user’s settings are stored in the cloud variable and set the cloud variable to the cloud variable with the digits that are the user’s settings replaced with the current settings.

To load: just find the user’s settings in the cloud variables.

If you want more info / details just ask.