Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Legendary Football TP To Ball Script made by ItzJustWorm91/IHAVEATE#2516
- --Step 1. Execute
- --Step 2. Press V
- local Teleport = true
- function TeleportToBall()
- if game.Workspace:FindFirstChild("Football") then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace:FindFirstChild("Football").CFrame
- end
- end
- ----------------------------------------
- function LoadScript()
- if Teleport == true then
- TeleportToBall()
- end
- end
- ----------------------------------------
- function onKeyPress(inputObject, gameProcessedEvent)
- if inputObject.KeyCode == Enum.KeyCode.V then
- LoadScript()
- end
- end
- game:GetService("UserInputService").InputBegan:connect(onKeyPress)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement