Hey developers,
I own a tycoon game with a current flow of players of 100+ and this issue is heavily impacting my player count due to taking out the challenge of what keeps players entertained.
I didn’t notice this till a few days after it happened and I permanently banned the user from the experience, Is there any way I can reset his specific stat without resetting any others?
local datastore = game:GetService("DataStoreService"):GetDataStore("Datastore Name")
local userid = 3362212863 --his userid (yes, it is his)
datastore:RemoveAsync(userid)
It can also work with ordered datastores.
local datastore = game:GetService("DataStoreService"):GetOrderedDataStore("Datastore Name")
local userid = 3362212863 --his userid (yes, it is his)
datastore:RemoveAsync(userid)