ADVERTISEMENTREMOVE ADS

Chat Tag | Universal + All executors support

Universal script
1 year ago
Script preview thumbnail
Script Preview

Description

Universal Chat Tag script that works on ALL executors (on server sided and cheat engine ones too)

Follow my comments in script to customize it for yourself and enjoy :)

Note:

This is client only, so no one except you will see it.

Features:

  • Chat Tag
ADVERTISEMENTREMOVE ADS
16 Lines • 743 Bytes
Verified
Raw
local TextChatService = game:GetService("TextChatService")
local Players = game:GetService("Players")
local LocalPlayer = Players.LocalPlayer
local Tag = {
Color = "#6df76f", -- you can change it to what ever you like, BUT IT HAS TO BE HEX
Chattag = "[Developer]" -- this is what your tag will be
}
TextChatService.OnIncomingMessage = function(Message, ChatStyle)
local MessageProperties = Instance.new("TextChatMessageProperties")
local Player = Players:GetPlayerByUserId(Message.TextSource.UserId)
if Player.Name == LocalPlayer.Name then
MessageProperties.PrefixText = '<font color="' .. Tag.Color .. '">' .. Tag.Chattag .. '</font> ' .. Message.PrefixText
end
return MessageProperties
end
ADVERTISEMENTREMOVE ADS

Comments

0 comments
to add a comment
Loading comments
ADVERTISEMENTREMOVE ADS