Advertisement
Guest User

Untitled

a guest
Mar 29th, 2020
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. game.Players.LocalPlayer:GetMouse().KeyDown:connect(function(k)
  2. if k == "v" then
  3. for i,v in pairs(game.Players:GetChildren())do
  4. if v.Character:FindFirstChild("Football") then
  5. local BallPosition = v.Character.Football.Handle.Position
  6. local player = game.Players.LocalPlayer.Character
  7. player.HumanoidRootPart.CFrame = CFrame.new(BallPosition)
  8. print("Works!")
  9. end
  10. end
  11. end
  12. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement