Actors
get_comm_channel
communication channel list에서 channel ID를 조회하고 저장된 BindableEvent Instance를 반환합니다. 첫 번째 argument는 number여야 하며 lookup 전에 integer conversion로 변환됩니다. 해당 ID의 entry가 없으면 function은 nil을 반환합니다.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
communication channel list에서 channel ID를 조회하고 저장된 BindableEvent Instance를 반환합니다. 첫 번째 argument는 number여야 하며 lookup 전에 integer conversion로 변환됩니다. 해당 ID의 entry가 없으면 function은 nil을 반환합니다.
get_comm_channel(channelId: number): Instance | nil
local channelId = create_comm_channel()
local event = get_comm_channel(channelId)
print(event)