create a progressbar in your scripts
Initiate the progress bar ,use it on the top of your script
progressbar = exports.vorp_progressbar:initiate()
start
Start your progress UI
the message that will be displayed in the progressbar
the duration that the progressbar will be displayed in milliseconds
the function that will be called when the progressbar is done
the theme of the progressbar can be linear, circle, innercircle
linear
circle
innercircle
progressbar.start("Loading Example", 20000, function () print('DONE!!!!') end, 'linear')