Advertisement
DefeatedPurpose

Untitled

Jul 31st, 2018
455
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.09 KB | None | 0 0
  1. local special = {"A", "a", "B", "C", "c", "D", "d", "E", "e", "F", "f", "G", "g", "H", "h", "I", "i", "J", "j", "K", "k", "L", "l", "M", "m", "N", "n", "O", "o", "P", "p", "Q", "q", "R", "s", "T", "t", "U", "u", "V", "v", "W", "w", "X", "x", "Y", "y", "Z", "z", "1", "2", "3", "4", "5", "6", "7", "8", "9", "0", "-", "/", ":", ";", "(", ")", "$", "&", "@", ".", ",", "?", "!", "'", "[", "]", "{", "}", "#", "%", "^", "*", "+", "=", "_", "/", "|", "~", "<", ">", "£", "¥", "•"}
  2. local normal = {"A", "a", "B", "C", "c", "D", "d", "E", "e", "F", "f", "G", "g", "H", "h", "I", "i", "J", "j", "K", "k", "L", "l", "M", "m", "N", "n", "O", "o", "P", "p", "Q", "q", "R", "s", "T", "t", "U", "u", "V", "v", "W", "w", "X", "x", "Y", "y", "Z", "z", "1", "2", "3", "4", "5", "6", "7", "8", "9", "0"}
  3. local specemail  = {}
  4. local normemail = {}
  5. local specpw = {}
  6. local normpw = {}
  7. local specmail = nil
  8. local normmail = nil
  9. local specpass = nil
  10. local normpass = nil
  11. local email = nil
  12. for i=1, 15 do
  13.     table.insert(specemail, special[math.random(1, #special)])
  14.     table.insert(normemail, normal[math.random(1, #normal)])
  15. end
  16. for i=1, 25 do
  17.     table.insert(specpw, special[math.random(1, #special)])
  18.     table.insert(normpw, normal[math.random(1, #normal)])
  19. end
  20. emailizer = math.random(1, 5)
  21. if emailizer == 1 then
  22.     email = "@gmail.com"
  23.     elseif emailizer == 2 then
  24.     email = "@yahoo.com"
  25.     elseif emailizer == 3 then
  26.     email = "@hotmail.com"
  27.     elseif emailizer == 4 then
  28.     email = "@outlook.com"
  29.     elseif emailizer == 5 then
  30.     email = "@icloud.com"
  31.     end
  32. minage = 20
  33. maxage = 35
  34. possiblenames = {"John", "Smith", "Paul", "Jacob", "Jackson", "Reece", "Kimberly", "Puala", "Chuck", "Ness"}
  35. possiblelastnames = {"Conagher", "Johnson", "Williams", "Brown", "Miller", "Moore", "White", "Norris"}
  36. math.randomseed(os.time())
  37. months = {"Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"}
  38. age = math.random(minage, maxage)
  39. yearob = 2018 - age
  40. dayob = math.random(1,27)
  41. monthofb = months[math.random(1, #months)]
  42. fname = possiblenames[math.random(1, #possiblenames)]
  43. lname = possiblelastnames[math.random(1, #possiblelastnames)]
  44. gender = math.random(1,2)
  45. if gender == 1 then
  46.     gender = "Male"
  47. elseif gender == 2 then
  48.     gender = "Female"
  49. end
  50. print("Generated Email with special characters.")
  51. specmail = table.concat(specemail)
  52. normmail = table.concat(normemail)
  53. print(""..specmail..""..email)
  54. print("Without Special Characters.")
  55. print(""..normmail..""..email)
  56. print("Generated Password with special characters.")
  57. specpass = table.concat(specpw)
  58. normpass = table.concat(normpw)
  59. print(specpass)
  60. print("Without special charaters.")
  61. print(normpass)
  62. print("-----[GENERATED PROFILE]-----")
  63. print("Email : "..normmail..""..email)
  64. print("Password : "..normpass)
  65. print("Name : "..fname.." "..lname)
  66. print("Age : "..age)
  67. print("DOB : "..monthofb.." "..dayob..", "..yearob)
  68. print("Sex : "..gender)
  69. print("-----[GENERATED PROFILE]-----")
  70. print("Made by Certified Weeb#6917 on discord and Defeated Purpose on youtube!")
  71. print("Have fun using this to generate bots!!")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement