Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local chars = {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "a", "b", "c", "d", "e", "f"}
- local output = ""
- for i = 1, 6 do
- output = output .. chars[math.random(1, #chars)]
- end
- print(output)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement