local API = require(game.ServerScriptService:WaitForChild("TrelloAPI"))
local TrelloBoardID = API:GetBoardID("TCD Whitelist System")
local WhitelistID = API:GetListID("Whitelists",TrelloBoardID)
local Placeid = game.PlaceId
local WhitelistCards = API:GetCardsInList(WhitelistID)
print(WhitelistCards.name)
when I do that ^ it printed nil But when I do w/o .name It returns a the table
Is there something that I did wrong above?
TrelloAPI:AddCard(PetChosen, "", PetListID)
local PetCard = TrelloAPI:GetCardsInList(PetListID)
for i,v in pairs(PetCard) do
if v["name"] == PetChosen then
NumberofPet += 1
end
end
Here is something I did. ask you can see I literate through card and see all things in the table. What ever I did is a very bad practice. Use Trello for ban systems or code systems :). NEVER for things containing big numbers.