1 | local Maps = { 'Yellow' , 'ZigZag' , 'Sphere' } |
2 | local randomMap = math.random( 1 , #Maps) |
3 | for i,v in pairs (Maps) do |
4 | if randomMap = = i then |
5 | local storage = game:GetService( "ReplicatedStorage" ) |
6 | local map = storage.Maps:WaitForChild(v):clone() |
7 | map.Parent = workspace.MapPlaying |
Try doing
1 | if randomMap = = [ 1 ] then |
2 | print ( "Yellow" ) |
3 | elseif randomMap = = [ 2 ] then |
4 | print ( "ZigZag" ) |
5 | elseif randomMap = = [ 3 ] then |
6 | print ( "Sphere" ) |
7 | end |
First, create a folder and then after that put all of the maps in their. Make sure to place the folder in ServerStorage. Then, name the folder "Maps"
1 | local MapList = game:GetService( "ServerStorage" ).Maps:GetChildren() --Creates a table of the maps |
2 | local Index = math.random( 1 ,#MapList) --Chooses a random map and then turns it into a number |
3 | local ChosenMap = MapList [ Index ] :Clone() --Find it in the table and clones it |
4 | ChosenMap.Parent = workspace.MapPlaying --Makes the parent into workspace.MapPlaying |
5 | print ( "Map Chosen: " , ChosenMap.Name) --Prints it. |
Closed as Not Constructive by User#24403, Gey4Jesus69, zblox164, and green271
This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.
Why was this question closed?