of     1   

iagofofo12
#218160888Sunday, June 04, 2017 6:56 PM GMT

I'm making a script to change a textlabel on a gui to the Player's name: local PLR = game.Players.LocalPlayer function onPlayerAdded(player) PLR.PlayerGui.Playerlist.Player_Frame.Playername.Text= "plr.Name" end When I run the game, nothing happens, nothing appears on the output. Anyone can help?
Serphos
#218161287Sunday, June 04, 2017 7:02 PM GMT

You need to bind the onPlayerAdded function to an event: game.Players.PlayerAdded:connect(onPlayerAdded) also you should remove the "" around "plr.name"

    of     1