The password should be four digits.No Thanks
        string GetRandomCode()
        {
            var Output = Core.Random.Range(0, 9999).ToString();
            return Output;
        }

Otherwise players will not be able to lock.

It is four digits...
5c29621a63f54.png birthdates
It is four digits...

No, it might not be a four-digit number.....



You can change it to

var Output = Core.Random.Range(0, 9999).ToString("D4");
Locked automatically