Advertisement
SPYYTTT

Untitled

Dec 13th, 2019
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. local upperCase = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
  2. local lowerCase = "abcdefghijklmnopqrstuvwxyz"
  3. local numbers = "0123456789"
  4. local symbols = ""
  5.  
  6. local characterSet = upperCase .. lowerCase .. numbers .. symbols
  7.  
  8. local keyLength = 7
  9. local output = ""
  10.  
  11. for i = 1, keyLength do
  12. local rand = math.random(#characterSet)
  13. output = output .. string.sub(characterSet, rand, rand)
  14. end
  15. local upperCase = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
  16. local lowerCase = "abcdefghijklmnopqrstuvwxyz"
  17. local numbers = "0123456789"
  18. local symbols = ""
  19.  
  20. local characterSet = upperCase .. lowerCase .. numbers .. symbols
  21.  
  22. local keyLength = 7
  23. local output1 = ""
  24.  
  25. for i = 1, keyLength do
  26. local rand = math.random(#characterSet)
  27. output1 = output1 .. string.sub(characterSet, rand, rand)
  28. end
  29.  
  30. game.StarterGui:SetCore('SendNotification', {Duration = 10; Title=output; Text=output1})
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement