It’s like something where it identifies you as the [Owner] or like [Head Builder] (I did [MAD] in the title bc that’s my display name)
Scripting helpers is not a request site! (I'll provide the code though) Here's the code :
local players = game:GetService("Players") local chatservice = require(game.ServerScriptService:WaitForChild("ChatServiceRunner"):WaitForChild("ChatService")) game.Players.PlayerAdded:Connect(function(plr) if plr.UserId ==1367449480 then chatservice.SpeakerAdded:Connect(function(playerName) local speaker = chatservice:GetSpeaker(playerName) speaker:SetExtraData("Tags",{{TagText = "MAD", TagColor = Color3.fromRGB(255,0,0)}}) end) end end)
i got this:
local players = game:GetService("Players") local chatService = require(game.ServerScriptService:WaitForChild("ChatServiceRunner"):WaitForChild("ChatService")) local tags = { [1367449480] = {TagText = "Owner", TagColor = Color3.fromRGB(255,0,0)}, } chatService.SpeakerAdded:Connect(function(playerName) local speaker = chatService:GetSpeaker(playerName) local player = game.Players[playerName] if tags[player.UserId] then speaker:SetExtraData("Tags",{tags[player.UserId]}) end end)