MouseClick (Event): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>JulienDethurens
Did some changes.
>JulienDethurens
No edit summary
Line 1: Line 1:
<onlyinclude>{{Event
<onlyinclude>{{Event
|name = MouseClick
|name = MouseClick
|arguments = [[RBX.lua.Player (Object)|Player]] playerWhoClicked
|arguments = [[RBX.lua.Player (Object)|Player]] <var>playerWhoClicked</var>
|description = Fired after [[ClickDetector]]'s parent is clicked.
|description = Fired after the [[ClickDetector]]'s parent is clicked.
|object= ClickDetector
|object= ClickDetector
}}</onlyinclude>
}}</onlyinclude>


{{clear floats}}
{{clear floats}}
== Example ==


{{Example|<code lua>
This code would print <samp>Part was clicked by: </samp>, followed by the name of the player who clicked the part, whenever it is clicked.
 
{{code|=
Workspace.Part.ClickDetector.MouseClick:connect(function(playerWhoClicked)
Workspace.Part.ClickDetector.MouseClick:connect(function(playerWhoClicked)
   print("Part was clicked by: " .. playerWhoClicked.Name)
   print("Part was clicked by: " .. playerWhoClicked.Name)
end)
end)
</code>}}
}}


[[Category:Events]]
[[Category:Events]]

Revision as of 00:22, 26 March 2012

MouseClick ( Player playerWhoClicked )
Description Fired after the ClickDetector's parent is clicked.
Member of: ClickDetector

Example

This code would print Part was clicked by: , followed by the name of the player who clicked the part, whenever it is clicked.

Workspace.Part.ClickDetector.MouseClick:connect(function(playerWhoClicked)
  print("Part was clicked by: " .. playerWhoClicked.Name)
end)