GTA V LUA Plugin for Script Hook V
created by headscript
First of all I actually don't like to re-post of other forums but since I actually support this I want to make some of you aware of this.
Note : THIS ISN'T MY WORK credits go over to headscript
This is not a hack so don't expect big. This allows you to script and create stuff if you know lua.
I just am making you aware of a foundation to work on.
Description:
Write any LUA Script for GTA5
[Early Alpha]
Installation:
1. Put LUA.asi in GTA5 where the ScriptHookV.dll is located
2. Create scripts folder
3. Create main.lua inside scripts folder
4. Define init and main function the main.lua (basic lua shit)
5. Run gta5
Example (given by headscript)
Code:
function tick()
local playerPed = PLAYER.PLAYER_PED_ID()
local player = PLAYER.GET_PLAYER_PED(playerPed)
local playerExists = ENTITY.DOES_ENTITY_EXIST(playerPed)
if(playerExists) then
if(PED.IS_PED_IN_ANY_VEHICLE(playerPed, false)) then
local veh = PED.GET_VEHICLE_PED_IS_IN(playerPed,true)
if(get_key_pressed(115)) then
VEHICLE.SET_VEHICLE_FORWARD_SPEED(veh,500)
end
end
end
end
Virustotal Results
Jotti Results