DataStore problems, Causing "not running script because past shutdown deadline"?
01 | game.Players.PlayerRemoving:Connect( function (player) |
02 | local ID = currencyName.. "_" ..player.UserId |
03 | DataStore:SetAsync(ID, { player.leaderstats [ currencyName ] .Value, |
04 | player.leaderstats [ currencyName 2 ] .Value, |
05 | player.leaderstats [ currencyName 3 ] .Value } ) |
08 | game:BindToClose( function () |
09 | for i, player in pairs (game.Players:GetPlayers()) do |
11 | local ID = currencyName.. "_" ..player.UserId |
12 | DataStore:SetAsync(ID, { player.leaderstats [ currencyName ] .Value, |
13 | player.leaderstats [ currencyName 2 ] .Value, |
14 | player.leaderstats [ currencyName 3 ] .Value } ) |
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.