MrRicky

Untitled

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