Advertisement
Guest User

Arsenal ESP

a guest
Jun 9th, 2022
6,809
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.06 KB | None | 0 0
  1. game.StarterGui:SetCore("SendNotification", {
  2. Title = "Arsenal OP Script V1";
  3. Text = "Made by xMiles_Games"; -- what the text says (ofc)
  4. Duration = 60;
  5. })
  6. wait(1)
  7. game.StarterGui:SetCore("SendNotification", {
  8. Title = "Executed!";
  9. Text = "Subscribe To xMiles_Games!"; -- what the text says (ofc)
  10. Duration = 60;
  11. })
  12. local replicationstorage = game.ReplicatedStorage
  13.  
  14. for i, v in pairs(replicationstorage.Weapons:GetDescendants()) do
  15. if v.Name == "Auto" then
  16. v.Value = true
  17. end
  18. if v.Name == "RecoilControl" then
  19. v.Value = 0
  20. end
  21. if v.Name == "MaxSpread" then
  22. v.Value = 0
  23. end
  24. if v.Name == "ReloadTime" then
  25. v.Value = 0.1
  26. end
  27. if v.Name == "FireRate" then
  28. v.Value = 0.05
  29. end
  30. if v.Name == "Crit" then
  31. v.Value = 20
  32. end
  33. end
  34.  
  35. --Subscribe To xMiles_Games
  36.  
  37. function getplrsname() for i,v in pairs(game:GetChildren()) do if v.ClassName == "Players" then return v.Name end end end local players = getplrsname() local plr = game[players].LocalPlayer coroutine.resume(coroutine.create(function() while wait(1) do coroutine.resume(coroutine.create(function() for _,v in pairs(game[players]:GetPlayers()) do if v.Name ~= plr.Name and v.Character then v.Character.RightUpperLeg.CanCollide = false v.Character.RightUpperLeg.Transparency = 75 v.Character.RightUpperLeg.Size = Vector3.new(21,21,21) v.Character.LeftUpperLeg.CanCollide = false v.Character.LeftUpperLeg.Transparency = 75 v.Character.LeftUpperLeg.Size = Vector3.new(21,21,21) v.Character.HeadHB.CanCollide = false v.Character.HeadHB.Transparency = 75 v.Character.HeadHB.Size = Vector3.new(21,21,21) v.Character.HumanoidRootPart.CanCollide = false v.Character.HumanoidRootPart.Transparency = 75 v.Character.HumanoidRootPart.Size = Vector3.new(21,21,21) end end end)) end end))
  38.  
  39. --Made by Andrheyplayz_officalyt
  40. local gui = Instance.new("BillboardGui");
  41. gui.Name = "";
  42. gui.AlwaysOnTop = true;
  43. gui.LightInfluence = 0;
  44. gui.Size = UDim2.new(1.75, 0, 1.75, 0);
  45. local frame = Instance.new("Frame", gui);
  46. frame.BackgroundColor3 = Color3.fromRGB(170, 0, 0);
  47. frame.Size = UDim2.new(1, 0, 1, 0);
  48. frame.BorderSizePixel = 4;
  49. frame.BorderColor3 = Color3.fromRGB(0, 0, 0);
  50. local gi = gui:Clone();
  51. local body = frame:Clone();
  52. body.Parent = gi;
  53. body.BackgroundColor3 = Color3.fromRGB(0, 170, 170);
  54.  
  55. for _, v in pairs(game:GetService("Players"):GetPlayers()) do
  56. if v.Name ~= game:GetService("Players").LocalPlayer.Name and v.Character and v.Character:FindFirstChild("Head") then
  57. gui:Clone().Parent = v.Character.Head;
  58. end
  59. end
  60.  
  61. local c = 1 function zigzag(X) return math.acos(math.cos(X * math.pi)) / math.pi end game:GetService("RunService").RenderStepped:Connect(function() if game.Workspace.Camera:FindFirstChild('Arms') then for i,v in pairs(game.Workspace.Camera.Arms:GetDescendants()) do if v.ClassName == 'MeshPart' then v.Color = Color3.fromHSV(zigzag(c),1,1) c = c + .0001 end end end end)
  62. net = true -- if false = do nothing
  63. notify = false -- set this to false if u don't want to see notiflication
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement