Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- loadstring(game:HttpGet('https://pastebin.com/raw/cwDSpepQ', true))()
- local cc = workspace.CurrentCamera
- local LocalPlayer = game:GetService("Players").LocalPlayer
- local Character = LocalPlayer.Character
- local Distance = 5
- local autoAim = false
- local trigger = false
- local Window = library:AddWindow("Arsenal")
- local firstTab = Window:AddTab("Settings")
- local TB = firstTab:AddSwitch('Trigger bot', function(a)
- trigger = a
- end)
- local AA = firstTab:AddSwitch('Auto aim at player', function(a)
- autoAim = a
- end)
- local DP = firstTab:AddSlider('Distance from player', function(a)
- Distance = tonumber(a)
- end, {
- ["min"] = 0,
- ["max"] = 20,
- })
- DP:Set(10)
- while wait() do
- for _,v in next, game:GetService("Players"):GetPlayers() do
- if v ~= LocalPlayer and v.TeamColor ~= LocalPlayer.TeamColor and v.Character and v.Character:FindFirstChild("Head") and v.Character:FindFirstChild("Spawned") then
- repeat
- if autoAim then
- cc.CFrame = CFrame.new(cc.CFrame.p, v.Character.Head.CFrame.p)
- end
- if trigger then
- spawn(function()
- mouse1press()
- wait(0.1)
- mouse1release()
- end)
- end
- Character.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame * CFrame.new(0, 0, nig2)
- Character.Humanoid:ChangeState(11)
- wait()
- until not v.Character or not v.Character:FindFirstChild("Spawned") or v.TeamColor == LocalPlayer.TeamColor
- end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement