-- In vehicles_keys/integrations/cl_integrations.luaRegisterNetEvent("vehicles_keys:framework:ready", function() -- Disables the default script progress bar (otherwise there would be 2 progress bars) exports["vehicles_keys"]:disableScriptEvent("vehicles_keys:internalProgressBar")end)-- Example to replace the script progress bar with an external oneRegisterNetEvent("vehicles_keys:internalProgressBar", function(time,text)-- The event to activate your external progress barTriggerEvent("external_progressbar:start", time, text)end)
Where to insert the code?
You can place it in the file integrations/cl_integrations.lua of the script, at the bottom of the file on new lines