--BROUGHT TO YOU BY RobloxScripter.com!--
if not getrawmetatable or not hookmetamethod then
game.Players.LocalPlayer:Kick("Your exploit is not supported. use Krnl (best free exploit) or Synapse X (best paid exploit) for it to work.")
end
local mt = getrawmetatable(game)
setreadonly(mt,false)
local old = mt.__index
mt.__index = hookmetamethod(game,"__index",function(self,b)
if self:IsA("Part") and b.Name == "Football" then
return Vector3.new()
end
return old(s,b)
end)
local uis = game:GetService("UserInputService")
uis.InputBegan:Connect(function(key,gp)
if key.UserInputType == Enum.UserInputType.MouseButton1 and gp == false then
for _,k in pairs(game:GetService("Workspace"):GetChildren()) do
if k.Name == "Football" and k.ClassName == "Part" then
for i = 1,35 do wait()
k.CFrame = CFrame.new(game:GetService("Players").LocalPlayer.Character.Head.Position)
k.CanCollide = false
end
end
end
end
end)