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

How would i make a random map chooser script?

Asked by 8 years ago

How would I make a random map chooser with a lobby?

1 answer

Log in to vote
0
Answered by
Ben1925 25
8 years ago

You could do this for a random map chooser

1local maps = game.ReplicatedStorage.Maps:GetChildren();
2return maps[math.random(0, #maps)];

Note that that's very basic

Ad

Answer this question