MouseLeave (Event): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>Legend26
"Property of TextButton and ImageButton.">"Property" > lies
>Tenal
No edit summary
Line 14: Line 14:
GUI.MouseLeave:connect(leaving)
GUI.MouseLeave:connect(leaving)
</pre>}}
</pre>}}
[[Category:Events]]

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)