anyone know how to do this??
local players = game:GetService("Players") players.PlayerAdded:connect(function(player) if players.NumPlayers >= 3 then --This is where you can start your game end end)
Hope this helps. :)
if game.Players.NumPlayers >= 3 then -- If game.Players.NumPlayers is more than or equal to then print("Enough players!") -- output -- Add your additional code here else -- If there isn't, then print("Not enough players!") -- output end