Advertisement
UsernameRTX

Disable Kick-back

Jul 19th, 2021 (edited)
1,448
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.43 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.     for Index, Value2 in pairs(ModuleScript) do
  8.         if typeof(Value2) == "Vector3" then
  9.             ModuleScript[Index] = Vector3.new()
  10.         end
  11.     end
  12.     if ModuleScript.hipfirespreadrecover then
  13.         ModuleScript.hipfirespreadrecover = tick()
  14.     end
  15. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement