how do i make three attempts in my quiz in unity?

My question is how can I add to my game quiz so that each question has 3 attempts, the first attempt is text only, for example “which operating system is the most represented?” and below 4 answers to choose from, if the answer is not correct, then the next attempt goes, again the text of the question but this time a picture pops up, for example a mobile phone, and the 4 answers is given again, if it is incorrect again then a text with a picture containing the sound of a mobile phone pops up again , (or video clip) if the answer is incorrect even then, the next question continues and 0 points are awarded for this. I also have points in my quiz and I need to make the first attempt have 30 points, the second attempt 15, the third attempt 5, and if the answer is not correct at all, then 0 and it continues. I have a project on my GitHub account, the name is Nino94Unity, the name of the scene that needs to be opened is “Biologija”, and it is in the folder “MojKviz”, the only problem is that it is in the Serbian language, but again I think that when you see visually it will be easier than I explain to you.

I expect that someone will be able to help me because I cannot finish my graduate thesis without that supplement.

I would create a class object for each of your questions.
The Question class can have the parts you need for each question.

-string question

-List answers

-RawImage/byte helperImage

-counter for attempts

-List pointLevels //somewhere to store the different point allocations

You can list the pointLevels in increasing order, so that 0 = highest score, and your counter can act as the index of how many points to give.

In a UI that you will create, you will present a list of these Question class instances to present in the UI.