I have an OverheadUI that’s currently inside of StarterCharacterScripts
.
The OverHead server-side script is as follows:
task.wait()
GUI = script.PlayerUI:Clone()
GUI.Parent = script.Parent.HumanoidRootPart
GUI.Enabled = true
The script simply clones the overhead to the player, however, I was wondering how I would get the players name within the OverHead
server-side script? I wanted to get the players name, and check if they have a pass, and if they do their “Name” TextLabel color should be golden. I’m aware of how to check for the gamepass and how to change the TextLabel color if it’s owned, however, I’m not sure how to get the players name within the script. Please let me know with any advice or tips you may have, thanks alot!