Deselected (Event)

From Legacy Roblox Wiki
Revision as of 22:39, 13 May 2011 by >Emess (categorizing)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search
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)