DataStore only occasionally saving/retrieving data?
So, I asked a question a day or two ago, about my DataStore not working. Well, it works now, but only occasionally.
I'm not sure what to do, because I don't wanna completely break it again, so I came here.
If anyone can help, I'm new to scripting so it would be appreciated. Here's my code:
01 | local dataStoreService = game:GetService( "DataStoreService" ) |
02 | local StatStore = dataStoreService:GetDataStore( "DataStats" ) |
04 | game.Players.PlayerAdded:Connect( function (player) |
05 | game.Workspace:WaitForChild(player.Name) |
06 | player:WaitForChild( "leaderstats" ) |
07 | player.PlayerGui.Codes.SpeedBoost.Parent = player |
09 | local Key = player.UserId |
11 | local Leaderstats = player.leaderstats |
12 | local Steps = Leaderstats.Steps |
13 | local SpeedBoost = player.SpeedBoost |
15 | local DefaultSteps = 0 |
28 | local recieved, notRecieved = pcall ( function () |
29 | NewStats = StatStore:GetAsync(Key) |
33 | Steps.Value = NewStats [ 1 ] |
34 | SpeedBoost.Value = NewStats [ 2 ] |
35 | print ( "Stats were recieved" ) |
37 | StatStore:SetAsync(Key, Stats) |
39 | StatStore:SetAsync(Key, DefaultData) |
40 | print ( "Stats were not recieved" ) |
47 | local saved, notSaved = pcall ( function () |
48 | StatStore:UpdateAsync(Key, function (oldValue) |
54 | print ( "Stats were auto saved!" ) |
56 | print ( "Stats didn't auto save." ) |
61 | game.Players.PlayerRemoving:Connect( function (player) |
62 | local Key = player.UserId |
64 | local Leaderstats = player.leaderstats |
65 | local Steps = Leaderstats.Steps |
66 | local SpeedBoost = player.SpeedBoost |
78 | local success, result = pcall ( function () |
79 | StatStore:UpdateAsync(Key, function (oldValue) |
85 | print ( "Stats were saved!" ) |
87 | print ( "Stats were not saved." ) |
Sorry if it's messy, like I said, I'm new to scripting.
Steps is an IntValue and SpeedBoost is a BoolValue.