Moonscript, an alternative to Lua for Roblox scripting - Why (and why not) you should use it

It won’t really hurt anything if you can get the hang of Moonscript, you could definitely use both.

Again, classes are useful in Moonscript but messy to read. The best part of moonscript IMO is the honest simplicity of writing typical statements and operations. (a+=5)

I also love the ‘line decorators’:
print(“A is greater than 10”) if A>10
a+=x for x = 1, 10

1 Like

I am getting the hang of moonscript now. Wasn’t that difficult to learn as it is just another “version” of Lua in my opinion

2 Likes