Advertisement
xi_zones

(BAN RISK!!!!)

Jun 28th, 2022
8,809
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.25 KB | None | 0 0
  1. -- this script is pld and barley works, dont expect it to catch everything
  2. local ball = workspace:FindFirstChild("Football")
  3. local player = game:GetService("Players").LocalPlayer
  4. local charater = player.Character
  5.  
  6.  
  7.     while wait(0.2) do
  8.         pcall(function()
  9.             wait(0.1)
  10.             if ball ~= nil and (charater.HumanoidRootPart.Position - ball.Position).Magnitude <= 20 and game:GetService("ReplicatedStorage").Values.PlayType.Value == "normal" then
  11.                 ball = workspace:FindFirstChild("Football")
  12.                 ball.CanCollide = false
  13.                 ball.Size = Vector3.new(15, 15, 15)
  14.                 for i = 1,3 do
  15.                     charater.HumanoidRootPart.CFrame = ball.CFrame
  16.                     firetouchinterest(player.Character["Left Arm"], ball, 0)
  17.                     task.wait()
  18.                     firetouchinterest(player.Character["Left Arm"], ball, 1)
  19.                    
  20.                     firetouchinterest(player.Character["Right Arm"], ball, 0)
  21.                     task.wait()
  22.                     firetouchinterest(player.Character["Right Arm"], ball, 1)
  23.                 end
  24.                 else
  25.                     ball = workspace:FindFirstChild("Football")
  26.             end
  27.         end)
  28.     end
  29.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement