How to make a script run whenever the player says for example: "on".
game.Players.PlayerAdded:connect(function(plr) plr.Chatted:connect(function(text) if text == "on" then print("its ont") end end) end)