Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local maps = game.ServerStorage:WaitForChild('RandomMaps'):GetChildren() -- change RandomMaps with the map folder
- while true do
- wait()
- local mapchose = maps[math.random(1, #maps)]:Clone()
- mapchose.Parent = workspace
- wait(100)
- mapchose:Destroy()
- wait(1)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement