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

DataStore only occasionally saving/retrieving data?

Asked by 5 years ago

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:

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

Sorry if it's messy, like I said, I'm new to scripting.

Steps is an IntValue and SpeedBoost is a BoolValue.

1 answer

Log in to vote
0
Answered by
hopup 15
5 years ago

It seems like you're updating it too often, which might exhaust the datastore, so I'd recommend changing the update interval to at least 60 seconds.

0
I knew it was too often, I only had it at 10 for testing purposes. But I'll try changing it anyway, thanks. kkkeelan999 92 — 5y
0
It seems to work every time now, I can't believe I didn't think to change that. Thanks again! kkkeelan999 92 — 5y
Ad

Answer this question