|
| 04 Aug 2011 03:09 PM |
I'm not much of a Scripter but I Made this and the explosion doesn't go Off.
bmb = game.Workspace.Bomb
function a()
msg = Instance.new("Message") msg.Name = ("Message") msg.Parent = game.Workspace msg.Text = ("Bomb Activated!") wait(3) msg.Text = ("Bomb Going Of in 10 Seconds") wait(1) msg.Text = ("9 Seconds") wait(1) msg.Text = ("8 Seconds") wait(1) msg.Text = ("7 Seconds") wait(1) msg.Text = ("6 Seconds") wait(1) msg.Text = ("5 Seconds") wait(1) msg.Text = ("4 Seconds") wait(1) msg.Text = ("3 Seconds") wait(1) msg.Text = ("2 Seconds") wait(1) msg.Text = ("1 Second") wait(1) msg.Text = ("Goodbye") wait(1) ex = Instance.new("Explosion") ex.Name = ("Explosion") ex.Parent = bmb ex.Position = bmb ex.BlastPressure = 9999999999999999999999999999999999999 ex.BlastRadius = 100 end
script.Parent.ClickDetector.MouseClick:connect(a) |
|
|
| Report Abuse |
|
|
|
| 04 Aug 2011 03:12 PM |
ex = Instance.new("Explosion") ex.Name = ("Explosion") ex.Parent = bmb ex.Position = bmb.Position ex.BlastPressure = 9999999999999999999999999999999999999 ex.BlastRadius = 100
|
|
|
| Report Abuse |
|
|
andrija11
|
  |
| Joined: 25 Sep 2009 |
| Total Posts: 245 |
|
| |
|
myrco1001
|
  |
| Joined: 17 Sep 2010 |
| Total Posts: 2574 |
|
|
| 04 Aug 2011 03:13 PM |
Nice try, just some small errors:
bmb = game.Workspace.Bomb
function a() local msg = Instance.new("Message", workspace) msg.Text = "Bomb Activated!" wait(3) msg.Text = "Bomb Going Of in 10 Seconds" for i = 10, 0, -1 do msg.Text = i.." second(s)" wait(1) end msg.Text = "Goodbye!" ex = Instance.new("Explosion", bmb) ex.Position = bmb.Position ex.BlastPressure = 9999999999999999999999999999999999999 ex.BlastRadius = 100 end
script.Parent.ClickDetector.MouseClick:connect(a) |
|
|
| Report Abuse |
|
|
|
| 04 Aug 2011 03:13 PM |
bmb = game.Workspace.Bomb
function a()
msg = Instance.new("Message") msg.Name =("Message" msg.Parent = game.Workspace msg.Text = "Bomb Activated!" wait(3) msg.Text = "Bomb Going Of in 10 Seconds" for i = 10, 1, -1 do msg.Text = i .. " Seconds" wait(1) m.Text = "Goodbye" wait(1) m:remove() ex = Instance.new("Explosion") ex.Name = "Explosion" ex.Parent = bmb ex.Position = bmb.Position ex.BlastPressure = 9999999999999999999999999999999999999 ex.BlastRadius = 100 end
script.Parent.ClickDetector.MouseClick:connect(a) |
|
|
| Report Abuse |
|
|
|
| 04 Aug 2011 03:14 PM |
Late post. -_-
-floodcheck- |
|
|
| Report Abuse |
|
|
|
| 04 Aug 2011 03:16 PM |
| wow myrco1001 that's very advanced to me... |
|
|
| Report Abuse |
|
|
| |
|
myrco1001
|
  |
| Joined: 17 Sep 2010 |
| Total Posts: 2574 |
|
|
| 04 Aug 2011 03:21 PM |
| Probaly because 'bmb' isn't a BasePart? Or perhaps the Script is Disabled. |
|
|
| Report Abuse |
|
|
|
| 04 Aug 2011 03:27 PM |
ye it is a base part
bmb = game.Workspace.Bomb
it is in the workspace and not in a model |
|
|
| Report Abuse |
|
|
| |
|
| |
|