Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Saving Data Persistence issue?

Asked by
jtefurd 50
10 years ago

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.

01game.Players.PlayerAdded:connect(function(padd)
02 
03--Variables
04local PlayerBag=Instance.new("Configuration",padd)
05local LeaderStats=Instance.new("Model",padd)
06local Cash=Instance.new("IntValue",LeaderStats)
07local item1=Instance.new("BoolValue",PlayerBag)
08 
09--Names
10PlayerBag.Name="PlayerBag"
11LeaderStats.Name="leaderstats"
12Cash.Name="Cash"
13item1.Name="Item1"
14 
15--DataReady
View all 46 lines...
1
Use Datastore not Data Persistence FearMeIAmLag 1161 — 10y

1 answer

Log in to vote
1
Answered by 10 years ago

Try this instead

01game.Players.PlayerAdded:connect(function(padd)
02 
03--Variables
04local PlayerBag=Instance.new("Configuration",padd)
05local LeaderStats=Instance.new("Model",padd)
06local Cash=Instance.new("IntValue",LeaderStats)
07local item1=Instance.new("BoolValue",PlayerBag)
08 
09--Names
10PlayerBag.Name="PlayerBag"
11LeaderStats.Name="leaderstats"
12Cash.Name="Cash"
13item1.Name="Item1"
14 
15--DataReady
View all 46 lines...
Ad

Answer this question