The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
Base Raiders GUN MOD script pastebin roblox
By LINK GAME on 2024-09-21 08:00 am | Syntax: LUA | Views: 11



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1. local FEmusic = true;
  2. local musicid = "5693287386"; --edit the id
  3. local shotsound = true
  4. local shotsoundid = "5693287386"--edit the id
  5.  
  6.  
  7. for i,v in pairs(game.ReplicatedStorage.WeaponScripts.WeaponConfigs:GetChildren()) do
  8. local gun = require(v)
  9. gun.magSize = 10000000
  10. gun.damage = 999
  11. gun.pellets = 30
  12. gun.reloadTime = 0
  13. gun.bulletSpeed = 100009999990
  14. gun.range = 200099
  15. gun.minSpread = 0
  16. gun.maxSprea = 0
  17. gun.RPM = 1000000000
  18. gun.fireMode = 1
  19. gun.customDamage.Head = 10000
  20. gun.spreadCooldown = 0
  21. gun.spreadAdd = 0
  22.  
  23. if shotsound == true then
  24.    gun.shootSound = {shotsoundid,1000000000, 1, true }
  25. end
  26. if FEmusic == true then
  27.        gun.equipSound = { musicid, 1000000000, 1, true }
  28. end
  29. end