Chattag feedback! (Scripted)

Yes and I am pretty sure I did everything correctly… unless I have to do more in order for this to work…
image

Ok so I decided to go with a different script that’s less complicated and that script worked instantly… I’m not saying your script is just a lost cause for me. I’m saying that it’s just a bit too different to what im used to…

Script:
local ServerScriptService = game:GetService(“ServerScriptService”)
local ChatService = require(ServerScriptService:WaitForChild(“ChatServiceRunner”):WaitForChild(“ChatService”))
local Players = game:GetService(“Players”)

local Owner = {‘Username’} --Change YOUR NAME to your username

ChatService.SpeakerAdded:Connect(function(PlrName)
local Speaker = ChatService:GetSpeaker(PlrName)
for _, v in pairs(Owner) do
if Players[PlrName].Name == v then
Speaker:SetExtraData(‘Tags’, {{TagText = “CustomTag”, TagColor = Color3.fromRGB(256, 0, 0)}}) --Change the numbers to what you want the color to be, you get the color code from a part when you choose what color it should be.
end
end
end)