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

Any tips when getting this error: Not running script because past shutdown deadline?

Asked by 5 years ago
Edited by chess123mate 5 years ago

My Server is printing this when I exit my game:
19:29:02.636 - Not running script because past shutdown deadline.

Any Tips?

Here's my script:

01local datastores = game:GetService("DataStoreService"):GetDataStore("MoneyDataStore")
02local deafultCash = 0
03local playersLeft = 0
04 
05 
06game.Players.PlayerAdded:Connect(function(player)
07 
08    playersLeft = playersLeft + 1
09 
10    local leaderstats = Instance.new("Folder")
11    leaderstats.Name = "leaderstats"
12    leaderstats.Parent = player
13 
14    local money = Instance.new ("IntValue")
15    money.Name = "Money"
View all 56 lines...

1 answer

Log in to vote
0
Answered by 5 years ago
Edited 5 years ago

My best guess is that the bindable event isn't firing (and/or playersLeft is still greater than 0), so at some point Roblox terminates the script (since it will only allow BindOnClose to run for at most 30 seconds).

I'd like to point out that if the SetAsync datastore call fails, playersLeft will permanently be above 0, which would cause the behaviour I just described.


(Edit)

You won't see any output if something errors in a pcall - you can check what it returns (it returns 'success, returnValueOrErrorMsg') and print out the error msg like this:

01game.Players.PlayerRemoving:Connect(function(player)
02    local success, msg = pcall(function()
03        datastores:SetAysnc(player.UserId.."-Money",player.leaderstats.Money.Value)
04        print("Saved")
05    end)
06    if not success then
07        print("Saving failed:", msg)
08    end
09    playersLeft = playersLeft - 1
10    bindabaleEvent:Fire()
11    end)
12end)

Notice how 'playersLeft' decreases even if the saving fails.

0
Do you have any places I should edit my script in? tyorange09 4 — 5y
0
It was that I misspelled Async in the one infront of playersLeft = playersLeft - 1 tyorange09 4 — 5y
0
It has no errors but its still not saving the data! tyorange09 4 — 5y
0
local datastores = game:GetService("DataStoreService"):GetDataStore("MoneyDataStore") local deafultCash = 0 local playersLeft = 0 game.Players.PlayerAdded:Connect(function(player) playersLeft = playersLeft + 1 local leaderstats = Instance.new("Folder") leaderstats.Name = "leaderstats" leaderstats.Parent = player local money = Instance.new ("IntValue") money.Name = "Money" money.Valu tyorange09 4 — 5y
Ad

Answer this question