Hello! I maked this simple timer but I don't how can I break this loop if will be just 2 players on the game. Anyone know what can I add?
while true do t = 10 repeat t = t-1 s.Value = "Time Left: " ..t wait(1) until t==0 end
Place all of this in the spot where you want to break.
local bruh = game.Players:GetChildren() if #bruh >= 2 then break end