Advertisement
xXjoethebestXx

Explode Brick script

Apr 22nd, 2015
464
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. local explodebrick = Instance.new("Part",workspace)
  2. explodebrick.Anchored = true
  3. explodebrick.Touched:connect(function(hit)
  4. local player = hit.Parent:findFirstChild("Humanoid")
  5. if(player~=nil)then
  6. while wait() do
  7. local Explode = Instance.new("Explosion", player.Parent.Torso)
  8. end
  9. end
  10. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement