Abel_Software

GTA V LUA Modding: God Mode

Nov 28th, 2015
285
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.34 KB | None | 0 0
  1. -- In this script I will show you how to enable God Mode in GTA V with LUA!
  2.  
  3. -- GodMode by Abel Software, v1
  4. local GodMode = {}
  5.  
  6. function GodMode.tick()
  7. local playerID - PLAYER.PLAYER_ID()
  8. --God Mode Script Starts
  9. if get_key_pressed(Keys.F5) then
  10. PLAYER.SET_PLAYER_INVINCIBLE(player, true)
  11. end
  12. --God Mode Script Ends
  13. end
  14. return GodMode
Advertisement
Add Comment
Please, Sign In to add comment