Prints to the chat box.
See print, which instead prints to the debug console, for additional details regarding variadic args. See messagef
for handling string-formatted outputs.
Parameters
...args: any[]
variadic list of arguments that will be string-translated and then concatenated before output.
Returns void
Example
Account = {name="Jen", rank=10} functionAccount:toString() returnstring.format("name:%s, rank:%i", self.name, self.rank) end
Prints to the chat box. See print, which instead prints to the debug console, for additional details regarding variadic args. See messagef for handling string-formatted outputs.