I designed a system to allow players to generate “codes” in a Roblox Studio plugin to import custom content into my game. These “codes” are large JSON formatted strings containing Part data. [[Size,CFrame,Color,Etc]]
The problem with this, is a TextBox cannot contain more than 16,385 characters. (This isn’t mentioned anywhere on the Wiki. That’s why I added the client-bugs tag) There is also no way to access the clipboard to extract the string in question. There is no way to input more than 16,385 characters.
Normally this isn’t a problem, but in this rare case it becomes a very big issue. (codes are generally 300K+)
I’ve looked into compression algorithms to try to fit as much as I can but a compression ratio of that magnitude is outright impossible.
I have been unable to find any workaround to this issue. If there is anything I should be aware of, please let me know in the replies!
Thanks for letting me in the DevForum, finally