Advertisement
1m1m0
Apr 4th, 2025
30
0
Never
This is comment for paste Project Einstein: BHv5 Branch
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. local IDGenerator = {}
  2.  
  3. local charset = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
  4.  
  5. function IDGenerator.GenerateID(length)
  6.     local id = ""
  7.     for i = 1, length do
  8.         local randIndex = math.random(#charset)
  9.         id = id .. charset:sub(randIndex, randIndex)
  10.     end
  11.     return id
  12. end
  13.  
  14. return IDGenerator
  15.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement