인수
RBXScriptSignal
필수
event descriptor signature를 검사할 RBXScriptSignal입니다.
반환값
{{Name: string, Type: string}}
각 항목에 Name 및 Type strings가 있는 array table입니다. 시그니처를 읽을 수 없거나 항목이 없으면 함수는 Name이 arg1이고 Type이 Variant인 fallback entry 하나를 반환합니다.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
RBXScriptSignal 시그니처에서 인수 정보의 array table을 반환합니다. 캡처된 런타임 인수 값은 반환하지 않습니다.
getsignalargumentsinfo(signal: RBXScriptSignal): {{Name: string, Type: string}}
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local remote = ReplicatedStorage:FindFirstChild("RemoteEvent")
if remote then
for _, argument in ipairs(getsignalargumentsinfo(remote.OnClientEvent)) do
print(argument.Name, argument.Type)
end
end