How do I detect which player has hovered over a click detector?

as seen in the title I’m interested if and how you can detect who has hovered over a click detector when someone has.

By using the player argument that gets passed with the event

Example:

ClickDetector.MouseHoverEnter:Connect(function(player)
	print("MouseHoverEnter activated by:", player.Name)
end)
2 Likes