I made a GUI that covers the whole screen and i want it to say Hello (Player username here), but I don't know how to I've searched on the internet on how to do it but, I still can't find how to do it pls help.
You get the name of the LocalPlayer
, then add that to your GUI's text
Example:
local label = script.Parent local player = game.Players.LocalPlayer label.Text = "Hello, "..player.Name
try this add a LOCAL script into the text label then write this script.Parent.Text = "write something here " .. game.Players.localPlayer.Name .. "write something here if you want"