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:
01 | game.Players.PlayerRemoving:Connect( function (player) |
02 | local success, msg = pcall ( function () |
03 | datastores:SetAysnc(player.UserId.. "-Money" ,player.leaderstats.Money.Value) |
07 | print ( "Saving failed:" , msg) |
09 | playersLeft = playersLeft - 1 |
Notice how 'playersLeft' decreases even if the saving fails.