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

It is possible to filter a string?

Asked by
gloveshun 119
5 years ago
Edited 5 years ago

My chat won't work because it needs a chat filter, but everything I try it fails

1local msg = game.Chat:FilterStringForBroadcast(message)

This returns nil There is a secret way to filter? EDIT:

01--This is the script what works
02local suc, errormsg = pcall(function()
03int2.Name = plr.Name.." is now Joined!!!"
04end)
05if suc then
06    print("Success!")
07else
08    warn("Fail, " .. errormsg)
09end
10plr.Chatted:Connect(function(msg)
11local int = script.Parent.Chats
12local int2 = Instance.new("StringValue", int)
13local msg2 = string.upper(msg:sub(0, 1))..msg:sub(2)
14local biztositek = string.len(msg2)
15local biztositek2 = "."
View all 42 lines...
0
Please note that filtering does not work inside roblox studio. RubenKan 3615 — 5y
0
But not works in global server gloveshun 119 — 5y

1 answer

Log in to vote
1
Answered by 5 years ago
Edited 5 years ago

It returns nil because there is nothing in (message)

you need to use Player.Chatted event then connect it to a function ,the parameter would be what the player is saying ,use the parameter from player.chatted and put it in ,Chat:FilterStringForBroadcast(chat parameter)

0
ok gloveshun 119 — 5y
0
But you looks me a noob gloveshun 119 — 5y
Ad

Answer this question