Advertisement
TigerloverproOffical

Rawr Orb Script by Tigerloverpro

Jan 5th, 2017
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.85 KB | None | 0 0
  1. --Rawr Orb Script
  2. local h = Instance.new("Message")
  3. local m = Instance.new("Message")
  4. m.Parent = workspace
  5. m.Text = "Rawr Orb Script by Tigerloverpro has loaded.")
  6. wait(5)
  7. m:Destroy()
  8. h.Parent = workspace
  9. h.Text = "Rawr Orb Script is active.")
  10.  
  11.  
  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("Cyan")
  17.         Orb.Material = "Pebble"
  18.         Orb.Size = Vector3.new(2, 2, 2)
  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("UpperTorso").CFrame * CFrame.new(2, 2, 1.4).p
  27.         end
  28.     end)
  29. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement