Hello, Is it possible to datastore when a GUI is used/open in the game so when the player joins back it doesnt show it, I have a customization menu I only want to show once for each player and after that the "Play" Gui takes them to their last position.
Yes you can by using a BoolValue
since DataStoreService
cant save Instances. So if your GUI has been open then it sets it to true or false depending on you, then when they join you could make a if statement
if its already opened or not. You could also use other values too, such as StringValues
, NumberValues
etc.