Advertisement
UsernameRTX

Disable Reload

Jul 19th, 2021 (edited)
1,629
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.37 KB | Source Code | 0 0
  1. local ReplicatedStorage = game:GetService("ReplicatedStorage")
  2.  
  3. local GunModules = ReplicatedStorage.GunModules
  4.  
  5. for _, Value in ipairs(GunModules:GetChildren()) do
  6.     local ModuleScript = require(Value)
  7.     if ModuleScript.magsize and ModuleScript.sparerounds then
  8.         ModuleScript.magsize = ModuleScript.magsize + ModuleScript.sparerounds
  9.         ModuleScript.sparerounds = 0
  10.     end
  11. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement