So I’m now on the Magic Link tutorial.
It might be helpful to point out that the background should have a z-position of -1, otherwise all blocks after the first column will be rendered behind the background.
The block colours must have changed during development as the tutorial states:
local colors = { hash(“red”), hash(“green”), hash(“blue”), hash(“yellow”), hash(“grey”) }
However what is needed is:
local colors = {hash(“orange”), hash(“pink”), hash(“blue”), hash(“yellow”), hash(“green”)}
Similarly, a bit further down a message “make_red” is implemented, but red isn’t one of the available colours.