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

How to make your text go invisible when somebody reads it?

Asked by 4 years ago
Starter:GuiVisible
wait(4)TextVisible
0
You cant know when somebody reads a text... Unless you got a 20k line Microphone script where people can talk iuclds 720 — 4y

1 answer

Log in to vote
0
Answered by 4 years ago

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!

Ad

Answer this question