You can write your topic however you want, but you need to answer these questions:
What do you want to achieve? Keep it simple and clear!
I want to clear everything(Datastores, Datasaves, and stuff like that) from my game, I basically want no data of the kohls admin in my game stored.
What is the issue? Include screenshots / videos if possible!
I can’t do^
What solutions have you tried so far? Did you look for solutions on the Developer Hub?
I tried removing the admin and adding it back.
It’s difficult to read, but you’ll have to go through the source of this module (the one the admin runs on) and see which Datastores it uses. Then you’ll have to do your best to clear them; I’m unsure if it saves data for every player, but if it does you’re likely out of luck to remove completely everything.
After that, just delete the main script and you should be good!
The khol’s admin should have something called “DataStoreKey” or “Key” as a setting. Change this from it’s current string to a different string. All you need to do is change one character and it will reset all of the data with khol’s admin in your game. It doesn’t matter what it says or which character you change.
The only luck you can get clearing a DataStore from your game is to hope that it doesn’t use any arbitrary values for either the DataStore name, scope or a key. If it does, you won’t really be able to clear it since you can’t sift the DataStores in your game. Best to just ignore it.
If they use concrete strings, then you can call RemoveAsync on all possible keys until you’re certain storage is gone. DataStore clearing is difficult since you can’t just have a nice tree view of the key-value pairs associated with the DatsStores used in your game.
I’ve looked through the khol’s admin script and they don’t give you any options for resetting the data. You could always make a new game though if it was really important, otherwise your best bet is to do what @colbert2677 advised.
You could also simply just use a different admin, there are plenty of admins with way more customizability than the one you are currently using. You could try using adonis, which is relatively alike to the admin you are currently using, but it gives you way more control when manipulating data and storing information.