Advertisement
Thomas9666

[LUA] .menu

Feb 26th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. tom.gui()
  2. tom.welcome()
  3.  
  4. by = 5
  5. button.makeButton(by, "TERMINAL")
  6. by = by +2
  7. button.makeButton(by, "PROGRAMS")
  8. by = by +2
  9. button.makeButton(by, "SHUTDOWN")
  10.  
  11. local option = button.selectButton(5,3)
  12.  
  13. if option == 1 then
  14. shell.run("/os/term")
  15. elseif option == 2 then
  16. shell.run("/os/progms")
  17. elseif option == 3 then
  18. shell.run("/os/shut")
  19. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement