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

> Recherche un channel ID dans l'communication channel list et renvoie la BindableEvent Instance stockée. Le premier argument doit être une number et est converti avec integer conversion avant le lookup. Si aucun entry n'existe pour cet ID, la function renvoie nil.

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

  ## Arguments

  <ParamField path={"channelId"} type={"number"} required>
    Channel ID converti avec integer conversion puis recherché dans l'communication channel list.
  </ParamField>

  ## Retours

  <ResponseField name={"event"} type={"Instance | nil"}>
    BindableEvent Instance stockée pour le channel ID, ou nil lorsque l'ID n'est pas présent dans communication channels.
  </ResponseField>

  ## Exemple

  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>
