Advertisement
InfectionBlank

Untitled

May 27th, 2015
281
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. i = game.Workspace.kyrno --Your name goes here
  2. while true do
  3. local h = i.Torso.Position
  4. b = Instance.new("Explosion")
  5. b.Position = Vector3.new(h.x,h.y+10,h.z)
  6. b.Parent = game.Workspace
  7. b.BlastRadius = 5
  8. b.BlastPressure = 1
  9. q = Instance.new("Explosion")
  10. q.Position = Vector3.new(h.x+10,h.y,h.z)
  11. q.Parent = game.Workspace
  12. q.BlastRadius = 5
  13. q.BlastPressure = 1
  14. t = Instance.new("Explosion")
  15. t.Position = Vector3.new(h.x,h.y,h.z+10)
  16. t.Parent = game.Workspace
  17. t.BlastRadius = 5
  18. t.BlastPressure = 1
  19. w = Instance.new("Explosion")
  20. w.Position = Vector3.new(h.x-10,h.y,h.z)
  21. w.Parent = game.Workspace
  22. w.BlastRadius = 5
  23. w.BlastPressure = 1
  24. r = Instance.new("Explosion")
  25. r.Position = Vector3.new(h.x,h.y,h.z-10)
  26. r.Parent = game.Workspace
  27. r.BlastRadius = 5
  28. r.BlastPressure = 1
  29. wait(.1)
  30. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement