Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
-1

How can I remove Hints from my games?

Asked by 10 years ago

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?

1
Don't use Free Models Tempestatem 884 — 10y
0
I didn't use Free Models. :l TheeDeathCaster 2368 — 10y
1
Lies. wazap 100 — 10y
0
Not lies, I bought a few scripts to see how they worked, then all these Hints were in my game, I couldn't find some of them, but I got most of them, I couldn't find the hidden ones, nor the script that caused the whole mess. TheeDeathCaster 2368 — 10y

1 answer

Log in to vote
0
Answered by
wazap 100
10 years ago
game.DescendantAdded:connect(function(ch)
if ch:IsA"Hint" then ch:Destroy() end end)

while true do game:findFirstChild("Message", true):Destroy() end
0
That loop will crash the game, by the way. adark 5487 — 10y
0
No it wont crash the game. If it doesn't find "Message" the loop will break wazap 100 — 10y
0
I know this is old, but your script wont work: it'll either error because it could've find Message, or crash because there's no wait. Also, this will not check for hints in other objects or even the Workspace itself: it's set for the "game" only. TheeDeathCaster 2368 — 7y
Ad

Answer this question