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

> Zwraca wynik odczytu hidden property "NetworkOwnerV3" z Instance i sprawdzenia, czy pierwsza zwrocona wartosc, przekonwertowana przez integer conversion, jest wieksza niz 2. Argument musi byc Instance object. Function wewnetrznie wywoluje the hidden property reader i nie przechwytuje bledow z tego wywolania, wiec Invalid Instance values, missing properties lub non-property metadata moga rzucac te same bledy co gethiddenproperty. Zwraca jeden boolean. Czy peer_id > 2 dokladnie oznacza local network ownership: Nicht aus der Codebasis verifizierbar.

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

  ## Argumenty

  <ParamField path={"instance"} type={"Instance"} required>
    Instance object przekazywane do the hidden property reader z property name "NetworkOwnerV3".
  </ParamField>

  ## Zwroty

  <ResponseField name={"isOwner"} type={"boolean"}>
    true, gdy integer conversion na pierwszej wartosci zwroconej z "NetworkOwnerV3" jest wieksze niz 2; w przeciwnym razie false.
  </ResponseField>

  ## Przykład

  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>
