of     1   

Stellarics
#189907137Saturday, May 28, 2016 5:49 PM GMT

I'm trying to use a module script that returns a string value, but I keep getting an error and can't find the problem. Here's the error I am receiving Requested module experienced an error while loading Here's the module script it was requesting ap = require(game.Workspace.TrelloAPI) trello = ap:GetBoardID("Judicial Security Applications") newList = ap:GetListID("New Applications",trello) reviewList = ap:GetListID("Reviewing Applications",trello) passedList = ap:GetListID("Passed Applications",trello) failedList = ap:GetListID("Failed Applications",trello) reviewAppList = ap:GetListID("Reviewing Appeals",trello) passedAppList = ap:GetListID("Passed Appeals",trello) failedAppList = ap:GetListID("Failed Appeals",trello) appsN = ap:GetCardsInList(newList) --applications appsR = ap:GetCardsInList(reviewList) appsP = ap:GetCardsInList(passedList) appsF = ap:GetCardsInList(failedList) apsR = ap:GetCardsInList(reviewAppList) --appeals apsP = ap:GetCardsInList(passedAppList) apsF = ap:GetCardsInList(failedAppList) function getStatus(id) local status status = "none:-" for i,v in pairs(appsN) do if v.name:match("(.*):"..id) then status = "pending:application" end end for i,v in pairs(appsR) do if v.name:match("(.*):"..id) then status = "review:application" end end for i,v in pairs(appsP) do if v.name:match("(.*):"..id) then status = "passed:application" end end for i,v in pairs(appsF) do if v.name:match("(.*):"..id) then status = "failed:application" end end for i,v in pairs(apsR) do if v.name:match("(.*):"..id) then status = "review:appeal" end end for i,v in pairs(apsP) do if v.name:match("(.*):"..id) then status = "passed:appeal" end end for i,v in pairs(apsF) do if v.name:match("(.*):"..id) then status = "failed:appeal" end end return status end return getStatus
Stellarics
#189909832Saturday, May 28, 2016 6:11 PM GMT

bump
Stellarics
#189913315Saturday, May 28, 2016 6:43 PM GMT

bump
Stellarics
#190003460Sunday, May 29, 2016 7:05 PM GMT

bump
[rfa#hidefromsearch]
#190004470Sunday, May 29, 2016 7:22 PM GMT

[rfa#hidefromsearch]
Stellarics
#190096845Monday, May 30, 2016 8:29 PM GMT

no, a script tried to require this module script and instead it returned the error "Requested module experienced an error while loading"
Stellarics
#190416173Saturday, June 04, 2016 7:06 AM GMT

bump

    of     1