Datastore per player. (It's ok?)

I might implement Berezaa’s method to save data, which would be saving a Datastore per player, however, i got some questions:

  • That would be ok?
  • Would Roblox accept this?

I found many threads related with using one Datastore per player, however, i’m not satisfied with the solutions of it. I would like to finish my Datastore module, thanks for reading.

1 Like

Datastores in Roblox can be thought of as one table. Where the datastore names and keys are further indexes into the table. The general practice is to use keys for separate players instead of a datastore for each player, but neither method has any technical issues.

2 Likes

This is the ideal way of doing so. I use DataStore2 (which is also using that method). it makes it easier to get the key when the player joins instead of having their key being compliacted.

1 Like

I think is can work but your data will take a lot of time to load, you can use DataStore2 is relly good for game with big trafic How to use DataStore2 - Data Store caching and data loss prevention

1 Like

If the purpose of the post was just to ask this then yes, why not?

Save data however you want, if you want.

1 Like