Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local mon = peripheral.find("monitor")
- mon.setTextScale(5)
- mon.setBackgroundColour(colors.black)
- mon.setTextColour(colors.white)
- pos = 3
- while true do
- mon.clear()
- mon.setCursorPos(pos,1)
- mon.write("+ Premiers Soins ")
- pos = pos - 1
- if pos == -16 then
- pos = 3
- end
- sleep(0.5)
- end
Advertisement
Add Comment
Please, Sign In to add comment