Advertisement
Abel_Software

GTA V LUA Modding: Infinite Ammo

Nov 28th, 2015
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.41 KB | None | 0 0
  1. --In this script I will show you how to enable unlimited ammo in GTA V with LUA!
  2.  
  3. -- InfiniteAmmo by Abel Software, v1
  4. local InfiniteAmmo = {}
  5.  
  6. function InfiniteAmmo.tick()
  7. local playerID - PLAYER.PLAYER_ID()
  8. --insert code here
  9.  
  10. -- Infinite Ammo Script Starts
  11. if get_key_pressed(Keys.F1) then
  12. WEAPON.SET_PED_INFINITE_AMMO_CLIP(playerPed, true)
  13. end
  14. -- Infinite Ammo Script Ends
  15. end
  16. return InfiniteAmmo
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement