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

Can someone help me? Whenever I change my board, the trello doesn't update? [closed]

Asked by 7 years ago
Edited 7 years ago

The script down below is a what I've been working with but also with other scripts too.

ap = require(game.Workspace.TrelloAPI)
BoardID = ap:GetBoardID("DCCC Voting Board")
ListID = ap:GetListID("Voting On", BoardID)
CardName = game.Workspace.TextBoard.SurfaceGui.MainText.Text
CardID = ap:GetCardID(CardName, BoardID)
---------

script.Parent.MouseButton1Down:connect(function()
    CardID = ap:AddCard(CardName, "Voting is in the Comments", ListID)
    local hint = Instance.new("Hint", workspace)
        hint.Text = "Trello Card Created for Bill: " .. CardName
        wait(3)
        hint:Destroy()
end)

I'm trying to change the CardName to whatever I changed onto the board. Can someone help me.

Marked as Duplicate by Pyrondon

This question has been asked before, and already has an answer. If those answers do not fully address your question, then please ask a new question here.

Why was this question closed?