its supposed to give me and someone else a chat tag but its giving it to the whole server instead even if i put the user ids
local textChatService = game:GetService("TextChatService")
textChatService.OnIncomingMessage = function(message: TextChatMessage)
local properties = Instance.new("TextChatMessageProperties")
if message.TextSource then
local player = game:GetService("Players"):GetPlayerByUserId(message.TextSource.UserId)
if player.UserId == "971548861" or "207899016" then
properties.PrefixText = "<font color='#FFFF00'>[👑Owner]</font> " .. message.PrefixText
end
end
return properties
end