rconsoleinfo Synchronous
consoleinfo
Write an informational line to the script console with its Info label and color. Use it for a successful step that should stand out from plain output.
Luau
rconsoleinfo(data: any, async: boolean?) -> ()Parameters
| Parameter | Type | Description |
|---|---|---|
data | any | Value to stringify and print. |
async | boolean? | Optional compatibility boolean; validated but otherwise unused. |
Returns
()No values.
Usage notes
This writes to the script console. The separate info function follows the native Console redirection setting.
Example
Luau
rconsoleshow()
rconsoleinfo("Settings saved")