Map storage and rotation

Is there a script or a way you can make and store new maps for a map rotation system? If so can you help me

1 Like

if you already have the maps and you want to store them somewhere then use ReplicatedStorage.
for example, put the map in ReplicatedStorage and then you can load it like this:

local Map1 = ReplicatedStorage.Map1

-- Load in the map:
Map1.parent = Workspace

Hope this helps!