How to detect who click on a mesh?

Hello!
I made a click detector button but I would like kown the script what I must write to detect who clicked on the click detector.
Can you help me please?

first argument of ClickDetector.MouseClick event is player who fired this event.

ClickDetector.MouseClick:Connect(function(player)
    print(player.Name)
end)