> ## 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 المخزنة. يجب أن يكون الوسيط الأول 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>
