-- Need help using chat service local Hint = "/Hint" game.Players.PlayerAdded:Connect(function(plr) plr.PlayerChatted:Connect(function(msg) if msg == Hint then plr.PlayerGui.Hints.Enabled = true
You put "PlayerChatted" instead of "Chatted"
local Hint = "/Hint" game.Players.PlayerAdded:Connect(function(plr) plr.Chatted:Connect(function(msg) if msg == Hint then print("Player typed ".. Hint) plr.PlayerGui.Hints.Enabled = true else print("Player didn't type " .. Hint) end end) end)