I found a not realy bad bug but its not great...
so when you make a lua project it does this:
init = function()
end
update = function()
end
draw = function()
end
but it should be
function init()
end
function update()
end
function draw()
end
is saw this because i wanted to lear lua because it realy looked like microscript but it was more outside of microstudio, so i downloaded lua and vs code and that is when i noticed it.