Advertisement
Upscalefanatic3

Legendary Football Teleport Player To Ball Script

Oct 18th, 2017
7,180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. -- Legendary Football TP To Ball Script made by ItzJustWorm91/IHAVEATE#2516
  2.  
  3. --Step 1. Execute
  4.  
  5. --Step 2. Press V
  6.  
  7.  
  8. local Teleport = true
  9.  
  10. function TeleportToBall()
  11. if game.Workspace:FindFirstChild("Football") then
  12. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace:FindFirstChild("Football").CFrame
  13. end
  14. end
  15. ----------------------------------------
  16. function LoadScript()
  17. if Teleport == true then
  18. TeleportToBall()
  19. end
  20. end
  21. ----------------------------------------
  22. function onKeyPress(inputObject, gameProcessedEvent)
  23. if inputObject.KeyCode == Enum.KeyCode.V then
  24. LoadScript()
  25. end
  26. end
  27.  
  28. game:GetService("UserInputService").InputBegan:connect(onKeyPress)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement