Roblox scammer message Copy and paste

‼️HEY YOU‼️ You are eligible for 90,000 free robux! All you have to do is go here: https://m.youtube.com/watch?v=vSKRVbVg6l4 And follow 5 easy steps as shown in the video to achieve your goal of free robux! [OFFER ENDS TOMORROW ‼️‼️] VISIT https://m.youtube.com/watch?v=vSKRVbVg6l4 NOW TO RECEIVE YOUR PRIZE‼️ Again, thats https://m.youtube.com/watch?v=vSKRVbVg6l4 DON'T MISS OUT‼️‼️‼️‼️‼️‼️

Resources Community Resources

Roblox scammer message Copy and paste

Roblox scammer message Copy and paste

Hello everyone! I open sourced another project, the Scam Interceptor! This simple and easy to understand script removes messages that are determined to be scams. Unlike other solutions, there are no meaningful consequences for false positives and it's fully customizable.

Roblox scammer message Copy and paste

A table of "sets" is created. Each set has a table of key words (Lua patterns) with weights.

For example, this is a possible set:

["scamming"] = { ["blox%.page"] = 1; ["blox%.army"] = 1; ["robux"] = 0.6; ["r%$"] = 0.6; ["blox"] = 0.2; ["page"] = 0.2; ["free"] = 0.6; ["gamepasses"] = 0.2; };

If a message is found to have a weight higher than 1.0 in any single set then it’s consider suspicious and not sent to players.
Example: The message “I am giving away free robux and gamepasses” would be considered suspicious because it has "free" (+0.6), "robux" (+0.6), and "gamepasses" (+0.2)–which totals to 1.4 (which is greater than 1.0) so it failed to pass the "scamming" set.

https://streamable.com/nmp8dz

If you can't watch the video above, it shows a player chatting scams and normal messages, and the system filtering the scams but not similar messages.

Roblox scammer message Copy and paste

You can add new sets for any purpose or scam. This can be used for anything from bullying to scamming to swearing. In addition, there is a section where you can add your own code. The speaker's name and message along with the reason the message was filtered are available to use in this section.

Roblox scammer message Copy and paste

Model:

https://www.roblox.com/library/6048214553/ScamInterceptor

Source code:

Roblox scammer message Copy and paste
Pastebin

Pastebin.com is the number one paste tool since 2002. Pastebin is a website where you can store text online for a set period of time.

Uncopylocked game:

https://www.roblox.com/games/6051766029/Scam-Interceptor-Demo

GitHub Repository:

GitHub

Roblox scammer message Copy and paste

Scam Interceptor stops bots from spamming messages in Roblox. - GitHub - PseudoPersonRBLX/Scam-Interceptor: Scam Interceptor stops bots from spamming messages in Roblox.

To use this script simply add the script called “ScamInterceptorLoader” to the Workspace (should be the default for inserted scripts) or the ServerScriptService.

Roblox scammer message Copy and paste

Thanks for reading! I hope this helps! If you have any questions feel free to DM me or ask them below! If you don’t mind, it would be super cool if you all could post the sets you’ve created to help other developers keep their players safe!

PseudoPerson

57 Likes

This is actually a very helpful resource, from my time on Roblox, I observed that scams do as much damage to player experience than exploiting. This will be a very useful resource for newer developers such as myself!

4 Likes

The model isn’t for sale. I recommend fixing that, lol.

8 Likes

Yes. You should also make it auto update from Github so games could get a large list of scam adresses. Also try to combine your your Scam interceptor with CaptchaTheFlag - Protect your game from bots and Human Verification Captcha by dispeller.
Also try to add more detection lines. As well as give the user feedback that their message did not go trough.

1 Like

Can you create a GitHub so people can send PR’s?

Agree. This model is god tier-especially for those annoying bots on Roblox.

1 Like

Do you reset individual players’ points after an interval? For example, let’s say a person has been playing the game for 3 hrs and has been nonstop talking, he’s bound to fail by these sets.

Thanks for letting me know! I thought I pressed allow copying when I published it in studio, sorry about that!

Roblox scammer message Copy and paste
GUNSGOBRIBRl:

Do you reset individual players’ points after an interval?

It’s based on individual messages. Each message gets a score for each set and if any one set goes over a score of 1.0 it’s not sent to players.

1 Like

Roblox scammer message Copy and paste
sasial:

Can you create a GitHub so people can send PR’s?

I’ll add a repository today. It’s a pretty short and simple script so I didn’t think that having one would be helpful. Now thinking about it, different versions could be helpful.
Edit: I added the repository. Let me know if there are any problems.

Roblox scammer message Copy and paste
ALE111_boiPNG:

Yes. You should also make it auto update from Github so games could get a large list of scam adresses. Also try to combine your your Scam interceptor with CaptchaTheFlag - Protect your game from bots and Human Verification Captcha by dispeller .
Also try to add more detection lines. As well as give the user feedback that their message did not go trough.

I’ll look into this, thanks for the feedback!

Rely to Feedback:

I don’t think I’ll add either of these Captchas, as they are both easy to bypass and adding them to the module is only one or two lines of code. If anyone is wondering how to add them, DM me and I’ll be happy to write you a bulletin post about it

Roblox scammer message Copy and paste

Auto updating from GitHub would be cool, though one of my goals in creating this was to make something that was both customizable and easy for complete beginners. I do like the idea however so I might eventually add serialization for sets so that people can use StringValues to easily store and share sets with each other. I also might add some CMD line code to update the current sets from GitHub.

This is really useful! I was looking for something just like this I might give it a test.