Image Input

Hi

I want to set up an Input system to be able to go to the third Image when I exceed to press 1 time on my keyboard I am limited in one time

if (Input.GetKeyDown (KeyCode.DownArrow)) {


                AudioSourceSelect.Play ();
                Image1.SetActive (false);
                Image2.SetActive (true);
                          }

the rest I don’t know how to do

Start with some UI tutorials so you understand how UI is shown and hidden.

Then make a flowchart of what happens with each keypress or user input, because the above description is far too vague for you to even begin making code.