Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local pos = 14
- mon=peripheral.wrap("top")
- mon.clear()
- color=1
- mon.setBackgroundColor(color)
- mon.setTextColor(colors.black)
- mon.setTextScale(5)
- while true do
- if pos==-16 then
- pos=14
- end
- mon.clear()
- mon.setTextColor(color+500)
- mon.setCursorPos(pos,1)
- mon.write("THE SEXY SHOP")
- pos=pos-1
- os.sleep(0.05)
- if (color<16000) then
- color=color+color
- else
- color=1
- end
- mon.setBackgroundColor(color)
- end
Advertisement
Add Comment
Please, Sign In to add comment