Ideas on how to make a dialog script like this

I was wondering how I could make the dialog look like this

I assume I have to use the Roblox dialog system as a base but I’m unsure how to change the font or add the typewriter effect.

2 Likes

For the typewriter effect, you can create a function that splits a given string after each character, and use a for loop to add a character to the label each iteration. I suggest using newChat() and addChat() functions, the difference is newChat() clears the label whereas addChat() does not. This way you can use waits in between clauses for more realistic effects. As far as fonts, Roblox has a variety of different built-in fonts within the properties of the GUIs.

2 Likes

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.