So I am trying to change my chat font for my game and I made this but it doesn’t work, how would I fix it?
what I made:
local ServerScriptService = game:GetService("ServerScriptService")
local ChatService = require(ServerScriptService:WaitForChild("ChatServiceRunner"):WaitForChild("ChatService"))
local Players = game:GetService("Players")
local spec = {'specowos'}
ChatService.SpeakerAdded:Connect(function(PlrName)
local Speaker = ChatService:GetSpeaker(PlrName)
for _, v in pairs(spec) do
if Players[PlrName].Name == v then
Speaker:SetExtraData('Font', {{Font = "Arcade"}})
end
end
end)