What do you want to achieve? Keep it simple and clear!
I am making a Tutorial GUI for players there are 5 frames and everything works I need help on how I would keep it from popping up for players who already read the Tutorial.
What is the issue? Include screenshots / videos if possible!
Here is the code for when the player clicks “close” the close button is on the 5th frame.
Depending on whether you wish to disable the tutorial popup for players that have played the game in that server or to disable it for players that have played the game in general, you have 2 options:
Like @mc7oof suggested, store a boolean value using Datastore service and once they have read the tutorial, set this value to true and have the game check to disable the tutorial only if the value is true. This will make the tutorial popup only for brand new players that have never played the game.
The other option is to only give the players the tutorial GUI using Players.PlayerAdded. This will make the tutorial popup for everyone that joins the server, but not when someone respawns.