Why isn't this save data script working anymore?
I made this script a while back. After a while, it didn't seem to work anymore.
What happened was it only understood I have one thing. of an array of ten.
here's the script.
04 | plr:WaitForDataReady() |
05 | plr.leaderstats.Gems.Value = plr:LoadNumber( "Gems" ) |
08 | plr.BCGems.Value = plr:LoadNumber( "BCGems" ) |
10 | ge = plr.Gems:GetChildren() |
13 | ge [ i ] .Value = plr:LoadNumber( tostring (i)) |
16 | bc = plr.BCoins:GetChildren() |
19 | bc [ i ] .Value = plr:LoadNumber( tostring (i)) |
25 | ge = oplr.Gems:GetChildren() |
26 | oplr:SaveNumber( "Gems" ,oplr.leaderstats.Gems.Value) |
28 | oplr:SaveNumber( "BCGems" ,oplr.leaderstats.BCGems.Value) |
31 | oplr:SaveNumber(i,ge [ tostring (i) ] .Value) |
34 | bc = oplr.BCoins:GetChildren() |
37 | oplr:SaveNumber(i,bc [ tostring (i) ] .Value) |
42 | game.Players.PlayerAdded:connect(Enter) |
43 | game.Players.PlayerRemoving:connect(Exit) |
It used to work.
Please help. This is the game:
http://www.roblox.com/games/249848896/AE-NC-Test-Demo
Thanks!
-ds