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

> communication channel list에서 channel ID를 조회하고 저장된 BindableEvent Instance를 반환합니다. 첫 번째 argument는 number여야 하며 lookup 전에 integer conversion로 변환됩니다. 해당 ID의 entry가 없으면 function은 nil을 반환합니다.

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

  ## 인수

  <ParamField path={"channelId"} type={"number"} required>
    integer conversion로 변환한 뒤 communication channel list에서 검색할 channel ID입니다.
  </ParamField>

  ## 반환값

  <ResponseField name={"event"} type={"Instance | nil"}>
    channel ID에 저장된 BindableEvent Instance, 또는 ID가 communication channels에 없을 때 nil입니다.
  </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>
