I'm trying to use nstrike159's Trello API module (https://www.roblox.com/library/214265621/Trello-API-Original). Using the following script as an example:
trello = require(game.ServerScriptService:WaitForChild("TrelloAPI")) local boardid = trello:GetBoardID("Board Name") print("Board ID found: "..boardid) print("Hello!")
After trying to set boardid
, nothing runs after that. Nothing is printed, including Hello!
. Does anybody know why this is? I don't receive any errors or warns. I have set the Token
value that is a child of the ModuleScript.
I've waited for minutes and nothing happens.
Turns out we were dumb and were using the API wrong. You have to insert your API key on line 42. Since we didn't do that, the script went into an infinite loop. Fixed though.