Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

I get the error Argment 1 Missing or Nil? Its adding a card via trello when ever server is started.

Asked by 9 years ago

Please provide more explanation in your question. If you explain exactly what you are trying to accomplish, it will be much easier to answer your question correctly.
-- Don't change anything please Devlopers Unless You Have Approval--
wait(0.1)
-- Trello variables
api = require(game.ServerScriptService.TrelloAPI)
BoardID = "wxVhfnzd"
ListID = api:GetListID("ServerID's",BoardID) 
-- SID Variables --
local SID = string.JobID
game.Players.PlayerAdded:connect(function(plr)

    CardID = api:AddCard("SID",ListID)
end)

Its adding a card via trello when ever the server is started.

0
I don't see anything wrong, except that string.JobID is not a default. Posting more information and the exact line would help. TickerOfTime 70 — 9y
0
Can you get me what goes where the JOBID is? @tickerOfTime EvolutionaryCode 15 — 9y

1 answer

Log in to vote
0
Answered by
Shawnyg 4330 Trusted Badge of Merit Snack Break Moderation Voter Community Moderator
9 years ago

You didn't specify the line the error occurred on. Also, many things can go wrong, w hen using the TrelloAPI module. I recommend learning the API yourself, so it'll be easier to resolve.

Ad

Answer this question