start a game when there are 2 or more players roblox
--Get player service
local players = game:GetService(“Players”)
--Check player count, run stuff if it’s high enough
while wait() do
if #players:GetPlayers() > 2 then -- Change this number to whatever you want
print(“Enough players!”)
else
print(“Not enough”) --Change this line to whatever you want like changing a GUI
end
end