Advertisement
N0ePlox

Wotl0l

May 11th, 2018
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. function onTouched(hit)
  2. local e = Instance.new("Explosion") -- IT DOES NOT HAVE TO BE "E" IT CAN BE ANY LETTER. I JUST LIKE USING THIS
  3.  
  4. e.BlastRadius = 1000 --THE RADIUS, THE BIGGER THE RADIUS, THE BIGGER IT IS
  5.  
  6. e.BlastPressure = 100 -- THE BLAST PRESSURE IS HOW POWERFUL IT IS. THE HIGHER, THE MORE DEADLY AND THE MORE UNANCHORED BRICKS WILL GO FLYING
  7.  
  8. e.Parent = game.Workspace -- DO NOT TOUCH UNLESS YOU KNOW WHAT YOURE DOING
  9.  
  10. e.Position = script.Parent.Position -- WHERE THE EXPLOSION HAPPENS
  11. end
  12.  
  13. script.Parent.Touched:connect(onTouched)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement