I made a script that prevents scammers from scamming other players, I'm going to add more filter stuff in the table soon.
It's saying that the 2nd argument is missing on the last line aka. :FilterStringAsync()
01 | local txtservice = game:GetService( "TextService" ) |
02 |
03 | local filterWhiteboard = { "robux.gg" , "free robux" } |
04 |
05 | game.Players.PlayerAdded:Connect( function (player) |
06 | player.Chatted:Connect( function (msg) |
07 | for _, v in ipairs (filterWhiteboard) do |
08 | if string.lower(msg) = = v then |
09 |
10 | txtservice:FilterStringAsync(msg) |
11 | end |
12 | end |
13 | end ) |
14 | end ) |
FilterStringAsync has 3 parameters, but you only added 1.
1) StringToFilter
1 | local textService = game:GetService( "TextService" ) |
2 |
3 | local message = "Hello World!" -- the string to filter |
4 |
5 | textService:FilterStringAsync(message) |
2) FromUserId
1 | local textService = game:GetService( "TextService" ) |
2 |
3 | game.Players.PlayerAdded:Connect( function (player) |
4 | player.Chatted:Connect( function (message) |
5 | textService:FilterStringAsync(message,player.UserId) |
6 | end ) |
7 | end ) |
3) TextContext
(optional)
1 | local textService = game:GetService( "TextService" ) |
2 |
3 | game.Players.PlayerAdded:Connect( function (player) |
4 | player.Chatted:Connect( function (message) |
5 | textService:FilterStringAsync(message,player.UserId,Enum.TextFilterContext.PublicChat) |
6 | end ) |
7 | end ) |
Edited code:
01 | local txtservice = game:GetService( "TextService" ) |
02 |
03 | local filterWhiteboard = { "robux.gg" , "free robux" } |
04 |
05 | game.Players.PlayerAdded:Connect( function (player) |
06 | player.Chatted:Connect( function (msg) |
07 | for _, v in ipairs (filterWhiteboard) do |
08 | if string.lower(msg) = = v then |
09 |
10 | txtservice:FilterStringAsync(msg, player.UserId) |
11 | end |
12 | end |
13 | end ) |
14 | end ) |
Also, your code is detecting if their chat is only robux.gg or free Robux, so use string.find.
01 | local txtservice = game:GetService( "TextService" ) |
02 |
03 | local filterWhiteboard = { "robux.gg" , "free robux" } |
04 |
05 | game.Players.PlayerAdded:Connect( function (player) |
06 | player.Chatted:Connect( function (msg) |
07 | for _, v in ipairs (filterWhiteboard) do |
08 | if string.find((string.lower(msg), v) then |
09 | txtservice:FilterStringAsync(msg, player.UserId) |
10 | end |
11 | end |
12 | end ) |
13 | end ) |
FilterStringAsync has 3 parameters: stringToFilter: the strings you want to filter.
playerFrom: the player that sent the text.
playerTo: (This one I got from devforum wiki) The intended recipient of the provided text; use the author if the text is persistent.
So basically, you need to enter the player in the playerFrom argument, just like so:
01 | -- filterstringasync is deprecated in local scripts, so we doing it in a server script |
02 | local txtservice = game:GetService( "TextService" ) |
03 |
04 | local filterWhiteboard = { "robux.gg" , "free robux" } |
05 |
06 | game.Players.PlayerAdded:Connect( function (player) |
07 | player.Chatted:Connect( function (msg) |
08 | for _, v in ipairs (filterWhiteboard) do |
09 | if string.lower(msg) = = v then |
10 |
11 | txtservice:FilterStringAsync(msg,player) -- added the player argument from PlayerAdded |
12 | end |
13 | end |
14 | end ) |
15 | end ) |
I hope this answered your question!