NIYAH10SER

Untitled

Dec 2nd, 2022
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. local plr = game.Players.LocalPlayer local rs = game:GetService("RunService") function magBall(ball) if ball and plr.Character then firetouchinterest(plr.Character["Left Arm"], ball, 0) task.wait() firetouchinterest(plr.Character["Left Arm"], ball, 1) end end rs.Stepped:Connect(function() for i,v in pairs(workspace:GetChildren()) do if v.Name == "Football" and v:IsA("BasePart") then local mag = (plr.Character.Torso.Position - v.Position).Magnitude magBall(v) end end end)
Add Comment
Please, Sign In to add comment