NoTextForSpeech

gm6

Feb 21st, 2026
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. local ReplicatedStorage = cloneref(game:GetService("ReplicatedStorage"))
  2. local ZapModule = getrenv().require(ReplicatedStorage.common.zap)
  3. local LocalPlayerController = getrenv().require(ReplicatedStorage.common.ZS_Framework.Modules.Controllers.LocalPlayerController)
  4. local AmHyperAmmoPath = ReplicatedStorage.common.SharedResources.Attachments.Magazine:FindFirstChild("AM Hyper Ammo")
  5.  
  6. ZapModule.TriggerSelfExplosionEvent.Fire = function() end
  7.  
  8. LocalPlayerController.GetStamina = function() return 100 end
  9. LocalPlayerController.DrainStamina = function() end
  10.  
  11. if AmHyperAmmoPath then
  12. local AmHyperAmmoModule = getrenv().require(AmHyperAmmoPath.AttachmentModule)
  13. local OldNewFunction = AmHyperAmmoModule.new
  14. AmHyperAmmoModule.new = function(Param1, Param2, Param3)
  15. local Result = OldNewFunction(Param1, Param2, Param3)
  16. if Result.SettingChanges then
  17. Result.SettingChanges.CustomShootAnimation = function() end
  18. end
  19. return Result
  20. end
  21. end
  22.  
  23. warn("GM6 ANTI EXPLODE LOADED SUCCESFULLY")
Advertisement
Add Comment
Please, Sign In to add comment