Advertisement
UsernamesRUs

Football Fusion 2 Mag Scripts

Sep 23rd, 2023
6,415
5
Never
5
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.39 KB | None | 6 1
  1. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  2. local Window = OrionLib:MakeWindow({Name = "MaggableHub", HidePremium = false, SaveConfig = true, ConfigFolder = "SwervzHub"})
  3.  
  4. --Tabs
  5.  
  6. local Tab2 = Window:MakeTab({
  7. Name = "FF2",
  8. Icon = "rbxassetid://4483345998",
  9. PremiumOnly = false
  10. })
  11. local Section = Tab2:AddSection({
  12. Name = "FF2 Mags"
  13. })
  14. --Functions
  15. local player = game.Players.LocalPlayer
  16. local rs = game:GetService("RunService")
  17.  
  18. function magBall(ball)
  19. if ball and player.Character then
  20. firetouchinterest(player.Character["Left Arm"], ball, 0)
  21. firetouchinterest(player.Character["Right Arm"], ball, 0)
  22. task.wait()
  23. firetouchinterest(player.Character["Left Arm"], ball, 1)
  24. firetouchinterest(player.Character["Right Arm"], ball, 1)
  25. end
  26. end
  27. --Actual
  28. Tab2:AddLabel("Best Mags Out There")
  29. Tab2:AddToggle({
  30. Name = "Mag Scripts",
  31. Default = false,
  32. Callback = function(bool)
  33. shared.Mags = bool
  34. rs.Stepped:Connect(function()
  35. if shared.Mags then
  36. for i,v in pairs(workspace:GetChildren()) do
  37. if v.Name == "Football" and v:IsA("BasePart") then
  38. wait()
  39. local mag = (player.Character.Torso.Position - v.Position).Magnitude
  40. magBall(v)
  41. end
  42. end
  43. else
  44. wait()
  45. end
  46. end)
  47. end
  48. })
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement