Hi, I just recieved a right to erasure request for my game and the only known thing in the game that uses datastore is HD admin, don’t judge, it’s a game from a few years ago Does anyone know of the datastore names so i can remove them? Is there a better category that i can use other than help and feedback? (please let me know!)
1 Like
Took a look into it.
It seems data is saved under the DataStore “HDAdminPlayerDataV1.0”, try running this in the command bar:
local userId = 123456 -- change this to the erasure requester's user ID
game:GetService('DataStoreService'):GetDataStore('HDAdminPlayerDataV1.0'):SetAsync(userId, nil)
2 Likes