Saving Data Persistence issue?
My script has been working for quite a while, but recently I've had to flip variables around and junk to make the script is cleaner. After I did, I got a strange error: Workspace.Leaderboard Script:28: attempt to index global 'Cash' (a nil value) what could this mean? My appreciation in advanced for any help you can give.
01 | game.Players.PlayerAdded:connect( function (padd) |
04 | local PlayerBag = Instance.new( "Configuration" ,padd) |
05 | local LeaderStats = Instance.new( "Model" ,padd) |
06 | local Cash = Instance.new( "IntValue" ,LeaderStats) |
07 | local item 1 = Instance.new( "BoolValue" ,PlayerBag) |
10 | PlayerBag.Name = "PlayerBag" |
11 | LeaderStats.Name = "leaderstats" |
16 | padd:WaitForDataReady() |
17 | Cash.Value = padd:LoadNumber( "Cash" ) |
18 | item 1. Value = padd:LoadNumber( "Item1" ) |
22 | game.Players.PlayerRemoving:connect( function (premove) |
23 | local leaderstats = premove:FindFirstChild( "leaderstats" ) |
24 | local playerbag = premove:FindFirstChild( "PlayerBag" ) |
26 | local cash = leaderstats:FindFirstChild( "Cash" ) |
28 | premove:SaveNumber( "Cash" ,Cash.Value) |
32 | local i 1 = PlayerBag:FindFirstChild( "item1" ) |
34 | premove:SaveBoolean( "Item1" ,i 1. Value) |
41 | for _,Player in pairs (game.Players:GetPlayers()) do |
42 | if Player:FindFirstChild( "leaderstats" ) then |
43 | Player.leaderstats.Cash.Value = Player.leaderstats.Cash.Value + 1 |