Hello Everyone,
I am making a theme park game with a friend and I want to have a Chat Welcomer but I don’t know how to make one. I already tried a script but it doesn’t work. Can someone help me?
script :
game.Players.PlayerAdded:Connect(function(player)
local welcomeMessage = "Welcome to WabBlox, " … player.Name … “!”
game:GetService(“Chat”):Chat(player.Character.Head, welcomeMessage)
end)