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

> Instance에서 hidden property "NetworkOwnerV3"를 읽고 첫 번째 반환값을 integer conversion로 변환한 값이 2보다 큰지 확인한 결과를 반환합니다. 인수는 Instance object여야 합니다. 이 function은 내부에서 the hidden property reader를 호출하고 그 호출의 error를 잡지 않으므로 Invalid Instance values, missing properties, non-property metadata는 gethiddenproperty와 같은 error를 발생시킬 수 있습니다. boolean 하나를 반환합니다. peer_id > 2가 정확히 local network ownership을 의미하는지는: Nicht aus der Codebasis verifizierbar.

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

  ## 인수

  <ParamField path={"instance"} type={"Instance"} required>
    property name "NetworkOwnerV3"와 함께 the hidden property reader에 전달되는 Instance object입니다.
  </ParamField>

  ## 반환값

  <ResponseField name={"isOwner"} type={"boolean"}>
    "NetworkOwnerV3"의 첫 번째 반환값에 대한 integer conversion가 2보다 크면 true, 아니면 false입니다.
  </ResponseField>

  ## 예제

  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>
