What's new
Heapleak - Scripthub

Get the most out of HeapLeak by creating a free account! Once signed in, you’ll gain full access to restricted content, be able to share your own scripts, and participate in our member-only discussions.

Universal Chat Tag (For your devteam)

Version / Update: v1.0.0
Download / Script Link
local badchatservice = game.TextChatService
local player = game.Players.LocalPlayer
local colour = "#A020F0" -- Color (Hex)
local prefix = "[Developer]" -- tag
local user --[[(or more)]] = {"OldDyanbloxs"} -- Who you would want to have the tag when they talk

-- coding in velocity... in my mum's car ... at 41C #COLD

badchatservice.OnIncomingMessage = function(m, cs)
local mvp = Instance.new("TextChatMessageProperties")
local plr = game.Players:GetPlayerByUserId(m.TextSource.UserId)
for i,v in pairs(user) do
if plr.Name == v then
mvp.PrefixText = '<font color="'..colour..'">'..prefix..'</font> ' .. m.PrefixText
end
end
return mvp
end
[ View More ]
69b9a2db-b26a-4f99-b68e-bdb531e00895.webp


This is a universal Chat tag for your dev team or just a group of people you could for example put this in your script so when people run it and get into the same game as you/your dev team they know its the offical you or them
 
Works on mobile
  1. Yes
Back
Top