Advertisement
This is comment for paste
Project Einstein: BHv5 Branch
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local IDGenerator = {}
- local charset = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
- function IDGenerator.GenerateID(length)
- local id = ""
- for i = 1, length do
- local randIndex = math.random(#charset)
- id = id .. charset:sub(randIndex, randIndex)
- end
- return id
- end
- return IDGenerator
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement