marcelslibrary

Jailbreak inf ammo

Mar 24th, 2019
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.39 KB | None | 0 0
  1. local newcclosure = newcclosure or function(f)
  2. return f
  3. end
  4.  
  5. local getreg = debug.getregistry or getreg
  6.  
  7. if not getreg then
  8. warn("Your exploit does not support the functions required for this script")
  9. end
  10.  
  11. local pistol
  12. local rifle
  13. local rocketlauncher
  14. local shotgun
  15. local ak47
  16.  
  17. for _,o in pairs(getreg()) do
  18. if typeof(o) == "table" then
  19. if o.Pistol then
  20. pistol = o.Pistol
  21. rifle = o.Rifle
  22. rocketlauncher = o.RocketLauncher
  23. shotgun = o.Shotgun
  24. ak47 = o.AK47
  25. end
  26. end
  27. end
  28.  
  29. if pistol then
  30. pistol.MagSize = math.huge
  31. pistol.FireAuto = true
  32. pistol.FireFreq = 5000
  33. pistol.BulletSpread = 0
  34. pistol.BulletSpeed = 5000
  35. warn("Modded the pistol")
  36. end
  37.  
  38. if rifle then
  39. rifle.MagSize = math.huge
  40. rifle.FireAuto = true
  41. rifle.FireFreq = 5000
  42. rifle.BulletSpread = 0
  43. rifle.BulletSpeed = 5000
  44. warn("Modded the rifle")
  45. end
  46.  
  47. if rocketlauncher then
  48. rocketlauncher.MagSize = math.huge
  49. rocketlauncher.FireAuto = true
  50. rocketlauncher.FireFreq = 5000
  51. rocketlauncher.BulletSpread = 0
  52. rocketlauncher.BulletSpeed = 5000
  53. warn("Modded the Rocket Launcher")
  54. end
  55.  
  56. if shotgun then
  57. shotgun.MagSize = math.huge
  58. shotgun.FireAuto = true
  59. shotgun.FireFreq = 5000
  60. shotgun.BulletSpread = 0
  61. shotgun.BulletSpeed = 5000
  62. warn("Modded the Shotgun")
  63. end
  64.  
  65. if ak47 then
  66. ak47.MagSize = math.huge
  67. ak47.FireAuto = true
  68. ak47.FireFreq = 5000
  69. ak47.BulletSpread = 0
  70. ak47.BulletSpeed = 5000
  71. warn("Modded the AK47")
  72. end
Add Comment
Please, Sign In to add comment