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

DataStore problems, Causing "not running script because past shutdown deadline"?

Asked by 6 years ago
01game.Players.PlayerRemoving:Connect(function(player) -- when player leaves
02    local ID = currencyName.."_"..player.UserId
03    DataStore:SetAsync(ID,{player.leaderstats[currencyName].Value,
04        player.leaderstats[currencyName2].Value,
05    player.leaderstats[currencyName3].Value})
06end)
07 
08game:BindToClose(function() -- when game is shutting down
09    for i, player in pairs(game.Players:GetPlayers()) do
10        if player then
11            local ID = currencyName.."_"..player.UserId
12            DataStore:SetAsync(ID,{player.leaderstats[currencyName].Value,
13            player.leaderstats[currencyName2].Value,
14            player.leaderstats[currencyName3].Value})
15        end
16    end
17end)

Error caused: Not running script because past shutdown deadline

Can't seem to figure out what is causing it as it shouldn't take 30seconds to save to the datastore, which is the only thing both of these do.. Anyone got any clues to what I am doing wrong?

Thanks in advance.

0
I got that too, I think it is because of the Bind to close. idk how to fix it though greatneil80 2647 — 6y
0
It is.The game needs to shut down eventually. User#19524 175 — 6y
0
It takes a long time to shutdown though now :/ Dogszss 0 — 6y
0
Same here. It gives me this error but it saves. xJathur95x 129 — 6y

Answer this question