info Synchronous

Write an information message made from one or more values. Values are converted to strings and separated by tabs. Use it to log a status together with several values without manually joining them into one string.

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

Parameters

Function parameters
ParameterTypeDescription
...valuesanyValues to include in the message, in order.

Returns

()

This function returns no values.

Example

Example
Luau
info("Import complete", "files", 3, "skipped", 1)
Kawaii documentation