For the complete documentation index, see llms.txt. This page is also available as Markdown.

HUD

This event gets triggered when a player enters/leaves a vehicleshop, use it in your own script to hide/show your HUD.

RegisterNetEvent('av_vehicleshop:state', function(state)
    if state then
        -- Hide your HUD
        
    else
        -- Show your HUD
    
    end
end)

Last updated