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

# cloneref

> Ayni temel Instance reference icin yeni bir Instance referansi push eder ve onu dondurur.

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

  ## Aliaslar

  * `clonereference`

  ## Argümanlar

  <ParamField path={"instance"} type={"Instance"} required>
    Yeni referans icin kaynak olarak kullanilan Instance object.
  </ParamField>

  ## Dönüşler

  <ResponseField name={"reference"} type={"Instance"}>
    Instance cache orijinal Instance reference ile calistiktan sonra dondurulen Instance referansi.
  </ResponseField>

  ## Örnek

  Mevcut bir Instance object degerinden baska bir Instance referansi olustur.

  ```lua theme={null}
  local Players = game:GetService("Players")

  local reference = cloneref(Players)
  print(reference)

  local sameAlias = clonereference(Players)
  print(sameAlias)
  ```
</div>
