Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
2

My Chat Tags Are No Longer Working! Help?

Asked by 4 years ago

This question has been solved by the original poster.

I Have Used Prints Nothing In Output No Errors/Warnings/Info At All Please Help.

local ServerScriptService = game:GetService('ServerScriptService')

local ChatService = require(ServerScriptService:WaitForChild('ChatServiceRunner'):WaitForChild('ChatService'))

game.Players.PlayerAdded:Connect(function(Player)
    print("Player Joined.")
    ChatService.SpeakerAdded:Connect(function(PlayerName)
        print("Speaker Added.")
    local Speaker = ChatService:GetSpeaker(PlayerName)
        print("Local Speaker Connected.")       
        if Player.UserId == 261477936 then
            print("EnzoTDZ_YT Has Joined.")
            Speaker:SetExtraData('NameColor', Color3.fromRGB(25, 150, 25))
            print("Changed Name Color.")
            Speaker:SetExtraData('ChatColor', Color3.fromRGB(0, 255, 0))
            print("Changed Chat Color.")
            Speaker:SetExtraData('Tags', {{TagText = 'OWNER', TagColor = Color3.fromRGB(255, 0, 0)}})
            print("Added Tag.")
        end
    end)
end)

1 answer

Log in to vote
2
Answered by 4 years ago

FIXED MY SELF

1
Thanks Admin. EnzoTDZ_YT 275 — 4y
Ad

Answer this question