I’ve been trying to make a Trello - Roblox System where sessions can be displayed. Although all the errors were fixed and it’s working fine now, I was wondering how can I add the Due Date to roblox.
So when I add a card with a Date [ like shown above], it displays where it says time:
This is an ISO8601 timestamp, from which you construct a DateTime object from using fromIsoDate:
-- Construct a DateTime object representing the date and time based on the timestamp
local scheduledTimeData = DateTime.fromIsoDate(timestamp)
-- Get the time of the event (in the format: h-mm AM/PM) in the client's local time
-- For info regarding the format, please see the DateTime reference and refer to String Format and Composite Tokens
local scheduledTime = scheduledTimeData:FormatLocalTime("LT", "en-us")
Make sure you use a localscript to convert the ISO8601 TS to Local Time, otherwise the time will display in the server’s timezone which could be anything.