Event (Event)

From Legacy Roblox Wiki
Jump to navigationJump to search
Event ( Tuple arguments )
Description Fires when the Fire method of the BindableEvent is called. arguments will be the arguments passed to the Fire method.
Member of: BindableEvent


Example

This code would print all the arguments passed to the Fire method of a BindableEvent, whenever it is called.

event = Instance.new('BindableEvent', Workspace)
event.Event:connect(function(arguments)
	print(arguments)
end)