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

> Busca un channel ID en el communication channel list y devuelve la BindableEvent Instance almacenada. El primer argument debe ser number y se convierte con integer conversion antes del lookup. Si no existe entry para ese ID, la function devuelve nil.

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

  ## Argumentos

  <ParamField path={"channelId"} type={"number"} required>
    Channel ID que se convierte con integer conversion y se busca en el communication channel list.
  </ParamField>

  ## Retornos

  <ResponseField name={"event"} type={"Instance | nil"}>
    BindableEvent Instance almacenada para el channel ID, o nil cuando el ID no está presente en communication channels.
  </ResponseField>

  ## Ejemplo

  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>
