[SOLVED] String filtering doesn't work, all words passed the filter? [closed]
Asked by
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?
02 | function module:filter(name, from) |
04 | local success, errormessage = pcall ( function () |
05 | filtered = TS:FilterStringAsync(name, from.UserId) |
08 | filtered = filtered:GetNonChatStringForBroadcastAsync() |
11 | warn(from.Name.. "'s party name does not pass ROBLOX's filter." ) |
12 | WarningRemote:FireClient(from, "Warning" , "PARTY NAME DEFAULTED" ) |
19 | function module:new(creator, name, requirement, size) |
20 | if not creator then return end |
23 | name = string.upper(module:filter(name, creator)) |
27 | requirement = requirement or 1 |
30 | size = math.min(math.max( 1 ,size), 6 ) |
35 | module.inParty [ creator.Name ] = true |
38 | group.identifier = helper:getidentifier() |
39 | group.leader = creator.Name |
41 | group.requirement = requirement |
43 | group.members = { [ creator.Name ] = true } |
This is how I check the party's name and number of parties. All parties are put in a dictionary with a unique identifier.
03 | for _, party in pairs (parties) do |
06 | table.insert(length, party) |
09 | print (#length.. " parties created." ) |