Advertisement
yaay

Untitled

Oct 18th, 2016
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1.  
  2. --Keep script in Workspace
  3.  
  4.  
  5.  
  6. z.SoundId = "rbxassetid://170822236"--242463565
  7. z.Looped = true
  8. z.Pitch = .58
  9. z.Volume = 1
  10. wait(.01)
  11. z:Play()
  12.  
  13. game.Players.PlayerAdded:connect(function(Player)
  14. Player.CharacterAdded:connect(function(Character)
  15. local Orb = Instance.new("Part", Character)
  16. Orb.BrickColor = BrickColor.new("Bright yellow")
  17. Orb.Material = "Pebble"
  18. Orb.Size = Vector3.new(1.4, 1.4, 1.4)
  19. Orb.Anchored = false
  20. Orb.CanCollide = false
  21. local Mesh = Instance.new("SpecialMesh", Orb)
  22. Mesh.MeshType = "Sphere"
  23. local BP = Instance.new("BodyPosition", Orb)
  24. BP.MaxForce = Vector3.new(10000, 10000, 10000)
  25. while wait() do
  26. BP.Position = Character:FindFirstChild("Torso").CFrame * CFrame.new(2, 2, 1.4).p
  27. end
  28. end)
  29. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement