I have a script that detects when a player chats something
local players = game:GetService("Players")
players.PlayerAdded:Connect(function(plr)
plr.Chatted:Connect(function(msg)
if msg == "TEST" then
--Stuff
end
end)
end)
Is there any way for me to change what the player says or deleted it? I have seen Mad City do this with their ???
badge.