Advertisement
JustinzocktYT

Update

Jan 29th, 2023
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. local updateDelay = 10 -- Update delay in seconds
  2. local updateText = {"Checking for updates...", "Downloading updates...", "Installing updates...", "Updates complete."}
  3.  
  4. for i = 1, updateDelay do
  5. for j = 1, #updateText do
  6. term.clear()
  7. term.setCursorPos(1, 1)
  8. term.write(updateText[j])
  9. os.sleep(1)
  10. end
  11. end
  12.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement