Advertisement
JustinzocktYT

Boot

Jan 29th, 2023 (edited)
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. local bootDelay = 5 -- Boot delay in seconds
  2. local bootText = {"Booting up...", "Loading kernel...", "Initializing hardware...", "Starting services...", "System ready."}
  3.  
  4. for i = 1, bootDelay do
  5. for j = 1, #bootText do
  6. term.clear()
  7. term.setCursorPos(1, 1)
  8. term.write(bootText[j])
  9. os.sleep(1)
  10. end
  11. end
  12.  
  13.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement