All future updates made to the Typewriter Module will be posted here.
It is recommended to set this topic to “Watching” if you are using this module in your game so you are notified of any updates.
For discussion, suggestions, or bug reports, please post them at the main thread .
2 Likes
Previous Update
Update
Updated the PreciseWait module to the latest version. If any issues occur related to yielding, edit the main module script and change all calls to PreciseWait()
to normal wait()
and let me know.
1 Like
Update
This module now no longer uses the PreciseWait module and instead uses my custom module .
Report any issues.
Update
Bug fixes in the new wait module. If there are still issues, please report.
Update
A Github repository has been created for this module with the documentation to prevent the main thread from getting too cluttered.
Update:
Roblox has released an in-built Typewriter. Use that instead of this. This module is now discontinued.
We have wanted to support developers with a better way to add a “typewriter” style effect to your text. The most common method used today, is to update the string by adding 1 additional character repeatedly, which can cause some issues. Besides enabling a cool effect, there are additional benefits with using the new solution:
More performant and intuitive method to add a typewriter effect to an entire string
Remove visual issues with text wrapping, as the text string no longer changes in siz…