Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
6

[SOLVED] String filtering doesn't work, all words passed the filter? [closed]

Asked by
Rheines 661 Moderation Voter
6 years ago
Edited 6 years ago

I'm trying to create a party system, and users are able to name their own party for other players to see. I would need to filter the name string if I don't want actions to be taken against me. I tried filtering the string, but it seems if I print the name of the party, it is not filtered. Is there anything wrong?

01--Filter's the party name.
02function module:filter(name, from)
03    local filtered
04    local success, errormessage = pcall(function()
05        filtered = TS:FilterStringAsync(name, from.UserId)
06    end)
07    if success then
08        filtered = filtered:GetNonChatStringForBroadcastAsync()
09        return filtered
10    else
11        warn(from.Name.."'s party name does not pass ROBLOX's filter.")
12        WarningRemote:FireClient(from, "Warning", "PARTY NAME DEFAULTED")
13        --Use default party name if filter failed.
14        return "LET'S PLAY"
15    end
View all 46 lines...

This is how I check the party's name and number of parties. All parties are put in a dictionary with a unique identifier.

01while wait(2) do
02    local length = {}
03    for _, party in pairs(parties) do
04        if party ~= nil then
05            print(party.name)
06            table.insert(length, party)
07        end
08    end
09    print(#length.." parties created.")
10end
0
Are you testing this in-game or in studio? I think filtering doesn't work if you're testing in studio. User#20279 0 — 6y
1
Both. Rheines 661 — 6y
0
What words are you putting in that you expect to be filtered? Also, try putting numbers in as the broadcast function usually tags those. User#20279 0 — 6y
0
Numbers and the usual swear words. Rheines 661 — 6y
View all comments (3 more)
0
It seems to work now but I did not know what happened before. Rheines 661 — 6y
0
I did read something about FilterStringASync possibly breaking if results are "cached and reused". Not sure if it relates to your problem though : https://developer.roblox.com/api-reference/function/TextService/FilterStringAsync User#20279 0 — 6y
0
if your trying it in studio, it has no filter. the8bitdude11 358 — 6y

Locked by JesseSong

This question has been locked to preserve its current state and prevent spam and unwanted comments and answers.

Why was this question closed?