pop up a canvas when the time is up

hi guys! I wondered how I could activate a canvas (deactivating the previous one) when the time of 5 minutes is up! could you help me please? I’ll be very grateful

Hi @Zannart

You should check unity basics tutorials, it is the same method as for any other gameobject, of course you could use some other methods for panels, but IMO this the simplest way: Activating GameObjects - Unity Learn

How to activate panel pseudo code:

Keep references to both of your panels in your script.

Create a timer (Invoke or Coroutine).

When it’s full, run your method that shows the panel and hides the previous one.