What do do about "Right to Erasure - Action Requested"?

I got a message from Roblox telling me to remove a user Id from my records but I don’t even use data stores at all. I tried to figure out how to delete the user Id but I can’t seem to figure it out.

If you have a data store editor tool, you can easily edit the data store out and fix that. Alternatively, you want to run RemoveAsync on the stores if you remember the stores’ names and that you have been using them.

I got this one but I don’t know how to use it.
DataStoreEditor

The description featured a tutorial.

I think to use it you need the name of the data store but I don’t know where it is located

That’s sort of complicated now. I guess you can try contacting support regarding that because you are not able to identify what the data store is.

I realized that I use HD Admin in my game and it uses Data stores so I made this script that hopefully got rid of the user id.

local DataStoreService = game:GetService("DataStoreService")
local playerDataStore = DataStoreService:GetDataStore("HDAdminPlayerData")

playerDataStore:RemoveAsync("UserId")
print("Done")
2 Likes