In a Datastore script when you make the things that are to be saved, lets say for example "Coins" do you have to put a value there like Coin.Value = 0 or is it not needed in a Datastore script
In a dataStore script, you need to create it, like so.
1 | local Folder = Instance.new( "IntValue" ,player) |
2 | Folder.Name = "Folder" |
3 |
4 | local Coins = Instance.new( "IntValue" ,Folder) |
5 | Coins.Name = "Coins" |
All values will automatically be 0 upon first entrance.
Then you need to create a table so that it will save. I'll leave that to you.
((Please attempt to script it, then post..))