Afr1c4n
|
  |
| Joined: 12 Jul 2011 |
| Total Posts: 223 |
|
|
| 13 Apr 2014 05:42 AM |
I've made an explosion in a script using this:
Instance.new ("Explosion" , Player.Character.Torso).BlastPressure = 0
It explodes fine but it doesn't explode where the torso is. Its not in theright position. Could someone help me with this?
|
|
|
| Report Abuse |
|
|
|
| 13 Apr 2014 05:43 AM |
local ex = Instance.new("Explosion"), Player.Character.Torso) ex.BlastPressure = 0 ex.Position = ex.Parent.Position
When life gives you lemons... BURN HIS HOUSE DOWN! >:D |
|
|
| Report Abuse |
|
|
|
| 13 Apr 2014 05:44 AM |
Derp, here's the fixed script:
local ex = Instance.new("Explosion", Player.Character.Torso) ex.BlastPressure = 0 ex.Position = ex.Parent.Position
When life gives you lemons... BURN HIS HOUSE DOWN! >:D |
|
|
| Report Abuse |
|
|
Afr1c4n
|
  |
| Joined: 12 Jul 2011 |
| Total Posts: 223 |
|
|
| 13 Apr 2014 06:21 AM |
| Thanks, if I'm using a keydown function and wanted to stop it from being spammed, would I use a debounce? |
|
|
| Report Abuse |
|
|
|
| 13 Apr 2014 08:04 AM |
Yeah.
When life gives you lemons... BURN HIS HOUSE DOWN! >:D |
|
|
| Report Abuse |
|
|