How to clean up the whole data store

Last 5 days, I’ve been recieving messages from roblox to erasure one certain User ID



I deleted everything in my place and published it on roblox, but I’m still recieving these messages. Then I started to notice this message

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.

1 Like

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.

1 Like

Honestly, I have no idea how to get an access to the data store. What I need to do?

how to find out what my datastore looks like?