TwoSide3Point0

Gun mods (Arsenal for sure)

Nov 6th, 2021 (edited)
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.62 KB | None | 0 0
  1. for i,v in next, game.ReplicatedStorage.Weapons:GetChildren() do
  2. for i,c in next, v:GetChildren() do
  3. for i,x in next, getconnections(c.Changed) do
  4. x:Disable()
  5. end
  6. if c.Name == "Ammo" or c.Name == "StoredAmmo" then
  7. c.Value = 300
  8. elseif c.Name == "AReload" or c.Name == "RecoilControl" or c.Name == "EReload" or c.Name == "SReload" or c.Name == "ReloadTime" or c.Name == "EquipTime" or c.Name == "Spread" or c.Name == "MaxSpread" then
  9. c.Value = 0
  10. elseif c.Name == "Range" then
  11. c.Value = 9e9
  12. elseif c.Name == "Auto" then
  13. c.Value = true
  14. elseif c.Name == "FireRate" or c.Name == "BFireRate" then
  15. c.Value = 0.02
  16. end
  17. end
  18. end
Advertisement
Add Comment
Please, Sign In to add comment