So I wanted to make bold text work in TextChatService, but it just comes out like this. Is this a bug or do I need to fix something?
Here’s the code:
local TCS = game:GetService("TextChatService")
TCS.OnIncomingMessage = function(message)
local properties = Instance.new("TextChatMessageProperties")
if message.TextSource then
if message.Text == "???" then
properties.Text = "<b>???<b>"
print("yea")
end
end
return properties
end