getgenv().On = true local ReplicatedStorage = game:GetService("ReplicatedStorage") while getgenv().On == true do for i,v in pairs(workspace.VS:GetChildren()) do if v.Name ~= "V1" then if v.COUNT.CC.NB.Text == "" then print(v) for b = 1,2 do task.wait() local args = { [1] = workspace:WaitForChild("VS"):WaitForChild(v.Name), [2] = b, [3] = "yes", [4] = 1 } ReplicatedStorage:WaitForChild("JoinRound"):FireServer(unpack(args)) end end end end end