This utility allows you to print messages in the developer console with a custom icon and color.
Prerequisite You should have a executor that supports accessing CoreGui.
API
the custom_print function takes the following arguments:
The message that is going to be printed
a rbxassetid:// image that will be displayed as the icon. Defaults to ""
The color of the message, Defaults to Color3.fromRGB(255, 255, 255)
Custom Print returns as a table with the following fields:
The message that is going to be updated
a rbxassetid:// image that will be displayed as the icon. Defaults to ""
The color of the message, Defaults to Color3.fromRGB(255, 255, 255)
Examples
message_only.lua
message_and_icon.lua
message_icon_and_color.lua
message_editing.lua
local console = loadstring ( game : HttpGet ( "https://raw.githubusercontent.com/notpoiu/Scripts/main/utils/console/main.lua" ))()
console . custom_print ( "[ConsoleUtils]: Example script 😎" )