MouseClick (Event): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>Legend26
No edit summary
>JulienDethurens
No edit summary
 
(3 intermediate revisions by the same user not shown)
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|<pre>
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.
game.Workspace.Part.ClickDetector.MouseClick:connect(function(playerWhoClicked)
 
{{code|=
Workspace.Part.ClickDetector.MouseClick:connect(function(playerWhoClicked)
   print("Part was clicked by: " .. playerWhoClicked.Name)
   print("Part was clicked by: " .. playerWhoClicked.Name)
end)
end)
</pre>}}
}}


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

Latest 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)