|
| 17 Jul 2011 02:17 AM |
Its sup
Derp = {"MAP1", "MAP2", "MAP3"} Choose = Derp[math.random(1, #Derp)] --Don't you love my derp variable :3 --End of Variables--
--Start of Script-- while true do Chosen = Choose game.Lighting.Chosen:Clone().Parent = game.Workspace wait(300) Chosen:Remove() end |
|
|
| Report Abuse |
|
|
|
| 17 Jul 2011 02:19 AM |
Nothing is wrong there but I'm not sure aout the
game.Lighting.Chosen:Clone().Parent
I think it woudl be
game.Lighting.Chosen:Clone()Parent |
|
|
| Report Abuse |
|
|
Apocalyps
|
  |
| Joined: 15 Feb 2009 |
| Total Posts: 816 |
|
|
| 17 Jul 2011 04:00 AM |
Derp = {"MAP1", "MAP2", "MAP3"} Choose = Derp[math.random(1, #Derp)] --Don't you love my derp variable :3 --End of Variables--
--Start of Script-- while true do Chosen = game.Lighting[Choose]:Clone() Chosen.Parent = game.Workspace wait(300) Chosen:Remove() end |
|
|
| Report Abuse |
|
|
Apocalyps
|
  |
| Joined: 15 Feb 2009 |
| Total Posts: 816 |
|
|
| 17 Jul 2011 04:03 AM |
I think you want it to place a random map every 300 seconds, right? then the script above wont work as intended either...
try this instead:
Derp = {"MAP1", "MAP2", "MAP3"} --End of Variables--
--Start of Script-- while true do Chosen = game.Lighting[Derp[math.random(1, #Derp)]]:Clone() -- select a random map and clone it Chosen.Parent = game.Workspace -- place the clone in workspace wait(300) Chosen:Remove() end |
|
|
| Report Abuse |
|
|