I have a part in the workspace and then a surface gui in that part, and in that surface gui a frame, and in that frame a button, I have this script going so far but dont know how to get the player using this server sided script?
1 | script.Parent.MouseButton 1 Click:connect( function () |
2 | local player = game.Players.LocalPlayer |
You should insert a local script in StarterGui which is the more efficient way to do this and inside the local script you can place this code
1 | workspace.CustomizationGuiPart.SurfaceGui.Hats.Afro.MouseButton 1 Click:Connect( function () |
2 |
3 | local Player = game.Players.LocalPlayer -- player |
4 |
5 | print (Player.Name) |
6 |
7 | end ) |