if SERVER then
util.AddNetworkString('FatedTTS')
hook.Add('PlayerSay', 'Fated.TTS', function(ply, txt, _, isDead)
if not isDead and ply:HasPurchase('tts') then
net.Start('FatedTTS')
net.WriteString(txt)
net.WriteEntity(ply)
net.Broadcast()
end
end)
end