I currently have a point system that the players of my game use to earn points via completing obby’s, completing tasks etc. But my problem is that often people join the game and all there points have disappeared. So I was wondering if it’s possible to back up points to an external database like glitch or firebase of another sort of database.
Any help would be appreciated, thanks .
BrightZebrafish.
From what I understood, you want to implement an data persistance system. If so, you can use Roblox’s built-in solution, Data Stores. You should check out Data Stores as that really skips over the complexity of setting up an external hosted database.
Are you 100% sure their points have disappeared? Data inside of a datastore never gets deleted unless it was set to nil on accident, or deleted via a method manually.
Try checking to see if there is data in your datastores. If there is data, that means there is a problem in your loading. If there isn’t any, there’s an issue with saving. As for helping players who have lost their data, you can revert them back to a previous version.