Starting a round with a certain amount of player required

So i want to only start a round if there are min of 5 players in the server how can i do that?

Hello, there are many ways to go about this but you could do something like…

while true do
    wait(1)
    if #game.Players:GetChildren() >= 5 then
        -- Do code stuff here.
    else
        -- Not enough players in the games.
    end
end