Config

Config.lua Preview

Config = {}

Config.Framework = 'esx' -- 'esx' || 'qb' || 'vrp'

Config.ReportCommand = 'report'

function DisableHud(toggle) -- here you can add the trigger to hide you hud
    TriggerEvent('codem-blackhudv2:SetForceHide', toggle)
end

-- OR

function DisableHudCommand() -- here you can add the command used to toggle the hud
    ExecuteCommand("togglehud")
end

Last updated

Was this helpful?