firesignal
function firesignal(signal: RBXScriptSignal, ...: any?)Parameters
Example
local part = Instance.new("Part")
part.ChildAdded:Connect(function(arg1)
print(typeof(arg1))
end)
firesignal(part.ChildAdded) -- Output: nil
firesignal(part.ChildAdded, workspace) -- Output: InstanceLast updated