As a "mod", it's barely providing any functionality at all. Lua has a built in function called loadstring that does this exact thing. A quick peek under the hood, and that is, in fact, all you're doing. You're also caching the calls, which is helpful for performance, but overall, loadstring is heavy, and if you're using it in your projects, you're probably doing something wrong in the first place. Who is this for?
Barely A Line
As a "mod", it's barely providing any functionality at all. Lua has a built in function called
loadstring
that does this exact thing. A quick peek under the hood, and that is, in fact, all you're doing. You're also caching the calls, which is helpful for performance, but overall, loadstring is heavy, and if you're using it in your projects, you're probably doing something wrong in the first place. Who is this for?