info Synchronous
Write one or more values through Roblox's native Info output channel. It is a good place for status messages that should follow the host's Console redirection setting.
Luau
info(...values: any) -> ()Parameters
| Parameter | Type | Description |
|---|---|---|
...values | any | Values formatted by the native Info output channel. |
Returns
()No values.
Usage notes
With Console redirection enabled, the message appears in Kawaii's workspace console; with it disabled, Roblox receives it.
The script console's rconsoleinfo is a separate UI output function.
Example
Luau
local name, version = identifyexecutor()
info("Started", name, version)