Blink | An IDL compiler written in Luau for ROBLOX buffer networking. | 0.14.8

I keep encountering this error when trying to generate Client and Server scripts from the Roblox Plugin.

“Unable to assign property Source. Provided string length (204873) is greater than or equal to max length (200000)”

I think it’s related to the amount of events I have. Is there any work around or fix known for this?

Thanks.

Not much you can do, needs to be solved on my end.

Oh ok. Do have any plans to fix it soon? Not imposing, just wondering. Blink is the best network solution i’ve found so far. Thanks for making it!

Did you save before generating?

I thought i deleted that post of mine… sorry about that. No, I had not saved… took me a little bit to figure out. Thanks a lot for the interest.

Btw for any other visitor, I totally recommend blink!

1 Like

how would i send a string , string [“TEST”] = ‘test’ dictionary

map NAME = {[string]: string}
1 Like

I don’t see myself using it because of the overhead that comes with it. Here are the reasons:

1. Learning another language

Even if simple, having to know 2 languages already creates overhead for you and the people you hire.

2. Specifics of buffer replication

Most of the time I use buffer-based replication with UnreliableRemoteEvents where the batch size cannot exceed 900 bytes. Buffers offer a compact way of packing the information. For other purposes, I prefer a more readable solution like JSON tables.

Also, you need to consider that the server has native code generation. Which, as said, makes buffer read/write a lot faster, and to use that to full extend, you can’t abstract it behind function calls or oop. Which requires a way different approach.

Personal opinion

I really prefer to keep everything inside the studio. In the latest years, Roblox made lots of improvements on their code editor. Especially I am happy with the new typechecker, which compares to C++ types and user-defined documentation. Through these features were already present in external code editors. Having them directly embedded with the Roblox environment makes things a lot easier for the team creation.

1 Like

how to send vector3? i dont get it is vector analog to vector3?
Do I have to create 2 events for replication?
изображение

Yes. Can’t check right now but it should just be Vector3.