Hello. I have had this issue for a couple of hours and I'm getting pretty frustrated... Whenever I try to make a frame visible or a ScreenGui enabled, it doesn't work. Even when I turn them on in play solo, it doesn't work... Here is the script:
wait(5) script.Parent.Enabled = true
I'm using a localscript inside a ScreenGui.
I think you should use visible instead, visible usually works better than enabled, and they can work with localscripts and normal script. so do something such as
wait(5)
script.Parent.Visible = true