Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Simple-Screensaver by Southp0le
- -----------
- --Options--
- -----------
- m = peripheral.wrap("left")
- m.setTextScale(1.5)
- x,y=m.getSize()
- local time = os.time()
- ---------
- --Cycle--
- ---------
- while true do
- randX = math.random(1,x-3)
- randY = math.random(1,y)
- m.setCursorPos(randX , randY)
- m.write(textutils.formatTime(time,true))
- sleep(2)
- m.clear()
- end
Advertisement
Add Comment
Please, Sign In to add comment