So I got message from Roblox that I need to delete data for some user. Now I don’t know how to do that since I never deleted any data from datastores yet. I am using Datastore2.
So I have used Datastore editor, and it says that there is no data, but I might be entering wrong name for datastore. Is DATA/[userid] the correct name for the datastore?
local DataStore2 = require(1936396537)
DataStore2.Combine("DATA", "InGameCurrency")
Players.PlayerAdded:Connect(function(Player)
local InGameCurrency = DataStore2("InGameCurrency", Player)
end)