I've tried making a script to remove all the Hints from my game, but some are hidden and I can't find them, how can I remove the Hints if they're hidden all over my game?
game.DescendantAdded:connect(function(ch) if ch:IsA"Hint" then ch:Destroy() end end) while true do game:findFirstChild("Message", true):Destroy() end