| Name | LocalPlayerChat |
| Arguments (in table) | string text |
| Return option | Return false to block the message |
Foo = function(args)
if args.text == "Block this message!" then
return false
else
return true
end
end
Events:Subscribe("LocalPlayerChat", Foo)