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.

Syntax
Luau
info(...values: any) -> ()

Parameters

Function parameters
ParameterTypeDescription
...valuesanyValues 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

Example
Luau
local name, version = identifyexecutor()
info("Started", name, version)
Kawaii documentation