Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

How do I make rounds, for a game that only has one map?

Asked by 10 years ago

I know there are questions and answers for how to make rounds, but none for a game that only has a single map to be played on. How would I script that?

2 answers

Log in to vote
1
Answered by
spynaz 30
10 years ago

It's really no different, you just remove the part where the map changes.

Ad
Log in to vote
0
Answered by 10 years ago
while wait() do
if game.Players.NumPlayers > 1 then -- use this and the next function if you want it to be 2+ players
-- round stuff
end
if game.Players.NumPlayers < 2 then 
print'This game requires 2+ players!'
end
0
Cool. Thanks. Tallestmidget7 95 — 10y

Answer this question