Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local monitor = peripheral.find("monitor")
- if monitor == nil then
- print("Monitor not found")
- return
- end
- local frames = {
- " __",
- "o-''))_____ *Bzzt* *Bzzt*",
- " '--. /",
- " \ \__",
- " \___) *Bzzt* *Bzzt*",
- "",
- "",
- " __",
- "o-''))_____ *Bzzt* *Bzzt*",
- " '--. /",
- " \ \__",
- " \___) *Bzzt* *Bzzt*",
- "",
- ""
- }
- while true do
- for i = 1, #frames do
- monitor.clear()
- monitor.setCursorPos(1, 1)
- monitor.write(frames[i])
- monitor.setCursorPos(1, 2)
- monitor.write(frames[i+1])
- sleep(0.2)
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement