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.
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
Luau
local name, version = identifyexecutor()
print(name .. " " .. version)