local label = game.StarterGui.ScreenGui.Frame.TextLabel while game.Players.NumPlayers < 2 do label.Text = "You need 2 players to start a round" repeat wait() until game.Players.NumPlayers >= 2 label.Text = "Round Starting Soon" end
the first text works but the second not why not?