MouseButton1Down (Event): Difference between revisions
From Legacy Roblox Wiki
Jump to navigationJump to search
>Camoy Total fix. |
>Pighead10 in objects GuiButton |
||
(10 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
{{Event | <onlyinclude>{{Event|name = MouseButton1Down | ||
|name | |arguments = [[int]] x, [[int]] y | ||
|arguments | |description = Fired when the mouse is in the left mouse down state on the GUI object. | ||
|description | |objects = [[GuiButton]] | ||
| | }}</onlyinclude> | ||
{{clear floats}} | |||
{{Example|<pre> | |||
gui.MouseButton1Down:connect(function() | |||
print("Button1 down.") | |||
end) | |||
</pre>}} | |||
[[Category:Events]] |
Latest revision as of 11:22, 13 February 2011
![]() | |
Description | Fired when the mouse is in the left mouse down state on the GUI object. |
---|---|
Member of: | GuiButton |
Example
gui.MouseButton1Down:connect(function() print("Button1 down.") end)