What is secure data?
-Secure data is a way to secure play data. Today we often use Datastores to save our players data. I wanted to introduce a new and secure way of doing this, without the Datastore. The “Secure Data | v1” methods can accomplish this for a small price.
What is the “Secure Data | v1” method?
-The “Secure Data | v1” method is something different, something that I haven’t seen yet. This method makes a Token for every user that joins the game. This token will look something similar to this: “efjhfiehafafaeigeago.fwhiehgiuehgirhigrh.ahgiueghiuhg” (not a real token), these tokens translate/decode to things similar to this:
{
{Name = “Cash”, Value = 100,},
{Name = “isBanned”, Value = “true”
}
etc.
Some people may not like this idea.
It won’t be really “secure” if it’ll be public. Everyone would be able easily insert it into the game and see the method to encode & decode these tokens.
Also is this module server-side only like Roblox’s DataStores?