#Chat
1 messages · Page 1 of 1 (latest)
i mean like if i join that in chat is gonnaa be this message: Owner joined
** You are now Level 1! **
to display a message its from the TextChatService iirc
1 messages · Page 1 of 1 (latest)
ik u can use ```lua
local players = game:GetService("Players")
local ownerId = 123456789 -- put owner user id here
players.PlayerAdded:Connect(function(plr)
local userId = plr.UserId
if userId ~= ownerId then return end
-- put the message
end)
but im not sure how to display a message
i mean like if i join that in chat is gonnaa be this message: Owner joined
** You are now Level 1! **
to display a message its from the TextChatService iirc