(CLOSED) How to fix this Data Store? [closed]
I need help with a script with data stores, I want to correct the mistakes because when I tested it out the only thing this has done was remove my stats. I want it to actually save it then load it back again when the player leaves and comes back.
01 | local datastore = game:GetService( "DataStoreService" ):GetDataStore( "PlayerStats" ) |
03 | game.Players.PlayerRemoving:connect( function (player) |
04 | player:WaitForDataReady() |
06 | local stats = player:FindFirstChild( "leaderstats" ):GetChildren() |
10 | datastore:SetAsync(stats [ i ] .Name, stats [ i ] .Value) |
15 | game.Players.PlayerAdded:connect( function (newplayer) |
16 | newplayer:WaitForDataReady() |
18 | local stats 2 = newplayer:FindFirstChild( "leaderstats" ):GetChildren() |
21 | stats 2 [ i ] .Value = datastore:GetAsync(stats 2 [ i ] .Name) |
The script below is the script for making the leaderstats.
NOTE THE TWO CODES ARE IN DIFFERENT SCRIPTS!
01 | game.Players.PlayerAdded:connect ( function (plr) |
02 | local leaderstats = Instance.new( "Model" ,plr) |
03 | leaderstats.Name = "leaderstats" |
05 | local lvl = Instance.new( "IntValue" , leaderstats) |
09 | local currency = Instance.new( "IntValue" , leaderstats) |
10 | currency.Name = "Gold" |
end)