Thanks Diego. I've found that now and pretty much copied and pasted most of it into my game but it doesn't seem to be working and I'm not sure where I'm going wrong.
The only parts that are different in my game is the GetDate function and Every Tick event.
I've set the GetDate function to: Date.Get(2021, 11, 11, 18, 0, 0, 0). This should be December 12th 2021 at 7pm and I want the countdown to show the difference between this date and time, and the current date and time. Is the equation correct?
The Every Tick event reads I have written like this:
Functions.GetDateDifference(Date.Now, Functions.GetDate, "Days") &
Functions.GetDateDifference(Date.Now, Functions.GetDate, "Hours") &
Functions.GetDateDifference(Date.Now, Functions.GetDate, "Minutes") &
Functions.GetDateDifference(Date.Now, Functions.GetDate, "Seconds")
Is this correct? For some reason the text is being set to '1'.
The other events (GetDateDifference and Trunc functions) are exactly the same in my game as on the example, do I need to change these or can I keep as they are?
Sorry for all the questions - I'm quite new to Construct and still learning things.