|
| 31 Oct 2011 05:32 AM |
I Made it, Grouped it, But i can't put int in lighting!
Any Help? |
|
|
| Report Abuse |
|
|
| |
|
| |
|
Eric7775
|
  |
| Joined: 31 Aug 2011 |
| Total Posts: 213 |
|
|
| 31 Oct 2011 05:34 AM |
Basicly, you would put all of your maps in Lighting and do this:
num = 5 --Change 5 to the number of maps you have maps = { "Map1", "Map2", "Map3", "Map4", "Map5" } --Put their names here, add more if you have to time = 60 --time in seconds between each map change m = math.random(1,num) function change() t = game.Lighting:findFirstChild(maps[m]):clone() t.Parent = workspace end while true do wait() change() wait(time) t:remove() end
Made from scratch, might not work but have a go! |
|
|
| Report Abuse |
|
|
Eric7775
|
  |
| Joined: 31 Aug 2011 |
| Total Posts: 213 |
|
|
| 31 Oct 2011 05:35 AM |
Sorry, i mean this one.
num = 5 --Change 5 to the number of maps you have maps = { "Map1", "Map2", "Map3", "Map4", "Map5" } --Put their names here, add more if you have to time = 60 --time in seconds between each map change function change() m = math.random(1,num) t = game.Lighting:findFirstChild(maps[m]):clone() t.Parent = workspace ms = Instance.new("Message",workspace) ms.Text = game.Lighting:findFirstChild(maps[m]).Name.. " has been chosen." wait(5) ms:remove() end while true do wait() change() wait(time) t:remove() end |
|
|
| Report Abuse |
|
|
|
| 31 Oct 2011 05:36 AM |
| Tell the wise man by the well for this man knows well, your answers are questioned and not all is questioned. This man can teach you maybe you teach him either way a snack is a pack in the stomach. |
|
|
| Report Abuse |
|
|
Eric7775
|
  |
| Joined: 31 Aug 2011 |
| Total Posts: 213 |
|
|
| 31 Oct 2011 05:37 AM |
Ohh, i see. Trying to get your game front page i see... Very well. Good Luck :D
|
|
|
| Report Abuse |
|
|
|
| 31 Oct 2011 05:50 AM |
| I Mean i have the script but it requires the maps to be in lighting, I can't drop them in there... |
|
|
| Report Abuse |
|
|
Eric7775
|
  |
| Joined: 31 Aug 2011 |
| Total Posts: 213 |
|
|
| 31 Oct 2011 05:52 AM |
| Hmm. Sorry buddy, search it on GOOGLE. |
|
|
| Report Abuse |
|
|
Eric7775
|
  |
| Joined: 31 Aug 2011 |
| Total Posts: 213 |
|
| |
|
|
| 31 Oct 2011 05:53 AM |
| Cut it and paste it into Lighting. |
|
|
| Report Abuse |
|
|
64kingJOE
|
  |
| Joined: 16 Jan 2016 |
| Total Posts: 7078 |
|
|
| 31 Oct 2011 05:55 AM |
group tohgether Copy Paste into Delete the one that is NOT in lighting. |
|
|
| Report Abuse |
|
|
| |
|
1WOOF1
|
  |
| Joined: 03 May 2009 |
| Total Posts: 20682 |
|
| |
|
| |
|
| |
|
| |
|
| |
|