[Solved] Change text object according to JSON file

I want to change text object (QuestionTexr and AnswerText) into text that I made with JSON file. I follow some tutorial but it just show 0. Can anyone help me what event action and condition that I need it?

{
  "questions": [
    {
      "question": "Apa ibukota Indonesia?",
      "options": ["Jakarta", "Bandung", "Surabaya", "Medan"],
      "answer": "Jakarta"
    },
    {
      "question": "Siapa presiden pertama Indonesia?",
      "options": ["Soekarno", "Soeharto", "Habibie", "Megawati"],
      "answer": "Soekarno"
    }
  ],
  "points_per_correct_answer": 10
}

Hey, you’re setting the JSON in “Question” but you’re trying to get values from “Questions”. Just change the first action to “Questions”.

1 Like

Thanks for reminding me, i didn’t see it and just realized what part that should be written correctly

1 Like