|
| 12 Jul 2014 11:40 AM |
How do you script a map into the computer so it will form once you say: Computer run [Name] |
|
|
| Report Abuse |
|
|
| |
|
Waffloid
|
  |
| Joined: 14 Jul 2011 |
| Total Posts: 1606 |
|
|
| 12 Jul 2014 11:42 AM |
holoName = "Guns Training" computerRun = "Computer Run ["..holoName.."]"
~Swagilitious and not Nutricious~ |
|
|
| Report Abuse |
|
|
cornytime
|
  |
| Joined: 07 Feb 2013 |
| Total Posts: 3213 |
|
|
| 12 Jul 2014 11:51 AM |
game.Players.PlayerAdded:connect(function(player) player.Chatted:connect(function(msg) if msg == "computer run MAPNAME" then game.Lighting.MAPNAME:clone().Parent=game.Workspace elseif msg == "computer end" then game.MAPNAME:remove() end) end) end end --- Not sure |
|
|
| Report Abuse |
|
|
cornytime
|
  |
| Joined: 07 Feb 2013 |
| Total Posts: 3213 |
|
|
| 12 Jul 2014 11:54 AM |
game.Players.PlayerAdded:connect(function(player) if player.Name=="crazykidz10" then player.Chatted:connect(function(msg) if msg == "computer run MAPNAME" then game.Lighting.MAPNAME:clone().Parent=game.Workspace elseif msg == "computer end" then game.Workspace.MAPNAME:remove() end) end end) end end --- I meant this but still not sure |
|
|
| Report Abuse |
|
|