I have recieved an message on roblox telling me to erase someones data from my game, this means my data stores etc.
I have downloaded this plugin: DataStore Editor - Roblox and I have installed it and it asks for a name, so I fill it in with the UserID of the account in question.
Then I select the game and then another page comes up with me requesting for a key, so I input the UserID as some people have been saying that it should be that, and it seems it is incorrect.
I used to have another game before I overrided it with my main game, which did have a key.
(I have never done this before, or recieved a message from roblox to do this, so this is very new for me).
Edit: I have now managed to remove all of the instances inside of the datastore that related to the users ID, thanks so much for everyone here helping me and making me understand a lot about this than I would of done prior to this post.
Setting a datastore key to nil will remove the data, regardless of your datastoring interface. As long as you know the key, and aren’t saving to multiple keys, this is sufficient.
If you know how to save the data in the first place, you know how to wipe data as well.
For each game, you need to see how you initially saved the user data in your data persistence scripts. You should have needed to construct a string key from either their username or user ID, because this is literally the only GUID we get for players in Roblox.
As stated by others, you must then set the data at that key to nil. Make sure you do this for every game on your profile that could possibly have saved data, and for every key where data is stored.
You are most welcome, I am just wondering what I can do to remove this, as I don’t want to get into trouble for having this sort of data which shouldn’t be there.
If you just overwrote the place with another, the place still contains the user data in its data stores. Even though this data is not accessible in the current version of the game, it still exists, and tou are in violation of the GDPR Right to Erasure unless you clear them.
Thanks so much to everyone has replied to this thread, it has sure helped me know a lot about this, and I think it has helped many others who might have some questions about it.
Edit: I have used about 4 methods to remove the UserID from all of my datastores (as I wanted to make sure they was for sure gone), all of the keys were the UserID so it was alright to do. I then verified if it was still there by doing a script which someone else suggested on the devforum and it came back as blank (which meant there was 0 results found).
So yeah, thanks so much for everyones help as it sure helped me delete their data successfully and will help many other developers going through the same issues resolve it.