Print with style in the developer console
custom_console_progressbar
local console = loadstring(game:HttpGet("https://raw.githubusercontent.com/notpoiu/Scripts/main/utils/console/main.lua"))() local message = console.custom_console_progressbar("[MSHUB]: Authenticating...")
local console = loadstring(game:HttpGet("https://raw.githubusercontent.com/notpoiu/Scripts/main/utils/console/main.lua"))() local message = console.custom_console_progressbar({ msg = "[MSHUB]: Authenticating...", img = "", clr = Color3.fromRGB(255, 0, 0), length = 10 })
Show properties
local console = loadstring(game:HttpGet("https://raw.githubusercontent.com/notpoiu/Scripts/main/utils/console/main.lua"))() local message = console.custom_console_progressbar("[MSHUB]: Authenticating...") for i = 1, 10 do message.update_progress(i) task.wait(.05) end message.update_message("[MSHUB]: Authenticated!", "rbxasset://textures/AudioDiscovery/done.png", Color3.fromRGB(51, 255, 85))