OnEnter GUI, What is wrong?
Please provide more explanation in your question. If you explain exactly what you are trying to accomplish, it will be much easier to answer your question correctly.
EDIT: since you don't know what this is supposed to do, lol.
Its a custom Hint message GUI, for when a player joins, it shows Player name and "joined the server!"
and after 5 sec it is gonna disappear.
01 | local frame = script.Parent.Parent |
02 | local TextLabel = script.Parent |
06 | game.Players.PlayerAdded:connect( function (Player) |
10 | TextLabel.Text = Player.Name.. " joined the server!" |