Skip to main content
Client side
Initiate the progress bar ,use it on the top of your script
progressbar = exports.vorp_progressbar:initiate()
Start your progress UI
message
string
required
the message that will be displayed in the progressbar
duration
number
required
the duration that the progressbar will be displayed in milliseconds
callback
function
required
the function that will be called when the progressbar is done
theme
string
required
the theme of the progressbar can be linear, circle, innercircle
progressbar.start("Loading Example", 20000, function ()
    print('DONE!!!!')
end, 'linear')
I