Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local updateDelay = 10 -- Update delay in seconds
- local updateText = {"Checking for updates...", "Downloading updates...", "Installing updates...", "Updates complete."}
- for i = 1, updateDelay do
- for j = 1, #updateText do
- term.clear()
- term.setCursorPos(1, 1)
- term.write(updateText[j])
- os.sleep(1)
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement