identifyexecutor Synchronous

  • getexecutorname

Return the name and version reported by the running Kawaii build. These values can be included in logs or diagnostic information. Keep both return values when building a support report. Use getexecutorversion if only the version string is needed.

Syntax
Luau
identifyexecutor() -> (name: string, version: string)

Parameters

This function takes no arguments.

Returns

(name: string, version: string)

Two strings in order: the runtime name and its version. Assign both results if the version is needed.

Example

Example
Luau
local name, version = identifyexecutor()
print(name .. " " .. version)
Kawaii documentation