How would I make a chatted system that works on all players without spamming .Chatted events?
like is there a different way of doing this?
for i,v in pairs(game:GetService('Players'):GetPlayers()) do
v.Chatted:Connect(function()
print('player chatted !')
end)
end
Sorry if this makes zero sense I have no idea how else to reword it