How would I make a random map chooser with a lobby?
You could do this for a random map chooser
1
local
maps
=
game.ReplicatedStorage.Maps:GetChildren();
2
return
[
math.random(
0
, #maps)
]
;
Note that that's very basic