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

I BROKE THE ROBLOX CHAT FILTER HOW DO I FIX IT?

Asked by
Galicate 106
5 years ago

Ok so, i made my own custom overhead bubble chat gui...and You can curse with it...How can I fix it?

game.Players.PlayerAdded:connect(function(player)
    local character = player.Character or player.CharacterAdded:wait()
    game:GetService("ServerStorage").ChatGui:Clone().Parent = character.Head
    player.Chatted:connect(function(msg)
        player.Character.Head.ChatGui.Enabled = true
        player.Character.Head.ChatGui.Frame.TextLabel.Text = msg
        wait(5)
        player.Character.Head.ChatGui.Enabled = false
    end)
end)
0
You filter it LOL greatneil80 2647 — 5y
0
im asking how... Galicate 106 — 5y
0
use filterasync INOOBE_YT 387 — 5y
0
ok Galicate 106 — 5y
View all comments (2 more)
0
The RBXScriptSignal:connect() and RBXScriptSignal:wait() methods are deprecated, use RBXScriptSignal:Connect() and RBXScriptSignal:Wait() with uppercase first letters User#19524 175 — 5y
0
Should be able to call the filtering system from roblox, also, make sure not to post the game, you will be warned and or banned stonez12345678910 4 — 5y

Answer this question