How would I make a Play button that would send NEW players to a character customization place, but returning players to the main game?
You can try checking if they have a Welcome badge or not
store a bool value of whether a player is a returning player?
You should actually store some data about that customization they made, and if that data is empty, then you send them to the customization place, else you send them to main game.
This should also prevent stuff like, player joining and leaving right after without finishing customization, then joining again and being sent to main game.
Store data or look for already existing parameters on the character. For example, you could have all new players with a grey skin color, which would differentiate them from regular players, or you could just use a boolean value.
How would I go about doing that?
You’d want to look into data stores. Data stores will work across many places aslong as they’re linked to one game.
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.