Progress bar
How to replace it?
Use in external scripts
TriggerEvent("drugs_creator:startProgressBar", timeInMS, text, hexColor)Parameters
Name
Data type
Description
Example
-- This will create a command to show a red progressbar
-- /progressbar 5000 Hello
RegisterCommand("progressbar", function(playerId, args)
TriggerEvent("drugs_creator:startProgressBar", tonumber(args[1]), args[2], "#ff0000")
end)Last updated