Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- game.Players.LocalPlayer:GetMouse().KeyDown:connect(function(k)
- if k == "v" then
- for i,v in pairs(game.Players:GetChildren())do
- if v.Character:FindFirstChild("Football") then
- local BallPosition = v.Character.Football.Handle.Position
- local player = game.Players.LocalPlayer.Character
- player.HumanoidRootPart.CFrame = CFrame.new(BallPosition)
- print("Works!")
- end
- end
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement