How do you remove a player's ability to chat via the text box inside of the chat bar? [ANSWERED]
Asked by
4 years ago Edited 4 years ago
So, I'm making an admin script, and I'm trying to mute someone. I can't seem to do it, but here's a command for example:
1 | Commands.speed = function (Sender,Arguments) |
2 | local Argument = PartialMatch(Arguments [ 1 ] ); |
3 | if not Argument then return false end ; |
4 | Argument.Character.Humanoid.WalkSpeed = Arguments [ 2 ] |
How could I mute someone without destroying the script, because I still need it for the unmute command?