breaking with no errors, it's server script
01 | ap = require(game.Workspace.CTRadio.APIs.TrelloAPI) |
02 |
03 | local Board = ap:GetBoardID( "RadioGui" ) |
04 | local List = ap:GetListID( "Comments" ,Board) |
05 | local count = false |
06 |
07 | script.Parent.MouseButton 1 Down: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 |
20 | end ) |
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.