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

Why does this continue to countdown, even when the game was supposed to end?

Asked by 6 years ago

It tests to see if there is 1 player left, it works sometimes but usually after a couple of rounds (give or take a few) it will start counting down all the way to 0, even when the game should end.

for i = 60,0,-1 do
        if i == 0 then
            status.Value = 'Game Over, Prepare For Next Round!'
            break
        end
        wait(1)
        if #_G.gameplayers == 1 then
            for i, v in pairs(_G.gameplayers) do
                if v ~= nil then
                    status.Value = v..' Has Won!'
                    game.Players[v].leaderstats.Coins.Value = game.Players[v].leaderstats.Coins.Value + 15
                    game.Players[v].leaderstats.Wins.Value = game.Players[v].leaderstats.Wins.Value + 1
                    break
                end
            end
            break
        else
            status.Value = i..' Seconds Left!'
        end
    end

2 answers

Log in to vote
0
Answered by 6 years ago

You have told it to die when there are no players left, this means that it will kill the script and the timer.

Ad
Log in to vote
0
Answered by 6 years ago

You put a ' instead you needed to put "

So this should work!

for i = 60,0,-1 do
        if i == 0 then
            status.Value = "Game Over, Prepare For Next Round!"
            break
        end
        wait(1)
        if #_G.gameplayers == 1 then
            for i, v in pairs(_G.gameplayers) do
                if v ~= nil then
                    status.Value = v.." Has Won!"
                    game.Players[v].leaderstats.Coins.Value = game.Players[v].leaderstats.Coins.Value + 15
                    game.Players[v].leaderstats.Wins.Value = game.Players[v].leaderstats.Wins.Value + 1
                    break
                end
            end
            break
        else
            status.Value = i.." Seconds Left!"
        end
    end

0
I was reviewing the script, and I found that you put a ' instead of the " ZAZC_Noob 7 — 6y

Answer this question