Deselected (Event): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>Camoy
Example
>Mattchewy
No edit summary
Line 3: Line 3:
|arguments =
|arguments =
|description = Fired when a HopperBin's thumbnail is clicked or it's corresponding number is pressed while it's selected.
|description = Fired when a HopperBin's thumbnail is clicked or it's corresponding number is pressed while it's selected.
|object = [[HopperBin]]
|object = HopperBin
|}}</onlyinclude>
|}}</onlyinclude>
|}
|}

Revision as of 02:05, 4 February 2011

Deselected ( )
Description Fired when a HopperBin's thumbnail is clicked or it's corresponding number is pressed while it's selected.
Member of: HopperBin
Example
local bin = script.Parent --script is inside a HopperBin
--note the use of an anonymous function
bin.Deselected:connect(function()
  print("Deselected")
end)