Last active
March 11, 2026 06:46
-
-
Save DataKinds/c6f40b11fab83b9145b5dcb188a0acb1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| math.randomseed(os.time()) | |
| local charset = "!@#$%^&*(){}|:\"\\[];',./=-_+" | |
| function string.random(length) | |
| if length > 0 then | |
| local idx = math.random(1, #charset) | |
| return string.random(length - 1) .. charset:sub(idx, idx) | |
| else | |
| return "" | |
| end | |
| end | |
| while true do | |
| os.setComputerLabel(string.random(math.random(15,20))) | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment