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

UpdateAsync Broke After Changing Something? [SOLVED]

Asked by 5 years ago
Edited 5 years ago

So, I've been looking for answers all over for days on end. I haven't been able to find anything new for a while now, so I think asking a question here is my last option.

I've changed values around, I've changed the structure of the code, I've changed how the script accesses the values. But with no success. It did work at one point, but I needed to change it and now I can't remember for the life of me what I did.

If anyone can help, it would be greatly appreciated, here is the code:

01local dataStoreService = game:GetService("DataStoreService")
02local StatStore = dataStoreService:GetDataStore("StatStore")
03 
04game.Players.PlayerAdded:Connect(function(player)
05    game.Workspace:WaitForChild(player.Name)
06    player:WaitForChild("leaderstats")
07 
08    local Key = player.UserId
09 
10    local Leaderstats = player.leaderstats
11    local Steps = Leaderstats.Steps
12    local SpeedBoost = player.PlayerGui.Codes.SpeedBoost
13 
14    local DefaultData = {
15        ["Steps"] = 0,
View all 85 lines...

(SpeedBoost is a Bool value and Steps is an Int value)

1 answer

Log in to vote
0
Answered by 5 years ago

I eventually figured this out, so for anyone else that might have this problem, make sure the tables are single values.

Example:

01--Instead of:
02Stats = {
03    ["Steps"] = Leaderstats.Steps.Value,
04    ["SpeedBoost"] = SpeedBoost.Value
05}
06 
07--do:
08Stats = {
09    Leaderstats.Steps.Value,
10    SpeedBoost.Value
11}

Also, I found that PlayerGui gets removed before the player a lot, it's not at the same time. So just make sure you aren't trying to access values that are in the PlayerGui, an easy way around this is to just change where they're located.

When getting data, do:

1Steps.Value = Stats[1]
2--Not:
3Steps.Value = Stats

The [1] after Stats, is the first value in the Stats table, so for SpeedBoost you would just do Stats[2] because it's the second value in the Stats table.

Ad

Answer this question