How do I get the name of a player who activated a ClickDetector? (in this context by player I mean the name of their character model in Workspace)
whenever the ClickDetector.MouseClick()
event fires, it passes the player object of the player that clicked it..
so all you have to do is:
clickDetector.MouseClick:Connect(function(player) print(player.Name, " clicked the button") end)