Deselected (Event): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>Camoy
Example
>Camoy
Example
(No difference)

Revision as of 14:42, 29 August 2010

Deselected ( )
Description Fired when a HopperBin's thumbnail is clicked or it's corresponding number is pressed while it's selected.
Member of: [[RBX.lua.HopperBin (Object)|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)