Like if someone were to chat, their chat tags would look like this:
[VIP][Admin][Manager]
Like if someone were to chat, their chat tags would look like this:
[VIP][Admin][Manager]
Yes, check out this tutorial:
This is for the old chat service
It still can be done under TextChatService with LegacyChatVersion enabled in ChatVersion.
However, I still prefer the new service though.
Try this…? (put in workspace), LOCALSCRIPT!
local TextChatService = game:GetService("TextChatService")
local Players = game:GetService("Players")
TextChatService.OnIncomingMessage = function(message: TextChatMessage)
local properties = Instance.new("TextChatMessageProperties")
if message.TextSource then -- put ur argument here
properties.PrefixText = "<font color='#F5CD30'>[VIP]</font> <font color='#FF0000'>[Admin]</font> <font color='#0000FF'>[Manager]</font> " .. message.PrefixText
end
return properties
end
Test Results: WORKED!