Sukadia
|
  |
| Joined: 25 Jan 2013 |
| Total Posts: 500 |
|
|
| 11 Nov 2017 04:35 PM |
local Rep = game:GetService("ReplicatedStorage") local Spoke = Rep:WaitForChild("Spoke") local Tservice = game:GetService("TextService") local Fmsg
game.Players.PlayerAdded:connect(function(plr) plr.Chatted:connect(function(msg) local success, errorMessage = pcall(function() Fmsg = Tservice:FilterStringAsync(msg, plr.UserId) print(Fmsg) end) if not success then warn("Error filtering text:", msg, errorMessage) else Spoke:FireAllClients(Fmsg, plr) end end) end)
The print(Fmsg) prints the text "Instance". Any idea on how to make it print the filtered message instead? Thanks!
|
|
|
| Report Abuse |
|
Sukadia
|
  |
| Joined: 25 Jan 2013 |
| Total Posts: 500 |
|
| |