How would i achieve a system like in "Guess the drawing!"

How would i achieve a system like in “Guess the drawing!”: Guess the drawing! - Roblox

Where if you guess the correct word it doesnt show the word in chat, just that you guessed the correct word. Thanks!

In Guess the Drawing, they used a custom chat system to listen to Player’s messages and edit out the correct answers.

If you plan to use Roblox’s TextChatService, you can look into TextChannel.ShouldDeliverCallback on the Server to not send messages which contain the correct word and fire a RemoteEvent to all clients to trigger TextChannel:DisplaySystemMessage on the Client to notify all Players that someone guessed the word correctly.

2 Likes

thanks i used the ShouldDeliverCallback for my problem!