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

Why does this not work??

Asked by 8 years ago

Please make your question title relevant to your question content. It should be a one-sentence summary in question form.

while true do wait(60) --Waits 1 minute in between games m = Instance.new("Message") --Creates a new message local players = game.Players:GetChildren() -- String array where we store all the players local num = math.random(1,1) --Here, put (1,[total number of maps] if num == 1 then --Copy and paste this next section for each map, changing the number from 1 to 2, 3, and so on. m.Parent = game.Workspace --Puts our message in Workspace m.Text = "Choosing Minigame..." --Feel free to change these next couple of lines as needed wait(4) m.Text = "Game Number " ..num.. " Was Chosen" wait(3) m.Text = "[MAP NAME]; Maker: [MAP MAKER NAME]" wait(3) m.Text = "[INSTRUCTIONS]" wait(3) m.Text = "This game lasts for [TIME]." wait(3) m.Parent = nil game.Lighting.Minigame1:clone().Parent = game.Workspace --Change the "Minigame1 to the name of your map (stored in Lighting) for i = 1, # players do players[i].Character:MoveTo(Vector3.new(-53.723, 346.569, 91.323)) --Change these coordinates to where you want the players to spawn game.Lighting.LinkedSword:clone().Parent = players[i].Backpack --Change LinkedSword to the name of a weapon (in Lighting) you want to give to the players. You can either delete this line or copy paste more of it. end wait(120) --This is how long the game will last game.Workspace.Minigame1:Remove() --Change Minigame1 to the name of your map. m.Parent = game.Workspace m.Text = "Game over! Thank you for playing!" wait(3) m.Text = "You have 1 minute until the start of the next game." wait(3) m.Parent = nil end m:Remove() end

2 answers

Log in to vote
1
Answered by 8 years ago

If this is someone else's script that you are using, I'd advise that you read the instructions (green writing). If it is your own, then please could you change the format so that it is somewhat read-able?

Ad
Log in to vote
0
Answered by 8 years ago

Turn it off and on again

1
Sorry I wanted to be your frendh Davdanther 0 — 8y

Answer this question