(*2 Questions*) How do I make a one time GUI? / How do I make special text?

Example, a starter tutorial. After the player views it, it will not come back to them again. How can I do this?

For the next question, how do I make special texts?
Like: Welcome to my game (Playername), How are you?
POV: You are the 45th person to play the game
So, Welcome to my game! (Playername), you are the 45th person to play!
Final one, I want to record coins in a custom GUI:
Coins: 100
(I know how to do the value but I dont know how to put the Coins: in front.)

Thank you so much!

You have to save a BoolValue in datastore.

You can set the Text to this:

"Welcome to my game, ".. game.Players.LocalPlayer.Name .."!"

That’s not so easy to do, I suggest you to leave that out.

You can set the Text to this:

"Coins: ".. player.Coins.Value --adjust this to where your coins value is
2 Likes

Thank you. Can you explain more on saving the bool value?

I recommend you to watch a tutorial about datastore if you are not familiar with it.
Basically you save a value that contains true if the player already did the tutorial or false if they didn’t. When a player joins and his value is false, the tutorial will be played and after he completed it, you change the value to true.

1 Like

Do you have some specific links you can recommend me to?

AlvinBlox makes great tutorials on youtube.

1 Like