textutils.slowWrite
From ComputerCraft Wiki
Function textutils.slowWrite | |
Writes string text at current cursor position, character-by-character. Number argument rate is optional and is defaulted to 20. The higher the value of rate, the faster text is written (passing a value of 1 writes one character per second). | |
Syntax | textutils.slowWrite(string text, number rate) |
Returns | nil |
Part of | ComputerCraft |
API | textutils |
Examples
Example | |
Writes "Hello World!" to the screen, 15 characters per second. | |
Code |
textutils.slowWrite("Hello, World!", 15) |