Skip to main content
This utility allows you to create loading spinners in the developer console with a custom icon and color.
Prerequisite You should have a executor that supports accessing CoreGui.

API

Simple Usage

the custom_console_progressbar takes in the following arguments:
String
required
The message that is going to be printed (concatinated with the progress bar)

Examples

progressbar_message_arg.lua

Advanced Usage

HOWEVER, it is possible to use a table as args and get more control. You can use a table with the following fields:
String
required
The message that is going to be printed (concatinated with the progress bar)
String
The image that is going to be displayed as the icon. Defaults to ""
Color3
The color of the message, Defaults to Color3.fromRGB(255, 255, 255)
Number
The maximum length of the progress bar, Defaults to 10

Examples

progressbar_table_args.lua

Progressbar Manipulation

the custom_console_progressbar function returns a table with the following fields:
function
function
function

Examples