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

SetAsync / DataStoreService not working with table?

Asked by 4 years ago

Gives me an error with "ServerScriptService.DataStore:33: attempt to index number with 'cash'

01local DataStoreService = game:GetService("DataStoreService")
02local cashStore = DataStoreService:GetDataStore("PlayerCash")
03 
04 
05game.Players.PlayerAdded:Connect(function(player)
06 
07    local leaderstats = Instance.new("Folder")
08    leaderstats.Name = "leaderstats"
09    leaderstats.Parent = player
10 
11    local Cash = Instance.new("IntValue")
12    Cash.Name = "Cash"
13    Cash.Parent = leaderstats
14 
15    local Wins = Instance.new("IntValue")
View all 60 lines...
0
I think you have to put Cash.Value = data.Cash Wins.Value = data.Wins instead of Cash.Value = data.cash Wins.Value = data.wins but i'm not sure Punctist 120 — 4y
0
False, i have two variables inside the table that are called "cash", "wins", which i'm trying to access from when the pcall is called success. ZOOP1015 44 — 4y

1 answer

Log in to vote
0
Answered by 4 years ago

[SOLVED]

Seems to be that everything worked fine, but for some reason, I had to add an if statement to if the data exists.

REVAMPED CODE :

01local DataStoreService = game:GetService("DataStoreService")
02local cashStore = DataStoreService:GetDataStore("PlayerIntegerSave")
03 
04 
05game.Players.PlayerAdded:Connect(function(player)
06 
07    local leaderstats = Instance.new("Folder")
08    leaderstats.Name = "leaderstats"
09    leaderstats.Parent = player
10 
11    local Cash = Instance.new("IntValue")
12    Cash.Name = "Cash"
13    Cash.Parent = leaderstats
14 
15    local Wins = Instance.new("IntValue")
View all 67 lines...
Ad

Answer this question