> ## 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

> Tra ve ket qua doc hidden property "NetworkOwnerV3" tu Instance va kiem tra gia tri tra ve dau tien, duoc chuyen doi bang integer conversion, co lon hon 2 hay khong. Doi so phai la Instance object. Function goi the hidden property reader noi bo va khong bat errors tu loi goi do, vi vay Invalid Instance values, missing properties, hoac non-property metadata co the tao cung errors nhu gethiddenproperty. Function tra ve mot boolean. Viec peer_id > 2 co chinh xac nghia la local network ownership hay khong la: Nicht aus der Codebasis verifizierbar.

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

  ## Đối số

  <ParamField path={"instance"} type={"Instance"} required>
    Instance object duoc truyen vao the hidden property reader voi property name "NetworkOwnerV3".
  </ParamField>

  ## Giá trị trả về

  <ResponseField name={"isOwner"} type={"boolean"}>
    true khi integer conversion tren gia tri tra ve dau tien cua "NetworkOwnerV3" lon hon 2; nguoc lai false.
  </ResponseField>

  ## Ví dụ

  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>
