252Scripter

Arsenal Auto FARM [WORKING]

Nov 21st, 2022
22
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.62 KB | None | 0 0
  1. loadstring(game:HttpGet('https://pastebin.com/raw/cwDSpepQ', true))()
  2. local cc = game:GetService("Workspace").CurrentCamera
  3. local nig2 = 5
  4. local autoAim = false
  5. local trigger = false
  6. local lol = library:AddWindow("Arsenal")
  7. local firstTab = lol:AddTab("Settings")
  8. local l = firstTab:AddSwitch('Trigger bot', function(a)
  9. trigger = a
  10. end)
  11. local lo = firstTab:AddSwitch('Auto aim at player', function(a)
  12. autoAim = a
  13. end)
  14. --lo:Set(true)
  15. local lo2 = firstTab:AddSlider('Distance from player', function(a)
  16. nig2 = tonumber(a)
  17. end, {
  18. ["min"] = 0,
  19. ["max"] = 20,
  20. })
  21. lo2:Set(10)
  22. while wait() do
  23. for i,v in pairs(game.Players:GetPlayers()) do
  24. if v ~= game.Players.LocalPlayer and v.TeamColor ~= game.Players.LocalPlayer.TeamColor and v.Character and v.Character:FindFirstChild("Head") and v.Character:FindFirstChild("Spawned") then
  25. repeat
  26. if autoAim then
  27. cc.CFrame = CFrame.new(cc.CFrame.p, v.Character.Head.CFrame.p)
  28. end
  29. if trigger then
  30. spawn(function()
  31. mouse1press()
  32. wait(0.1)
  33. mouse1release()
  34. end)
  35. end
  36. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame * CFrame.new(0,0,nig2)
  37. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  38. wait()
  39. until not v.Character or not v.Character:FindFirstChild("Spawned") or v.TeamColor == game.Players.LocalPlayer.TeamColor
  40. end
  41. end
  42. end
Add Comment
Please, Sign In to add comment