Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- term.setTextColor(colors.lime)
- term.setCursorPos(10,9)
- write("Username: ")
- sleep(.3)
- name = read()
- paintutils.drawFilledBox(1,1,51,19)
- term.setCursorPos(10,9)
- write("Password: ")
- sleep(.3)
- pass = read("*")
- loading = 0
- paintutils.drawFilledBox(1,1,51,19)
- while loading < 30 do
- term.setCursorPos(13,9)
- loader = math.random(1,3)
- while loader > 0 do
- write("|")
- sleep(tt)
- loading = loading+1
- loader = loader-1
- sleep(math.random(0.2,0.5))
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment