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.
local frame = script.Parent.Parent local TextLabel = script.Parent frame.Visible = false game.Players.PlayerAdded:connect(function(Player) frame.Visible = true TextLabel.Text = Player.Name.. " joined the server!" wait(5) frame.Visible = false end)
Im not really sure what your asking because you need to be more specific but I do notice a typo in there.
TextLabel.Text = Player.Name " joined the server!"
This is what you put.
TextLabel.Text = Player.Name.. " joined the server!"
Thats what you should have put. I believe. Those dots are there for the script to say who joined the game. I actully made a script for this but mine was a hint message. Hope this helped:)