I made this button whenever it is clicked all players will be kick
and I wanted to make a notify all players in the server on who clicked
the click detector by putting a textlabel into a BillBoardGUI.
I wanted it to put the player name(the player who clicked the button) to
display it’s name in the billboardGUI
local Part = workspace.Part
local CD = Part.ClickDetector
local TextLabel = Part.BillboardGui.TextLabel
CD.MouseClick:Connect(function(plr)
TextLabel.Text = plr.Name
end)