Please note that you must delete the User ID from all of your records, and not just from your data stores. The pages linked above are provided for informational purposes and are not intended to provide a comprehensive method of deleting User IDs.
Regards,
The Roblox Team"
How could I remove the id from my datastore? Because the player id given to me by Roblox no longer exists, I tried looking up his profile and it doesn’t exist.
So yes, they aren’t going to exist on the roblox platform because that is data to them. They invoked their right to be forgotten. But their UserId is still valid inside Datastores if used etc.
You can use plugins or write your own quick little script or command on the command bar and remove their data using their Key’s and your datastore names.
Assuming you are normal and keep your key their UserId, just do: game:GetService("DataStoreService"):GetDataStore("YOUR_DATASTORE_HERE"):RemoveAsync("97730722")
It depends on the key you’ve saved the data under. Most of the time it isn’t just the userId, as people usually add a prefix - all depends on how you did it.