Hey everyone… So I want a Gui to show up after the player clicks “Play” on the play screen. It doesn’t work for some reason. I put some prints to debug, and the prints are showing up so its not a script issue. When the player clicks play, the play screen goes away, but the other stuff I want showing doesn’t! Am I doing something wrong? Thank you.
My script:
game.StarterGui.PlayScreenGui.Frame.PlayBtn.Title.Visible = true
script.Parent.MouseButton1Click:Connect(function(click)
task.wait(0.3)
script.Parent.Parent.Transparency = 1
script.Parent.Visible = false
task.wait(0.2)
game.StarterGui.ScreenGui.Warn.TextLabel.Visible = true
print("Warning vis")
task.wait(6)
game.StarterGui.ScreenGui.Warn.TextLabel.TextButton.Visible = true
print("ButtonVis")
end)
Thank you!