Hello! I’m kinda in a roadblock here because I tried to create a script that makes it so that a few seconds after i join the invisible frame becomes visible. However, it won’t work. I tried to find solutions to this by looking at dev forum posts and its really hard to find a working solution. Most of the things i’ve tried just didn’t work. Here is my script that I tried to do.
local testdia1 = game.StarterGui.testdia1 -- test dia is screen gui
wait(7)
print('Attempting, Please wait!')
testdia1.TextLabel.Visible = true
testdia1.TextLabel.Text = 'So you came? Waiting for all players.'
if testdia1.TextLabel.Visible == true
then
print('Script Running')
else
print('Script broken')
end
I tried putting it in other places, including starterplayerscripts, startercharacterscripts, startergui(screengui), workspace, replicatedfirst, replicated storage, and workspace. It’s currently a local script. If there’s anything im doing wrong, please tell me.
My second attempt was the same thing, except through a playeradded function. However, it did no use.
When I tried Gui.Enabled = true, it said Gui.Enabled = true, however, it still didn’t work. By the way, when I checked out my properties, it said that frame and textlabel was visible.
Also I recommend that you use local gui = game.Players.LocalPlayer.PlayerGui.testdial as you are referencing the one in StarterGui compared to the one on screen.