Chat.Chatted doesn't work

The CS.Chatted function only fires when CS:Chat() is fired. Which is not when a player chats, rather an npc.

As already explained, you’re used .Changed, not .Chatted.

The problem with your code is that you’re trying to listen for ChatService.Chatted (an event games do not have the security level to operate on), when you should be listening for Player.Chatted.

You can read up on the code samples and explanations for this here.

1 Like

Thank you guys for the support, but unfortunately the options you gave me didn’t work.

I solved it by using a script in ServerScriptService and just using BindableEvents to know when someone chats.

Thank you!

1 Like

I would just like to point this out.
image
You did Changed, not Chatted.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.