Weird installer bug

ok, so I used the CC installer for a project of mine, but when I run it, it has an error that doesn’t show up when i play the project itself.

Code:

function setup()
    http.request("http://pastebin.com/raw.php?i=ejr5YH99",
        function(d) loadstring(d)() end,
        function(e) print(e) end
    )
end

You forgot that the setup function for your project will not be called.

function setup()
    http.request("http://pastebin.com/raw.php?i=ejr5YH99",
        function(d) loadstring(d)() setup() end,
        function(e) print(e) end
    )
end

Ahhh, thanks @JakAttak