Advertisement
252Scripter

Arsenal OP Script

Nov 13th, 2022
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.08 KB | None | 0 0
  1. --Made By 252Scripter
  2.  
  3. game.StarterGui:SetCore("SendNotification", {
  4. Title = "OP Arsenal Script 2022";
  5. Text = "Made by 252Scripter"; -- what the text says (ofc)
  6. Duration = 60;
  7. })
  8. wait(1)
  9. game.StarterGui:SetCore("SendNotification", {
  10. Title = "252Scripter!";
  11. Text = "Subscribe To 252Scripter!"; -- what the text says (ofc)
  12. Duration = 60;
  13. })
  14. local replicationstorage = game.ReplicatedStorage
  15.  
  16. for i, v in pairs(replicationstorage.Weapons:GetDescendants()) do
  17. if v.Name == "Auto" then
  18. v.Value = true
  19. end
  20. if v.Name == "RecoilControl" then
  21. v.Value = 0
  22. end
  23. if v.Name == "MaxSpread" then
  24. v.Value = 0
  25. end
  26. if v.Name == "ReloadTime" then
  27. v.Value = 0.1
  28. end
  29. if v.Name == "FireRate" then
  30. v.Value = 0.05
  31. end
  32. if v.Name == "Crit" then
  33. v.Value = 20
  34. end
  35. end
  36.  
  37. --Subscribe To 252Scripter
  38.  
  39. 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))
  40.  
  41. --Made by Andrheyplayz_officalyt
  42. local gui = Instance.new("BillboardGui");
  43. gui.Name = "";
  44. gui.AlwaysOnTop = true;
  45. gui.LightInfluence = 0;
  46. gui.Size = UDim2.new(1.75, 0, 1.75, 0);
  47. local frame = Instance.new("Frame", gui);
  48. frame.BackgroundColor3 = Color3.fromRGB(170, 0, 0);
  49. frame.Size = UDim2.new(1, 0, 1, 0);
  50. frame.BorderSizePixel = 4;
  51. frame.BorderColor3 = Color3.fromRGB(0, 0, 0);
  52. local gi = gui:Clone();
  53. local body = frame:Clone();
  54. body.Parent = gi;
  55. body.BackgroundColor3 = Color3.fromRGB(0, 170, 170);
  56.  
  57. for _, v in pairs(game:GetService("Players"):GetPlayers()) do
  58. if v.Name ~= game:GetService("Players").LocalPlayer.Name and v.Character and v.Character:FindFirstChild("Head") then
  59. gui:Clone().Parent = v.Character.Head;
  60. end
  61. end
  62.  
  63. 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)
  64. net = true -- if false = do nothing
  65. notify = true -- set this to false if u don't want to see notiflication
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement