NativeSignal:Fire Synchronous

Forward the supplied arguments to the underlying event.

Syntax
Luau
NativeSignal:Fire(...args: any) -> ()

Parameters

Call this method with a NativeSignal receiver. The colon supplies self implicitly; a dot call must pass the receiver explicitly.

Function parameters
ParameterTypeDescription
...argsanyValues forwarded to the event.

Returns

()

This function returns no values.

Usage notes

The underlying event is called synchronously; the host controls listener scheduling.

Kawaii documentation