Advertisement
GOD_YT

Arsenal - Trigger Bot

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