Alright so quick n simple, I’m trying to see if I can make a gui whitelist by using trello but it seems like I cannot even get the player itself,
If you have trello API knowledge, please help me out.
Code:
local API = require(game.ServerScriptService:WaitForChild("TrelloAPI"))
local BoardID = API:GetBoardID("GUI Whitelist")
game.Players.PlayerAdded:Connect(function(player)
local WhitelistID = API:GetListID("Whitelist", BoardID)
local WhitelistCards = API:GetCardsInList(WhitelistID)
for i, card in pairs(WhitelistCards) do
if card.Name == player.UserId then
print("Found player")
print("Found player")
print("Found player")
print("Found player")
print("Found player")
end
end
end)
Well I was watching a tutorial video, I had no volume so I expected it to be the board name, I could try using the actual numbers, i’ll reply back if it worked or not.
No I was right, it’s supposed to be the name only, because if you use the numbers the API is putting out an error saying “… not found!”, earlier when I used the example script to print out the board lists with the board name being the “GetBoardId” it worked, the problem is the code I just sent, it cannot find the card while I added it onto it
Nope, it’s clear, tried to look up some youtube tutorials but they all failed me, HTTPS request is on, token connected, key connected all of that i’ve watched whole videos but apparently it doesn’t work for me