Advertisement
Abel_Software

GTA V LUA Modding: Base Script

Nov 28th, 2015
445
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.32 KB | None | 0 0
  1. --I will show you the basic outline for your GTA V LUA Script!
  2. --Be sure to change all 'modname' to the name of your mod!
  3. --Be sure all code is before 'return modname'
  4.  
  5. -- Mod Name by Author, v1
  6. local modname = {}
  7.  
  8. function modname.tick()
  9. local playerID - PLAYER.PLAYER_ID()
  10. --insert code here
  11.  
  12.  
  13. end
  14. return modname
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement