RegisterCommand('testUI', function(_, args)
if args[1] == '1' then
HRLib.progressBar('circle', {
duration = 2500,
position = 'bottom-center'
})
elseif args[1] == '2' then
HRLib.progressBar('horizontal', {
duration = 2500,
description = 'Random Text',
position = 'bottom-center'
})
elseif args[1] == '3' then
HRLib.progressBar('vertical', {
duration = 2500,
description = 'TEXT',
position = 'bottom-center'
})
end
end, false)