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

> Ищет channel ID во communication channel list и возвращает сохраненный BindableEvent Instance. Первый argument должен быть number и преобразуется через integer conversion перед lookup. Если entry для этого ID не существует, function возвращает nil.

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

  ## Аргументы

  <ParamField path={"channelId"} type={"number"} required>
    Channel ID, преобразуемый через integer conversion и ищущийся во communication channel list.
  </ParamField>

  ## Возвраты

  <ResponseField name={"event"} type={"Instance | nil"}>
    Сохраненный BindableEvent Instance для channel ID, или nil, если ID отсутствует в communication channels.
  </ResponseField>

  ## Пример

  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>
