identifyexecutor
Returns the name and version of the current executor, first string contains the executor's identifier and the second contains the version of the executor.
function identifyexecutor(): (string, string)
Example
local ExecName, ExecVersion = identifyexecutor()
print(ExecName, ExecVersion) -- Output: "YourName 0.0.1"
Last updated