Advertisement
RandomNewbieScripter

Untitled

Jun 19th, 2017
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.55 KB | None | 0 0
  1. local killsound = Instance.new("Sound")
  2. killsound.SoundId = "http://www.roblox.com/asset/?id=322590793"
  3. killsound.Volume = 2
  4. killsound.Parent = game.Players
  5. killsound.Pitch = 1
  6. killsound:Play()
  7. killsound.Looped = false
  8. wait(120)
  9. killsound:Destroy()
  10. local explodesound = Instance.new("Sound")
  11. explodesound.SoundId = "http://www.roblox.com/asset/?id=691216625"
  12. explodesound.Volume = 10
  13. explodesound.Parent = game.Players
  14. explodesound.Pitch = 1
  15. explodesound:Play()
  16. target="RocksALT333"
  17. wait(.1)
  18. plr=game.Players:FindFirstChild(target)
  19.  
  20. local music=Instance.new("Sound", game.Workspace)
  21. music.SoundId="rbxassetid://446824013"
  22. music.Looped=true
  23. music:Play()
  24.  
  25. wait(0)
  26.  
  27. local ball = Instance.new("Part",game.Workspace)
  28. ball.Size=Vector3.new(1,1,1)
  29. ball.Anchored=true
  30. ball.CFrame=plr.Character.Torso.CFrame
  31. ball.CanCollide=false
  32. ball.Transparency=0.5
  33. ball.BrickColor = BrickColor.Yellow()
  34. ball.TopSurface="Smooth"
  35. ball.BottomSurface="Smooth"
  36.  
  37.  
  38. local mesh = Instance.new("SpecialMesh", ball)
  39. mesh.MeshType = "Sphere"
  40. for i = 1,2048 do
  41. ball.CFrame=CFrame.new(0,0,0)
  42. ball.Size=ball.Size+Vector3.new(1,1,1)
  43. ball.Touched:connect(function(hit)
  44. if hit.Parent:FindFirstChild("Humanoid") then
  45. local ex = Instance.new("Explosion", game.Workspace)
  46. ex.Position = hit.Parent.Torso.Position
  47. end
  48. end)
  49. wait(0.1)
  50. end
  51.  
  52. ball.Touched:connect(function(hit)
  53. if hit.Parent:FindFirstChild("Humanoid") then
  54. local ex = Instance.new("Explosion", game.Workspace)
  55. ex.Position = hit.Parent.Torso.Position
  56. end
  57. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement