Welcome to the forums @Atlas!
You can access elements in an array using [x]
, where x
is the number of the element in the array you want to access. For example, if you want to access the first item in the array, then array[0]
will return it (computers start counting at 0 rather than 1).
So, for your code, if you want to set the text to the first string in the array, then you need to change the code to Global.dialouge_Text_box.text = current_dialogue[0]
and then it should be set to whatever the first item in the array is.