i need help and if you can fix it thanks you so much
while true do
Status.Value = "Waiting for enough player" repeat wait() until game.Players.Numplayer >= 2 Status.Value = "intermission" wait(8) local plrs = {} for i, player in pairs(game.Players:GetPlayers()) do if player then table.insert(plrs,player) -- Add each player into plrs table end end
Status.Value = "Waiting for enough player" repeat wait() until #game.Players:GetPlayers() >= 2 Status.Value = "intermission" wait(8) local plrs = {} for i, player in pairs(game.Players:GetPlayers()) do if player then table.insert(plrs,player) -- Add each player into plrs table end end