Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
-1

How to make a random map chooser? [closed]

Asked by 10 years ago

I am making a game kinda like Murder Mystery, Deathrun and need a script which when this clock gui runs out of time, it picks a random map from ServerStorage. I am a mediocore scripter and know how to edit it, so if anyone knows how to make one that just picks a random map.

0
Please do not simply demand code. Articulating 1335 — 10y
0
No, just wondering what things would I need to ad to it to make it random NinjoOnline 1146 — 10y

Closed as Not Constructive by Articulating and evaera

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?

1 answer

Log in to vote
0
Answered by 10 years ago

Made this myself.

a = Instance.new("Message",Workspace)
a.Text = ("Loading Map..")
wait(5)
game.ServerStorage.MAPNAME:Clone().Parent = game.Workspace
wait(0.1)
a:remove()
wait(20)
game.Workspace.MAPNAME:remove()
wait(0.1)
a1 = Instance.new("Message",Workspace)
a1.Text = ("Loading a map...")
wait(0.1)
game.ServerStorage.MAPNAME:Clone().Parent = game.Workspace
a1:remove()
wait(20)
game.Workspace.MAPNAME:remove()


But next time, please dont demand code, and it would be nice if you give credit for helping. -ashpokeman5

Ad