rconsoleinfo Synchronous
consoleinfo
Write an informational message to the script console. The supplied value is converted to text. Use it for successful steps and routine progress that should be distinguishable from warnings or errors.
Luau
rconsoleinfo(data: any, async: boolean?) -> ()Parameters
| Parameter | Type | Description |
|---|---|---|
data | any | Value to stringify and display. |
async | boolean? | Optional compatibility flag. It is validated as a boolean but does not schedule asynchronous output. |
Returns
()This function returns no values.
Example
Luau
rconsoleshow()
rconsoleinfo("Preferences saved.")