Main/resources/[carscripts]/slashtires/bridge/helptext/qb.lua
2025-06-07 08:51:21 +02:00

11 lines
373 B
Lua

---Starts showing the help text
function StartHelpText()
local keyCommand = IsUsingKeyboard(1) and `+slashtire` or `stc`
local keyLabel = GetLocalization('help_text_keyboard', GetKeyMappingKey(keyCommand))
exports['qb-core']:DrawText(keyLabel, 'left')
end
---Stops showing the help text
function StopHelpText()
exports['qb-core']:HideText()
end