if game.Players.NumPlayers >= 3 then script.Parent.Text = "Intitializing..." wait(10) script.Parent.Text = ("Choosing map...") wait(9) for i = 10 ,1, 0 do script.Parent.Text = ("Countdown:" ..i) end end
Well, it seems like it should work... No syntax problems. What do you mean it doesn't show 3rd player? Try removing the brackets around the pieces of text. That could be stuffing it up.
if game.Players.NumPlayers >= 3 then script.Parent.Text = "Initializing..." wait(10) script.Parent.Text = "Choosing map..." wait(9) for i = 10, 1, 0 do script.Parent.Text = "Countdown: " ..i end end
See if that works, or try making a function with the code in it then call it like this:
if game.Players.NumPlayers >= 3 then RoundFunction() end