I tried doing it with this:
1 | game.StarterGui.ScreenGui.TextLabel.Visible = false |
Didn't work. I tried doing things more extremely.
1 | game.StarterGui.ScreenGui.TextLabel:Destroy() |
Then I resorted to this.
1 | game.StarterGui.ScreenGui:Destroy() |
And it still didn't work. Please send help.
If you're using a Local Script, "which you should be", then get the Local Player and then you can do the rest rather easy.
1 | --Local Script |
2 | local plr = game.Players.LocalPlayer |
3 | plr.PlayerGui.ScreenGui.TextLabel.Visible = false |
Good Luck!