Starter:GuiVisible wait(4)TextVisible
StarterGui is a service. If you want to make just the text go away, then specify in your code. you should try something like this:
local Text = game.StarterGui.ScreenGui:WaitForChild("TextLabel") Text.Visible = true wait(4) Text.Visible = false
Hope this helps!