Owl.Reflection.GetControllerInfo(name: string): ControllerInfo | nil

Client Only

Inspects a client-side controller and returns details about its dependencies, lifecycle hooks, metrics and version.

Parameters

name*
string
Name identifier of the controller to inspect.

Returns

ControllerInfo | nilDetailed metadata dictionary about the target controller or nil if not found.

Related Types

local hudInfo = Owl.Reflection.GetControllerInfo("HUDController")
if hudInfo then
    print("HUDController started status:", hudInfo.Started)
end