My chat won't work because it needs a chat filter, but everything I try it fails
1 | local msg = game.Chat:FilterStringForBroadcast(message) |
This returns nil There is a secret way to filter? EDIT:
01 | --This is the script what works |
02 | local suc, errormsg = pcall ( function () |
03 | int 2. Name = plr.Name.. " is now Joined!!!" |
04 | end ) |
05 | if suc then |
06 | print ( "Success!" ) |
07 | else |
08 | warn( "Fail, " .. errormsg) |
09 | end |
10 | plr.Chatted:Connect( function (msg) |
11 | local int = script.Parent.Chats |
12 | local int 2 = Instance.new( "StringValue" , int) |
13 | local msg 2 = string.upper(msg:sub( 0 , 1 ))..msg:sub( 2 ) |
14 | local biztositek = string.len(msg 2 ) |
15 | local biztositek 2 = "." |
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)