local RunService = game:GetService("RunService")
local Players = game:GetService("Players")
local LocalPlayer = Players.LocalPlayer
local Character = LocalPlayer.Character or LocalPlayer.CharacterAdded:Wait()
local CatchRight = Character:WaitForChild("CatchRight")
local MagPower = 30
local MagsEnabled = true
RunService.Heartbeat:Connect(function()
for _, v in pairs(workspace:GetChildren()) do
if v:IsA("BasePart") and v.Name == "Football" then
if (CatchRight.Position - v.Position).Magnitude <= MagPower and
MagsEnabled then
firetouchinterest(CatchRight, v, 0)
firetouchinterest(CatchRight, v, 1)
task.wait()
firetouchinterest(CatchRight, v, 0)
firetouchinterest(CatchRight, v, 1)
end
end
end
task.wait()
end)
game.Players.LocalPlayer.Character.Humanoid.JumpPower = 53