Im trying to make it so when a button is pressed the leaderstats go down. All I need is the player that clicked the button
1 | script.Parent.MouseButton 1 Click:Connect( function () |
2 | local plr = game.Players.LocalPlayer |
3 |
4 | --leaderstats |
5 | game.Workspace.Camera.Walls.World 1 wall:Destroy() |
6 | game.StarterGui.WallScripts.Wall 1 :Destroy() |
7 | script.Parent.Parent.Parent:Destroy() |
8 | end ) |
If you want to find the player's name that clicks the TextButton then you should use LocalScript
and make sure that variable local plr
is above the function which is script.Parent.MouseButton1Click:Connect(function()
.
Since you only ask how to find the player's name that clicks the TextButton and not a script to make leaderstats go down so here is the code.
1 | local plr = game.Players.LocalPlayer |
2 |
3 | script.Parent.MouseButton 1 Click:Connect( function () |
4 | print (plr.Name) -- replace this with function you want. |
5 | end ) |
If this answer helped you then please accept the answer.
You already have it? You have game.Players.LocalPlayer.
You need to use remote events for the leaderstats.