For some reason, Roblox doesnโt allow you to generate a random string without using a script. To save you some time, I have created one for you:
Example:
local module = require(script.RandomStringGen)
local key = module.Stringify(20, 3)
print(key)
Explanation:
This module consists of two parts:
-
The first integer value specifies the desired length of the string (in this case, it is set to 20).
-
The second integer value determines the composition of the string. Here are the available options:
1 = Uppercase letters only
2 = Uppercase and lowercase letters only
3 = Uppercase letters, lowercase letters, and numbers
Thatโs all! Please let me know if you encounter any issues or have any suggestions.
Link: RandomStringGen - Roblox
This is my first time making a post like this so please leave constructive criticism