> ## Documentation Index
> Fetch the complete documentation index at: https://docs.projectreal.gg/llms.txt
> Use this file to discover all available pages before exploring further.

# isnetworkowner

> Returns true when the Instance reports a NetworkOwnerV3 value greater than 2. Errors from reading that hidden property are not caught by this function.

<div className="real-function-page">
  ```lua theme={null}
  isnetworkowner(instance: Instance): boolean
  ```

  ## Arguments

  <ParamField path={"instance"} type={"Instance"} required>
    Instance whose NetworkOwnerV3 hidden property is checked.
  </ParamField>

  ## Returns

  <ResponseField name={"isOwner"} type={"boolean"}>
    true when the first NetworkOwnerV3 value is greater than 2; otherwise false.
  </ResponseField>

  ## Example

  Check network ownership for a BasePart Instance.

  ```lua theme={null}
  local part = workspace:FindFirstChildWhichIsA("BasePart", true)

  if part then
      local ownsNetwork = isnetworkowner(part)
      print(ownsNetwork)
  end
  ```
</div>
