Advertisement
Diep8328Paster

Untitled

May 12th, 2018
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.56 KB | None | 0 0
  1. local p = game.Players.LocalPlayer
  2. local ran = 0
  3. local secs = 0.1
  4. wait(0.5)
  5. p.Character.Torso.Anchored = true
  6. local mesh = Instance.new("Part",p.Character)
  7. mesh.Position = p.Character.Torso.Position + Vector3.new(0,30,0)
  8. mesh.CanCollide = false
  9. mesh.Anchored = true
  10. local w = Instance.new("SpecialMesh",mesh)
  11. w.MeshId = "rbxassetid://998217989"
  12. w.Scale = Vector3.new(10,10,10)
  13. w.TextureId = "rbxassetid://998217995"
  14. wait(secs)
  15. mesh.Position = p.Character.Torso.Position + Vector3.new(0,25,0)
  16. wait(secs)
  17. mesh.Position = p.Character.Torso.Position + Vector3.new(0,20,0)
  18. wait(secs)
  19. mesh.Position = p.Character.Torso.Position + Vector3.new(0,15,0)
  20. wait(secs)
  21. mesh.Position = p.Character.Torso.Position + Vector3.new(0,10,0)
  22. wait(secs)
  23. mesh.Position = p.Character.Torso.Position + Vector3.new(0,5,0)
  24. local s = Instance.new("Sound",mesh)
  25. s.SoundId = "rbxassetid://545219984"
  26. s.Volume = 90
  27. s:Play()
  28. wait(0.2)
  29. local s2 = Instance.new("Sound",mesh)
  30. s2.SoundId = "rbxassetid://1427039766"
  31. s2.Volume = 90
  32. s2:Play()
  33. wait(4)
  34. local s23 = Instance.new("Sound",mesh)
  35. s23.SoundId = "rbxassetid://357562152"
  36. s23.Volume = 90
  37. s23:Play()
  38. local explosion = Instance.new("Part",p.Character)
  39. explosion.Position = p.Character.Torso.Position
  40. explosion.Material = "Neon"
  41. explosion.TopSurface = "Smooth"
  42. explosion.BottomSurface = "Smooth"
  43. explosion.Size = Vector3.new(10,10,10)
  44. explosion.BrickColor = BrickColor.new("Neon orange")
  45. explosion.Anchored = true
  46. local yes = 1
  47. for i=1,9 do
  48. local part = Instance.new("Part",p.Character)
  49. part.Size = Vector3.new(5,5,5)
  50. part.Material = "Neon"
  51. local v = Vector3.new(math.random(-50,50),math.random(90,150),math.random(-50,50))
  52. part.Velocity = v
  53. part.Position = p.Character.Torso.Position
  54. part.BrickColor = BrickColor.new("Really red")
  55. part.CanCollide = false
  56. part.Orientation = Vector3.new(math.random(0,360),math.random(0,360),math.random(0,360))
  57. local f = Instance.new("Fire",part)
  58. f.Size = 10
  59. end
  60. while yes <= 50 do
  61. explosion.Orientation = Vector3.new(math.random(0,360),math.random(0,360),math.random(0,360))
  62. explosion.Size = explosion.Size + Vector3.new(1,1,1)
  63. explosion.CanCollide = false
  64. yes = yes + 1
  65. ran = math.random(0,2)
  66. if ran == 0 then
  67. explosion.BrickColor = BrickColor.new("Really red")
  68. end
  69. if ran == 1 then
  70. explosion.BrickColor = BrickColor.new("Br. yellowish orange")
  71. end
  72. if ran == 2 then
  73. explosion.BrickColor = BrickColor.new("Neon orange")
  74. end
  75. wait(0.01)
  76. if yes == 50 then
  77. explosion:Destroy()
  78. p.Character.Humanoid.Health = 0
  79. mesh:Destroy()
  80. end
  81. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement