SebTDZ

Token

Apr 3rd, 2019
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.48 KB | None | 0 0
  1. --LIST
  2. local Chars = {"A", "a", "S", "s", "D", "d", "F", "f", "G", "g", "H", "h"}
  3. LM=12
  4. --FUNC
  5. function add()
  6.     if math.random(0, 1) == 1 then
  7.         return Chars[math.random(1, LM)]
  8.     else
  9.         return math.random(0, 9)
  10.     end
  11. end
  12. --MAKE CODE
  13. Code=add()
  14. Code=Code .. add()
  15. Code=Code .. add()
  16. Code=Code .. add()
  17. Code=Code .. add()
  18. Code=Code .. add()
  19. Code=Code .. add()
  20. Code=Code .. add()
  21. Code=Code .. add()
  22. Code=Code .. add()
  23. --OUTPUT
  24. print("Token: " .. Code)
Advertisement
Add Comment
Please, Sign In to add comment