O2BITOg

Arsenal gui (make by me)

Apr 24th, 2022 (edited)
234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 5.89 KB | None | 0 0
  1. ---- Library
  2. local library = loadstring(game:HttpGet("https://raw.githubusercontent.com/miroeramaa/TurtleLib/main/TurtleUiLib.lua"))()
  3.  
  4. ---- Windows
  5. local window = library:Window("Player")
  6.  
  7. ---- Buttons
  8. window:Button("Big hitbox", function()
  9.    function getplrsname()
  10. for i,v in pairs(game:GetChildren()) do
  11. if v.ClassName == "Players" then
  12. return v.Name
  13. end
  14. end
  15. end
  16. local players = getplrsname()
  17. local plr = game[players].LocalPlayer
  18. coroutine.resume(coroutine.create(function()
  19. while  wait(1) do
  20. coroutine.resume(coroutine.create(function()
  21. for _,v in pairs(game[players]:GetPlayers()) do
  22. if v.Name ~= plr.Name and v.Character then
  23. v.Character.RightUpperLeg.CanCollide = false
  24. v.Character.RightUpperLeg.Transparency = 10
  25. v.Character.RightUpperLeg.Size = Vector3.new(20,20,20)
  26.  
  27. v.Character.LeftUpperLeg.CanCollide = false
  28. v.Character.LeftUpperLeg.Transparency = 10
  29. v.Character.LeftUpperLeg.Size = Vector3.new(20,20,20)
  30.  
  31. v.Character.HeadHB.CanCollide = false
  32. v.Character.HeadHB.Transparency = 10
  33. v.Character.HeadHB.Size = Vector3.new(20,20,20)
  34.  
  35. v.Character.HumanoidRootPart.CanCollide = false
  36. v.Character.HumanoidRootPart.Transparency = 10
  37. v.Character.HumanoidRootPart.Size = Vector3.new(20,20,20)
  38.  
  39. end
  40. end
  41. end))
  42. end
  43. end))
  44. end)
  45.  
  46. ---- Buttons
  47. window:Button("Fast fire", function()
  48.    local replicationstorage = game.ReplicatedStorage
  49.  
  50. for i, v in pairs(replicationstorage.Weapons:GetDescendants()) do
  51.    if v.Name == "Auto" then
  52.        v.Value = true
  53.    end
  54.    if v.Name == "RecoilControl" then
  55.        v.Value = 0
  56.    end
  57.    if v.Name == "MaxSpread" then
  58.        v.Value = 0
  59.    end
  60.    if v.Name == "ReloadTime" then
  61.       v.Value = 1
  62.    end
  63.    if v.Name == "FireRate" then
  64.        v.Value = 0.05
  65.    end
  66.    if v.Name == "Crit" then
  67.        v.Value = 20
  68.    end
  69. end
  70. end)
  71.  
  72. ----Buttons
  73. window:Button("Esp charm", function()
  74.    local dwEntities = game:GetService("Players")
  75. local dwLocalPlayer = dwEntities.LocalPlayer
  76. local dwRunService = game:GetService("RunService")
  77.  
  78. local settings_tbl = {
  79.     ESP_Enabled = true,
  80.     ESP_TeamCheck = false,
  81.     Chams = true,
  82.     Chams_Color = Color3.fromRGB(0,0,255),
  83.     Chams_Transparency = 0.1,
  84.     Chams_Glow_Color = Color3.fromRGB(255,0,0)
  85. }
  86.  
  87. function destroy_chams(char)
  88.  
  89.     for k,v in next, char:GetChildren() do
  90.  
  91.         if v:IsA("BasePart") and v.Transparency ~= 1 then
  92.  
  93.             if v:FindFirstChild("Glow") and
  94.             v:FindFirstChild("Chams") then
  95.  
  96.                 v.Glow:Destroy()
  97.                 v.Chams:Destroy()
  98.  
  99.             end
  100.  
  101.         end
  102.  
  103.     end
  104.  
  105. end
  106.  
  107. dwRunService.Heartbeat:Connect(function()
  108.  
  109.     if settings_tbl.ESP_Enabled then
  110.  
  111.         for k,v in next, dwEntities:GetPlayers() do
  112.  
  113.             if v ~= dwLocalPlayer then
  114.  
  115.                 if v.Character and
  116.                 v.Character:FindFirstChild("HumanoidRootPart") and
  117.                 v.Character:FindFirstChild("Humanoid") and
  118.                 v.Character:FindFirstChild("Humanoid").Health ~= 0 then
  119.  
  120.                     if settings_tbl.ESP_TeamCheck == false then
  121.  
  122.                         local char = v.Character
  123.  
  124.                         for k,b in next, char:GetChildren() do
  125.  
  126.                             if b:IsA("BasePart") and
  127.                             b.Transparency ~= 1 then
  128.                                
  129.                                 if settings_tbl.Chams then
  130.  
  131.                                     if not b:FindFirstChild("Glow") and
  132.                                     not b:FindFirstChild("Chams") then
  133.  
  134.                                         local chams_box = Instance.new("BoxHandleAdornment", b)
  135.                                         chams_box.Name = "Chams"
  136.                                         chams_box.AlwaysOnTop = true
  137.                                         chams_box.ZIndex = 4
  138.                                         chams_box.Adornee = b
  139.                                         chams_box.Color3 = settings_tbl.Chams_Color
  140.                                         chams_box.Transparency = settings_tbl.Chams_Transparency
  141.                                         chams_box.Size = b.Size + Vector3.new(0.02, 0.02, 0.02)
  142.  
  143.                                         local glow_box = Instance.new("BoxHandleAdornment", b)
  144.                                         glow_box.Name = "Glow"
  145.                                         glow_box.AlwaysOnTop = false
  146.                                         glow_box.ZIndex = 3
  147.                                         glow_box.Adornee = b
  148.                                         glow_box.Color3 = settings_tbl.Chams_Glow_Color
  149.                                         glow_box.Size = chams_box.Size + Vector3.new(0.13, 0.13, 0.13)
  150.  
  151.                                     end
  152.  
  153.                                 else
  154.  
  155.                                     destroy_chams(char)
  156.  
  157.                                 end
  158.                            
  159.                             end
  160.  
  161.                         end
  162.  
  163.                     else
  164.  
  165.                         if v.Team == dwLocalPlayer.Team then
  166.                             destroy_chams(v.Character)
  167.                         end
  168.  
  169.                     end
  170.  
  171.                 else
  172.  
  173.                     destroy_chams(v.Character)
  174.  
  175.                 end
  176.  
  177.             end
  178.  
  179.         end
  180.  
  181.     else
  182.  
  183.         for k,v in next, dwEntities:GetPlayers() do
  184.  
  185.             if v ~= dwLocalPlayer and
  186.             v.Character and
  187.             v.Character:FindFirstChild("HumanoidRootPart") and
  188.             v.Character:FindFirstChild("Humanoid") and
  189.             v.Character:FindFirstChild("Humanoid").Health ~= 0 then
  190.                
  191.                 destroy_chams(v.Character)
  192.  
  193.             end
  194.  
  195.         end
  196.  
  197.     end
  198.  
  199. end)
  200. end)
  201.  
  202. ---- Buttons
  203. window:Button("Super gui", function()
  204.    loadstring(game:HttpGet("https://raw.githubusercontent.com/GamingScripter/arsenal-hub/main/Arsenal%20GamingScripter", true))()
  205. end)
Advertisement
Add Comment
Please, Sign In to add comment