create_comm_channel during the current session, mapped by their unique IDs.
Returns
{[number]: BindableEvent} - A dictionary where the keys are channel IDs and values are their corresponding BindableEvent objects.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
get_comm_channels(): {[number]: BindableEvent}
create_comm_channel during the current session, mapped by their unique IDs.
{[number]: BindableEvent} - A dictionary where the keys are channel IDs and values are their corresponding BindableEvent objects.
local channels = get_comm_channels()
-- Check if any communication channels are currently open
local active_channels = get_comm_channels()
if next(active_channels) == nil then
print("No active channels found.")
else
print("Found active communication channels.")
end