MouseButton1Down (Event): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>Camoy
Fixed
>Pighead10
in objects GuiButton
 
(6 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{|
<onlyinclude>{{Event|name = MouseButton1Down
|<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.
|object = [[TextButton]], [[ImageButton]]
|objects = [[GuiButton]]
|}}</onlyinclude>
}}</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

MouseButton1Down ( int x, int y )
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)