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

Why is there a NumPlayers problem?

Asked by 9 years ago

I'm confused as to why when I use Code1 and test it in a server it works, but when I use Code2 and test it with a friend it doesn't work

Code1:

01while true do
02    wait()
03if game.Players.NumPlayers >= 1 then
04    gameReady = true
05    break
06else
07    timer.Value = "There needs to be 1 or more Player for Towergames to start."
08    gameReady = false
09    end
10end

Code2:

01while true do
02    wait()
03if game.Players.NumPlayers >= 2 then
04    gameReady = true
05    break
06else
07    timer.Value = "There needs to be 2 or more Players for Towergames to start."
08    gameReady = false
09    end
10end

1 answer

Log in to vote
0
Answered by 9 years ago

Wait() Pauses a script, you know. So basically I'd do this:

1while true do
2    wait() until game.Players.NumPlayers > 1
3    round()
4    wait(1)
5end

And put a function in the same script like this:

1function round()
2    -- PUT YOUR CODE HERE
3end
0
"ServerScriptService.GameScript:8: 'end' expected (to close 'while' at line 7) near 'until'" User#9949 0 — 9y
0
JUST LEMME IN STUDIO AND LET ME SEE THAT SCRIPT! NeonicPlasma 181 — 9y
Ad

Answer this question