Advertisement
duckyexploitsV3

OP Arsenal GUI Script

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