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

> Tìm channel ID trong communication channel list và trả về BindableEvent Instance đã lưu. Argument đầu tiên phải là number và được chuyển đổi bằng integer conversion trước lookup. Nếu không có entry cho ID đó, function trả về nil.

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

  ## Đối số

  <ParamField path={"channelId"} type={"number"} required>
    Channel ID được chuyển đổi bằng integer conversion và tìm trong communication channel list.
  </ParamField>

  ## Giá trị trả về

  <ResponseField name={"event"} type={"Instance | nil"}>
    BindableEvent Instance đã lưu cho channel ID, hoặc nil khi ID không có trong communication channels.
  </ResponseField>

  ## Ví dụ

  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>
