Hey1234567

Untitled

Mar 16th, 2017
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. local Player = game.Players.LocalPlayer
  2.  
  3.  
  4. local orb = Instance.new("Part", game.Workspace)
  5.  
  6. orb.Anchored = true
  7.  
  8. orb.CanCollide = false
  9.  
  10. orb.Size = orb.Size + Vector3.new(15,20,20)
  11.  
  12. orb.BrickColor = BrickColor.Red()
  13.  
  14. orb.Transparency = 0.5
  15.  
  16. orb.TopSurface = "Smooth"
  17.  
  18. local Mesh = Instance.new("SpecialMesh", game.Workspace.Part)
  19.  
  20. Mesh.MeshType = "Sphere"
  21.  
  22. while wait() do
  23. orb.CFrame = Player.Character.Torso.CFrame + Vector3.new(0,0,0)
  24. end
  25.  
  26. while true do
  27. wait(0.1)
  28. orb:Clone()
  29. wait(1)
  30. orb:Destroy
  31. end
Add Comment
Please, Sign In to add comment