Do comments make my script slower?

I mean Luau has to take every single comment out one by one before running my code Sooo

It will probably take microseconds but what if I need those microseconds man? Come on now

Nope, It doesn’t… Comments are stripped out before the script gets executed… When your code is parsed and compiled, the interpreter or JIT compiler completely ignores comments, they’re not included in the bytecode that actually runs in the Roblox engine, or basically they don’t make it into the runtime

2 Likes