Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
74 views1 page

Main - Lua 3

Uploaded by

m7bbhydv6p
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
74 views1 page

Main - Lua 3

Uploaded by

m7bbhydv6p
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

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

You might also like