Normal gui open script won't work

So this script actually works but the problem is the frame won’t be visible even though, when I check it’s properties, it shows it is visible. Nothing shows in the output as well.


Dont use game.StarterGui , when you are in game, it “becomes” PlayerGui.
Instead, you could clone that UI from that script, and put it into the player’s PlayerGui.

1 Like

So the problem is that the code did work. You just told it to do the wrong thing

At the start of the game everything in game.StarterGui gets copied to game.Players[playerName].PlayerGui.

So you aren’t editing their gui. You’re editing the gui that would be copied into their player.

1 Like

Thank you it worked now : ) (characters)