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:
01 | local dataStoreService = game:GetService( "DataStoreService" ) |
02 | local StatStore = dataStoreService:GetDataStore( "StatStore" ) |
04 | game.Players.PlayerAdded:Connect( function (player) |
05 | game.Workspace:WaitForChild(player.Name) |
06 | player:WaitForChild( "leaderstats" ) |
08 | local Key = player.UserId |
10 | local Leaderstats = player.leaderstats |
11 | local Steps = Leaderstats.Steps |
12 | local SpeedBoost = player.PlayerGui.Codes.SpeedBoost |
16 | [ "SpeedBoost" ] = false |
20 | local recieved, notRecieved = pcall ( function () |
21 | Stats = StatStore:GetAsync(Key) or DefaultData |
26 | SpeedBoost.Value = Stats |
27 | print ( "Stats were recieved" ) |
29 | StatStore:SetAsync(Key, DefaultData) |
30 | print ( "Stats were not recieved" ) |
37 | [ "Steps" ] = Leaderstats.Steps.Value, |
38 | [ "SpeedBoost" ] = player.PlayerGui.Codes.SpeedBoost.Value |
42 | local saved, notSaved = pcall ( function () |
43 | StatStore:UpdateAsync(player.UserId, function (oldValue) |
44 | print ( "Stats were auto saved!" ) |
53 | game.Players.PlayerRemoving:Connect( function (player) |
54 | local User = game.Players:FindFirstChild(player.Name) |
56 | local Leaderstats = User.leaderstats |
57 | local NewSteps = script.Parent.StepLoop.Steps |
58 | local Steps = Leaderstats.Steps |
59 | local SpeedBoost = User.PlayerGui.Codes.SpeedBoost |
63 | [ "SpeedBoost" ] = false |
66 | local Key = User.UserId |
69 | [ "Steps" ] = Leaderstats.Steps.Value, |
70 | [ "SpeedBoost" ] = User.PlayerGui.Codes.SpeedBoost.Value |
73 | local success, result = pcall ( function () |
74 | StatStore:UpdateAsync(Key, function (oldValue) |
80 | print ( "Stats were saved" ) |
82 | print ( "Stats were not saved" ) |
(SpeedBoost is a Bool value and Steps is an Int value)