I am trying to make a trello report system (like a trello application system) and the script works if its on a button, but its a Remote Event and it does not work...
Script that adds to trello
ap=require(script.Parent.Trello) BoardName="[BoardName]" id=ap:GetBoardID(BoardName) script.Parent.OnServerEvent:connect(function(pl) local finder=script.Parent.Parent.Reports:FindFirstChild(pl.Name) local desc=[[ [Group name] [Info] [More Info] [Even more info] ]] local is=ap:GetListID("Incoming Calls",id) ap:AddCard('Reporter: '..pl.Name,desc,is.."") end)
Game layout: Workspace -Folder --RemoteEvents ---Reports --Reports
Anywhere where there is [ ] it is a valid name I have removed.
when the game is run either in studio test, studio game, or normal game it gives a error 401.
The token is correct and I am in the trello board. I have the trello board on public and on private and neither worked.
Extra Information: Trello API: nstrike159 Trello Private: false/true Trello script settings (private): true / false Yes.. The remove event is being called..