How I understand, User ID located in data store, but I dont know how to remove the user ID from it. Please help me to clean up the whole data store, or at least this User ID from data store. If you dont know how to make this, it would be nice if you will tell me how to insert data store and how it works
As far as I am concerned, this message is sent to the owner or developers every game the recipient of the right of erasure request has played. This is only essential if your game logs user data in datastores that you have created. If you have a datastore that the recipient’s user information is logged on, then let me know and I can help you.
It varies based on how your datastore structure looks like, but generally:
Games will save player data using their player ID. Generally, your datastore keys might look something like this: <prefix, if any>_<playerId>
When you know how your datastore structure looks like, it’s easy to remove a specific player’s data from their datastores, using: datastore:RemoveAsync(<prefix, if any>_<playerId>), or just by setting it to nil.
The quickest and dirtiest way to do so is to run this in a command bar.
For data erasure requests specifically however, keep in mind that you have to do the same for all your datastores.