Advertisement
Guest User

welcome.lua

a guest
Apr 4th, 2020
242
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.55 KB | None | 0 0
  1. m = peripheral.wrap("right")
  2. m.clear()
  3. m.setTextScale(1)
  4. m.setCursorPos(6,2)
  5. m.setTextColour(colors.purple)
  6. m.write("welcome  toxicbunch")
  7. sleep(1)
  8. m.setCursorPos(8,4)
  9. m.setTextColour(colors.white)
  10. m.write("to Stoneblock 1")
  11. sleep(1)
  12. m.setCursorPos(4,6)
  13. m.write("to start your adventure")
  14. sleep(1)
  15. m.setCursorPos(13,8)
  16. m.write("use")
  17. sleep(1)
  18. m.setCursorPos(9,10)
  19. m.setTextColour(colors.red)
  20. m.write("/island home")
  21. sleep(1)
  22. m.setCursorPos(10,12)
  23. m.setTextColor(colors.white)
  24. m.write("GOOD LUCK !")
  25. sleep(1)
  26. m.clear()
  27. os.reboot()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement