so i'm wanting to make a script that tells everyone in the server that a new player has joined . the message will be saying "(New player name) has joined the server!" Can someone please help me on how to do this?
This is not a request site, but since this is very easy, I'll help....
game.Players.PlayerAdded:connect(function(p) h = Instance.new("Hint", Workspace) h.Text = p.Name.." has joined the server!" wait(2) h:Destroy() end)