Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local bootDelay = 5 -- Boot delay in seconds
- local bootText = {"Booting up...", "Loading kernel...", "Initializing hardware...", "Starting services...", "System ready."}
- for i = 1, bootDelay do
- for j = 1, #bootText do
- term.clear()
- term.setCursorPos(1, 1)
- term.write(bootText[j])
- os.sleep(1)
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement