Created by KI3
Features:
local UserInputService = game:GetService("UserInputService")
local function onInputBegan(input, gameProcessed)
if not gameProcessed then
if input.KeyCode == Enum.KeyCode.F then
game:GetService("Workspace").CurrentBall.Ball.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
end
end
end
UserInputService.InputBegan:Connect(onInputBegan)
ENJOY!