Deselected (Event): Difference between revisions
From Legacy Roblox Wiki
Jump to navigationJump to search
>Camoy Example |
>Emess categorizing |
||
(7 intermediate revisions by 3 users not shown) | |||
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 = | |object = HopperBin | ||
|}}</onlyinclude> | |}}</onlyinclude> | ||
|} | |} | ||
Line 13: | Line 13: | ||
end) | end) | ||
</pre>}} | </pre>}} | ||
[[Category:Events]] |
Latest revision as of 22:39, 13 May 2011
|
Example
local bin = script.Parent --script is inside a HopperBin --note the use of an anonymous function bin.Deselected:connect(function() print("Deselected") end)