#Checking player count
8 messages · Page 1 of 1 (latest)
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
Apologies, but I've figured it out
no worries