#Checking player count

8 messages · Page 1 of 1 (latest)

valid girder
#

use a while true do loop

#

for example

#

while true do
  if playerCount >= minPlayers then
    startRound()
  end
end
#

and an easier way to track the player count is this:

#
while true do
  if #game.Players:GetPlayers() >= minPlayers then
    startRound()
  end
end
#

you can use #game.Players:GetPlayers() to get the number of players in the game

dire creek
#

Apologies, but I've figured it out

valid girder
#

no worries