|
| 24 Nov 2013 11:53 AM |
The only reason this is in SH forum is because I'm using it in a script.
I put explosions into various blocks, but the explosion itself does not show up. It is present, I checked the Explorer, and it does kill, but it doesn't actually become visible. Any ideas? |
|
|
| Report Abuse |
|
|
dmjoe
|
  |
| Joined: 01 May 2009 |
| Total Posts: 2387 |
|
|
| 24 Nov 2013 11:55 AM |
| Have you used .Position to position the explosion correctly? |
|
|
| Report Abuse |
|
|
talk2me2
|
  |
| Joined: 25 Mar 2011 |
| Total Posts: 1051 |
|
|
| 24 Nov 2013 11:55 AM |
| What is the script? Are you sure that you parented them? |
|
|
| Report Abuse |
|
|
cntkillme
|
  |
| Joined: 07 Apr 2008 |
| Total Posts: 44956 |
|
|
| 24 Nov 2013 11:57 AM |
Check whether:
-You are parenting the explosion to a descendant of workspace -The position of the explosion is in view (like, where you can actually see it) -The explosion isn't tiny because if your quality is low and it's tiny, you probably won't see it |
|
|
| Report Abuse |
|
|
|
| 24 Nov 2013 11:57 AM |
Helpers did not read post? " I checked the Explorer, and it does kill, but it doesn't actually become visible. " |
|
|
| Report Abuse |
|
|
talk2me2
|
  |
| Joined: 25 Mar 2011 |
| Total Posts: 1051 |
|
|
| 24 Nov 2013 12:00 PM |
Sorry, misread.
Try checking the size, and posiion. |
|
|
| Report Abuse |
|
|
|
| 24 Nov 2013 12:01 PM |
| Okay, changing the position. Thanks! |
|
|
| Report Abuse |
|
|
|
| 24 Nov 2013 12:13 PM |
Still not working. Here's the code:
script.Parent.ClickDetector.MouseClick:connect(function() if script.Parent.db.Value == false then script.Parent.db.Value = true boom = Instance.new("Explosion") boom.Parent = game.Workspace.kerboom boom.Position = Vector3.new(61, 35, 33) fiya = Instance.new("Fire") fiya.Parent = game.Workspace.kerboom wait(1.5) boom2 = Instance.new("Explosion") boom2.Parent = game.Workspace.kerboomtoo boom2.Position = Vector3.new(46,38,33) fiya2 = Instance.new("Fire") fiya2.Parent = game.Workspace.kerboomtoo wait(1.5) boom:remove() boom2:remove() fiya:remove() fiya2:remove() script.Parent.db.Value = false end end) --46, 38, 33 |
|
|
| Report Abuse |
|
|
|
| 24 Nov 2013 12:14 PM |
| You can look at it yourself by visiting it in my places. Wood Planks and Stainless Steel. It's the red button in the tech room. |
|
|
| Report Abuse |
|
|
| |
|
dmjoe
|
  |
| Joined: 01 May 2009 |
| Total Posts: 2387 |
|
|
| 24 Nov 2013 12:27 PM |
Try
script.Parent.ClickDetector.MouseClick:connect(function() if script.Parent.db.Value == false then script.Parent.db.Value = true boom = Instance.new("Explosion") boom.Parent = game.Workspace.kerboom boom.Position = game.Workspace.kerboom.Position fiya = Instance.new("Fire") fiya.Parent = game.Workspace.kerboom wait(1.5) boom2 = Instance.new("Explosion") boom2.Parent = game.Workspace.kerboomtoo boom2.Position = game.Workspace.kerboom.Position fiya2 = Instance.new("Fire") fiya2.Parent = game.Workspace.kerboomtoo wait(1.5) boom:Destroy() boom2:Destroy() fiya:Destroy() fiya2:Destroy() script.Parent.db.Value = false end end) |
|
|
| Report Abuse |
|
|