Hi, my name is Baccon. I’m having a problem with trying to connect Trello to Roblox. I want to get the description of the Trello card and send it to a value in Roblox, but every time I do this I get nil and it doesn’t get the name before getting the description. Here is the code: `local Teams = {}
local boardId = “j”
local hs = game:GetService(“HttpService”)
function Fetch()
local lists = hs:JSONDecode(hs:GetAsync(‘https://api.trello.com/1/boards/’..boardId..’/lists?key==’,true))
for i,v in pairs(lists) do
if v.name:match(“Teams”) then
local cards = hs:JSONDecode(hs:GetAsync(“https://api.trello.com/1/lists/"..v.id.."/cards?key=Hbjhjjvhjj=Hhghj”,true))
if cards then
for i,v in pairs(cards) do
print(v.Name)
if cards.Name == workspace.TeamName.Value then
print(cards.Name)
workspace.Rankings.Value = v.desc
end
end
end
end
end
end
spawn(Fetch)
` . The Value doesn’t show anything and the script doesn’t get the name of the card. Please help me!