MouseLeave (Event): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>Camoy
Used Base
>Tenal
No edit summary
 
(14 intermediate revisions by 5 users not shown)
Line 1: Line 1:
{|
<onlyinclude>{{Event|name = MouseLeave
|<onlyinclude>{{Event|name = MouseLeave
|arguments =
|arguments =
|description = Fired when a mouse "leaves" or moves off of a GUI Object.
|description = Fired when a mouse "leaves" or moves off of a GUI Object.
|object = [[GuiBase]]
|object = GuiObject
|}}
|}}
</onlyinclude>
</onlyinclude>
|}
 
{{clear floats}}
 
{{Example|<pre>
function leaving()
  print("Mouse has left GUI")
end
GUI.MouseLeave:connect(leaving)
</pre>}}
[[Category:Events]]

Latest revision as of 03:39, 7 February 2012

MouseLeave ( )
Description Fired when a mouse "leaves" or moves off of a GUI Object.
Member of: GuiObject



Example
function leaving()
  print("Mouse has left GUI")
end
GUI.MouseLeave:connect(leaving)