AimbotMan2022

football stars,mossed beta, and other football games on rblx auto catch

Nov 30th, 2020
22
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. local Input = game:GetService('UserInputService');
  2. local Players = game:GetService('Players')
  3. local Player = Players['LocalPlayer'];
  4. local Key = 'V';
  5.  
  6. while wait() do
  7. if Input:IsKeyDown(Enum.KeyCode[Key]) then
  8. local Char = Player.Character
  9. local HRP = Char and Char:FindFirstChild('HumanoidRootPart')
  10. local Ball = HRP and workspace:FindFirstChild('Football')
  11. local Mag = Ball and (function(p, p1)
  12. return ((p.Position - p1.Position).magnitude)
  13. end)
  14.  
  15. if Mag then
  16. local pos = Mag(HRP, Ball)
  17. repeat wait()
  18. pos = Mag(HRP, Ball)
  19. until (not Input:IsKeyDown(Enum.KeyCode[Key])) or (pos <= 150)
  20. Ball.CFrame = HRP.CFrame
  21. end
  22. end
  23. end
Add Comment
Please, Sign In to add comment