MouseButton1Down (Event): Difference between revisions
From Legacy Roblox Wiki
Jump to navigationJump to search
>Camoy Example added |
>Camoy fixed |
||
Line 1: | Line 1: | ||
<onlyinclude>{{Event|name = MouseButton1Down | |||
|arguments = [[int]] x, [[int]] y | |arguments = [[int]] x, [[int]] y | ||
|description = Fired when the mouse is in the left mouse down state on the GUI object. | |description = Fired when the mouse is in the left mouse down state on the GUI object. | ||
| | |objects = [[TextButton]], [[ImageButton]] | ||
}}</onlyinclude> | |||
{{clear floats}} | |||
{{Example|<pre> | {{Example|<pre> | ||
gui.MouseButton1Down:connect(function() | gui.MouseButton1Down:connect(function() | ||
Line 11: | Line 12: | ||
end) | end) | ||
</pre>}} | </pre>}} | ||
[[Category:Events]] |
Revision as of 15:37, 27 January 2011
![]() | |
Description | Fired when the mouse is in the left mouse down state on the GUI object. |
---|---|
Member of: | TextButton, ImageButton |
Example
gui.MouseButton1Down:connect(function() print("Button1 down.") end)