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

Trello api help?

Asked by
NotSoNorm 777 Moderation Voter
9 years ago

breaking with no errors, it's server script

01ap=require(game.Workspace.CTRadio.APIs.TrelloAPI) 
02 
03local Board = ap:GetBoardID("RadioGui")
04local List = ap:GetListID("Comments",Board)
05local count = false
06 
07script.Parent.MouseButton1Down:connect(function()
08    if script.Parent.Parent.TimeLeft.Value == 0 then
09        ap:AddCard(script.Parent.Parent.TextFrame.TextBox.Text,"Sent by: "..game.Players.LocalPlayer.Name,List,"","top")
10        script.Parent.Parent.TextFrame.TextBox.Text = "Type here..."
11        count = true
12        script.Parent.Parent.TimeLeft.Value = 240
13        for i = 240, 0, -1 do
14            script.Parent.Parent.TimeLeft.Value = i
15            script.Parent.Parent.TextTimer.Text = "You can post a comment in: "..i
16            wait(1)
17        end
18        script.Parent.Parent.TextTimer.Text = "You can post a comment every 4 mins"
19    end
20end)

1 answer

Log in to vote
1
Answered by 9 years ago

https://scriptinghelpers.org/blog/logging-errors-with-trello

That's all I can refer you to since you haven't provided us with the TrelloAPI.

Ad

Answer this question