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

> Procura um channel ID no communication channel list e retorna a BindableEvent Instance armazenada. O primeiro argument deve ser number e é convertido com integer conversion antes do lookup. Se não existir entry para esse ID, a function retorna 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 convertido com integer conversion e pesquisado no communication channel list.
  </ParamField>

  ## Retornos

  <ResponseField name={"event"} type={"Instance | nil"}>
    BindableEvent Instance armazenada para o channel ID, ou nil quando o ID não está presente em communication channels.
  </ResponseField>

  ## Exemplo

  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>
