Event (Event)

From Legacy Roblox Wiki
Revision as of 05:44, 27 April 2023 by Realjame (talk | contribs) (Text replacement - "<SyntaxHighlight code="lua">" to "<syntaxhighlight lang="lua">")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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)