Advertisement
HHLExploits

Base Raiders

May 28th, 2019
4,408
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.39 KB | None | 0 0
  1.  
  2. ██╗ ██╗██╗ ██╗██╗ ███████╗██╗ ██╗██████╗ ██╗ ██████╗ ██╗████████╗███████╗
  3. ██║ ██║██║ ██║██║ ██╔════╝╚██╗██╔╝██╔══██╗██║ ██╔═══██╗██║╚══██╔══╝██╔════╝
  4. ███████║███████║██║ █████╗ ╚███╔╝ ██████╔╝██║ ██║ ██║██║ ██║ ███████╗
  5. ██╔══██║██╔══██║██║ ██╔══╝ ██╔██╗ ██╔═══╝ ██║ ██║ ██║██║ ██║ ╚════██║
  6. ██║ ██║██║ ██║███████╗███████╗██╔╝ ██╗██║ ███████╗╚██████╔╝██║ ██║ ███████║
  7. ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚══════╝╚═╝ ╚═╝╚═╝ ╚══════╝ ╚═════╝ ╚═╝ ╚═╝ ╚══════╝
  8.  
  9.  
  10. Turns your gun into a OP mini-gun.
  11.  
  12. Code:
  13. local gun = "Gun name" -- Put your gun name here
  14. local stats = require(game.ReplicatedStorage.WeaponScripts.WeaponConfigs:FindFirstChild(gun))
  15. stats['damage'] = math.huge
  16. stats['customDamage'] = math.huge
  17. stats['pellets'] = 15
  18. stats['burst'] = 0
  19. stats['RPM'] = math.huge
  20. stats['range'] = 90000
  21. stats['magSize'] = math.huge
  22. stats['reloadTime'] = 0.000001
  23. stats['minSpread'] = 0
  24. stats['maxSpread'] = 0
  25. stats['bulletSpeed'] = math.huge
  26. stats['fireMode'] = 1
  27.  
  28. Credit to GreenMs02 basically he made it so that you don't have to enter the gun name
  29.  
  30. Code:
  31. for i,v in pairs(game.Players.LocalPlayer.Backpack:children()) do
  32. local stats = require(game.ReplicatedStorage.WeaponScripts.WeaponConfigs:FindFirstChild(v.Name))
  33. stats['damage'] = math.huge
  34. stats['customDamage'] = math.huge
  35. stats['pellets'] = 15
  36. stats['burst'] = 0
  37. stats['RPM'] = math.huge
  38. stats['range'] = 90000
  39. stats['magSize'] = math.huge
  40. stats['reloadTime'] = 0.000001
  41. stats['minSpread'] = 0
  42. stats['maxSpread'] = 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement