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:
01 | while true do |
02 | wait() |
03 | if game.Players.NumPlayers > = 1 then |
04 | gameReady = true |
05 | break |
06 | else |
07 | timer.Value = "There needs to be 1 or more Player for Towergames to start." |
08 | gameReady = false |
09 | end |
10 | end |
Code2:
01 | while true do |
02 | wait() |
03 | if game.Players.NumPlayers > = 2 then |
04 | gameReady = true |
05 | break |
06 | else |
07 | timer.Value = "There needs to be 2 or more Players for Towergames to start." |
08 | gameReady = false |
09 | end |
10 | end |
Wait()
Pauses a script, you know. So basically I'd do this:
1 | while true do |
2 | wait() until game.Players.NumPlayers > 1 |
3 | round() |
4 | wait( 1 ) |
5 | end |
And put a function in the same script like this:
1 | function round() |
2 | -- PUT YOUR CODE HERE |
3 | end |