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

# create_comm_channel

> Instance.new ile yeni bir BindableEvent oluşturur, Instance reference değerini numeric channel ID altında communication channel list içine kaydeder ve ID ile BindableEvent Instance değerini döndürür. channel ID, current map size plus one ile hesaplanır. Instance.new("BindableEvent") stack üzerinde object value bırakmazsa function "Failed to make a BindableEvent" fırlatır.

<div className="real-function-page">
  ```lua theme={null}
  create_comm_channel(): integer | Instance
  ```

  ## Dönüşler

  <ResponseField name={"channelId"} type={"integer"}>
    communication channel list içine eklenen numeric channel ID.
  </ResponseField>

  <ResponseField name={"event"} type={"Instance"}>
    channel için saklanan ve caller değerine döndürülen BindableEvent Instance.
  </ResponseField>

  ## Örnek

  Create a BindableEvent communication channel and keep the returned channel ID for later lookup.

  ```lua theme={null}
  local channelId, event = create_comm_channel()

  print(channelId)
  print(event)
  ```
</div>
