Is it possible to script a verified badge next to somebody’s chats?
Like this:
If so, could somebody show me how I would do so?
Is it possible to script a verified badge next to somebody’s chats?
Like this:
If so, could somebody show me how I would do so?
it isnt possible sorry, because of the way roblox works its just like the star creator system where you cant script a star icon next to a leaderboard name.
Hi!
It is very possible, and I have the contributors in this thread (Premium, Verified, and Robux Unicode Characters) to thank for bringing the codes forward.
local TextChatService = game:GetService("TextChatService")
TextChatService.OnIncomingMessage = function(chatMessage: TextChatMessage)
local txtProperties = Instance.new("TextChatMessageProperties")
if chatMessage.Text then
txtProperties.PrefixText = string.gsub(chatMessage.PrefixText, ":$", utf8.char(0xE000)..":")
end
return txtProperties
end
Of course, comes along with player:IsVerified()
.
Thank you so much! This has been bothering me for a while now.
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.