Gui Does not show when visible though script



^^ There is the issue we used a script to try to make it visible but It does not error or anything.

Here is the script:

wait(10)
game.StarterGui.FireZon1.FireZone1.Visible = true

You should be referencing the player’s gui in PlayerGui, not StarterGui.

Use a local script and replace your code with this

wait(10)
script.Parent.FireZone1.Visible = true
2 Likes