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

> Mencari channel ID di communication channel list dan mengembalikan BindableEvent Instance yang tersimpan. Argument pertama harus number dan dikonversi dengan integer conversion sebelum lookup. Jika tidak ada entry untuk ID tersebut, function mengembalikan nil.

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

  ## Argumen

  <ParamField path={"channelId"} type={"number"} required>
    Channel ID yang dikonversi dengan integer conversion dan dicari di communication channel list.
  </ParamField>

  ## Return

  <ResponseField name={"event"} type={"Instance | nil"}>
    BindableEvent Instance yang tersimpan untuk channel ID, atau nil saat ID tidak ada di communication channels.
  </ResponseField>

  ## Contoh

  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>
