Advertisement
Miner24687

Nuke

Dec 6th, 2016
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. --Made by Miner24687
  2. target="sangakk" ------Put Who You Want It To Go To------
  3. wait(.1)
  4. plr=game.Players:FindFirstChild(target)
  5.  
  6. local music=Instance.new("Sound", game.Workspace)
  7. music.SoundId="rbxassetid://446824013"
  8. music.Looped=true
  9. music:Play()
  10.  
  11. wait(10)
  12.  
  13. local ball = Instance.new("Part",game.Workspace)
  14. ball.Size=Vector3.new(1,1,1)
  15. ball.Anchored=true
  16. ball.CFrame=plr.Character.Torso.CFrame
  17. ball.CanCollide=false
  18. ball.Transparency=0.5
  19. ball.BrickColor = BrickColor.Yellow()
  20. ball.TopSurface="Smooth"
  21. ball.BottomSurface="Smooth"
  22.  
  23.  
  24. local mesh = Instance.new("SpecialMesh", ball)
  25. mesh.MeshType = "Sphere"
  26. for i = 1,2048 do
  27. ball.CFrame=CFrame.new(0,0,0)
  28. ball.Size=ball.Size+Vector3.new(1,1,1)
  29. ball.Touched:connect(function(hit)
  30. if hit.Parent:FindFirstChild("Humanoid") then
  31. local ex = Instance.new("Explosion", game.Workspace)
  32. ex.Position = hit.Parent.Torso.Position
  33. end
  34. end)
  35. wait(0.1)
  36. end
  37.  
  38. ball.Touched:connect(function(hit)
  39. if hit.Parent:FindFirstChild("Humanoid") then
  40. local ex = Instance.new("Explosion", game.Workspace)
  41. ex.Position = hit.Parent.Torso.Position
  42. end
  43. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement