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

# get_comm_channel

> Bir channel ID değerini communication channel list içinde arar ve saklanan BindableEvent Instance değerini döndürür. İlk argument number olmalıdır ve lookup öncesinde integer conversion ile dönüştürülür. Bu ID için entry yoksa function nil döndürür.

<div className="real-function-page">
  ```lua theme={null}
  get_comm_channel(channelId: number): Instance | nil
  ```

  ## Argümanlar

  <ParamField path={"channelId"} type={"number"} required>
    integer conversion ile dönüştürülüp communication channel list içinde aranacak channel ID.
  </ParamField>

  ## Dönüşler

  <ResponseField name={"event"} type={"Instance | nil"}>
    channel ID için saklanan BindableEvent Instance, veya ID communication channels içinde yoksa nil.
  </ResponseField>

  ## Örnek

  Look up the BindableEvent Instance stored for a communication channel ID.

  ```lua theme={null}
  local channelId = create_comm_channel()
  local event = get_comm_channel(channelId)

  print(event)
  ```
</div>
