Getting Started
Let's get started on setting up your brand new trello board. This isn't a simple setup however once it is setup you can leave it then and let it do all the hard work for you!
Firstly, you are going to want to have a trello account, setup a board and list that you wish to use for your shifts. This guide assumes you already know how to do it, but if you do not then you can follow this guide.
Once you have completed this step, you will want to create an API key. Before we can do this, we need to create what's called a "Power-Up", head to https://trello.com/power-ups/admin and press new. You'll want to give this a name, something memorable such as "Roblox Integration". Set "Workspace" to the workspace where your board is located. Fill in your email and author name. Once complete you should be left with something like this.

Press create, and you will be taken to the API key generation page, click "Generate a new API key" and take a note of the "API Key".
Now that we have our API key, we will want to get our token, this is very simple and can be done by pasting your API key at the end of this URL.
https://trello.com/1/authorize?expiration=never&name=RobloxIntegration&scope=read&response_type=token&key=YOUR_API_KEY
Once you are on this page, you will want to press allow and copy the token on the next page.

Similar to how we got our token, we can find our Board and List IDs by using these URLs ensuring that we replace "YOUR_API_KEY" and "YOUR_TOKEN" with our API key and token.
Get your Board ID:
https://api.trello.com/1/members/me/boards?key=YOUR_API_KEY&token=YOUR_TOKEN
Get your List ID:
https://api.trello.com/1/boards/BOARD_ID/lists?key=YOUR_API_KEY&token=YOUR_TOKEN
These pages will look like a mess when you first go on them, but if you press "Pretty print" at the top it will make it much easier to read. Scroll down until you find your board and list and make a copy of the "id" field as you will need these.
You can now put these 4 items in their respective fields in the settings script:
local Settings = {
TRELLO_API_KEY = "",
TRELLO_TOKEN = "",
BOARD_ID = "",
LIST_ID = "",
}
Last updated