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

If i dont use text filtering in my solo game will my game be under reveiw?

Asked by 5 years ago

Read title quick question

0
No. ROBLOX has default filtering in the real game. Play Solo doesn't filter. User#19524 175 — 5y
0
That's not what he meant at least from what I got. He's asking if a single player game (live) would go under review. Sadly, I don't know. ICosmicReaver 32 — 5y

2 answers

Log in to vote
0
Answered by 5 years ago

In short, yes. If strings are not filtered, your game will be put under review. Please note that confusing filtering enabled being off making your game 13+ is nothing to do with filtering strings.

Here is an example of filtering a string.

game.Players.PlayerAdded:Connect(function(plr)
    plr.Chatted:Connect(function(msg)
        local filteredstring = game:GetService("Chat"):FilterStringForBroadcast(msg, plr)
        print(filteredstring)
    end)
end)

This must be used in a serverscript.

Ad
Log in to vote
-2
Answered by 5 years ago

No, This question is not even about LUA.

0
This should be a comment. Also, what is LUA? User#19524 175 — 5y
0
Roblox's coding language. MachoPiggies 526 — 5y

Answer this question