Advertisement
Guest User

Untitled

a guest
May 29th, 2017
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. local time=2
  2. local radius=8
  3. local damage=3000
  4. for i=1,time do
  5. script.Parent.Transparency=0.5
  6. wait(0.3)
  7. script.Parent.Transparency=0
  8. wait(.7)
  9. end
  10. script.Parent.BrickColor=BrickColor.new("Really red")
  11. for i=1,5 do
  12. script.Parent.Transparency = 0.8
  13. wait(.1)
  14. script.Parent.Transparency = 0
  15. wait(.2)
  16. end
  17. for i= 1, 100 do
  18. local e=Instance.new("Explosion")
  19. e.Parent = script.Parent
  20. e.BlastRadius = radius/2
  21. e.BlastPressure=1000
  22. e.Position=script.Parent.Position
  23. DigBricks(script.Parent.Position,radius/2,damage,Vector3.new(4,4,4))
  24. script.Parent.CFrame = script.Parent.CFrame * CFrame.new(0,-5,0)
  25. script.Parent:Remove()
  26. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement