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 7 years ago

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

1 answer

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

You could do this for a random map chooser

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

Note that that's very basic

Ad

Answer this question