Advertisement
Gomlsauresrex

Suicide Bomber

Mar 19th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. local it=Instance
  2. local player=game.Players.LocalPlayer
  3. local c=it.new(
  4. "Part",
  5. workspace
  6. )
  7. local weld=function(a, b)
  8. local it=Instance
  9. local weld=it.new(
  10. "Weld"
  11. )
  12. weld.Part0 = a
  13. weld.Part1 = b
  14. weld.Parent = a
  15. weld.C0 = CFrame.new(0, 0, 1)
  16. end
  17.  
  18. c.Size=Vector3.new(2, 2, 1)
  19.  
  20. repeat wait() until player.Character
  21. weld(
  22. player.Character:WaitForChild("Torso"),
  23. c
  24. )
  25. wait(5)
  26. local pointlight=it.new(
  27. "PointLight",
  28. c
  29. )
  30. local s=it.new(
  31. "Sound",
  32. workspace
  33. )
  34. s.SoundId="rbxassetid://138081500"
  35.  
  36. pointlight.Color=Color3.new(255/255, 0/255, 0/255)
  37. for i=5,0,-1 do
  38. pointlight.Enabled=true
  39. s:Play()
  40. wait()
  41. pointlight.Enabled=false
  42. wait(1)
  43. end
  44. local explosion=Instance.new("Explosion", c)
  45. explosion.Position=c.Position
  46. local sound=it.new(
  47. "Sound",
  48. workspace
  49. )
  50. sound.SoundId="rbxassetid://11984351"
  51. sound:Play()
  52. for i = 0, 4 do
  53. local explosion=Instance.new("Explosion", c)
  54. explosion.Position=c.Position
  55. wait()
  56. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement