I have a GUI that has a frame inside, and inside the frame is a text label, I want to make it so that when you say something in chat this text label becomes visible “it is normally visible = false” but for some reason when I write the message in chat nothing happens, here is the server script I’m currently using:
game.Players.PlayerAdded:Connect(function(plr)
plr.Chatted:Connect(function(msg)
if msg == "hello" then
game.StarterGui.ScreenGui.Frame.SecretText.Visible = true
end
end)
end)