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:
message
String
required
The message that is going to be printed
image
String
a rbxassetid:// image that will be displayed as the icon. Defaults to ""
color
Color3
The color of the message, Defaults to Color3.fromRGB(255, 255, 255)
Custom Print returns as a table with the following fields:
message.update_message
function

Examples

local console = loadstring(game:HttpGet("https://raw.githubusercontent.com/notpoiu/Scripts/main/utils/console/main.lua"))()

console.custom_print("[ConsoleUtils]: Example script 😎")