MungMoong I create instance and put them to array I want pick up one instance randomly and start that instance timer node Instance scene has timer node But syntax error 'i' is randomly picked up instance i.Timer....doesn't work i.$Timver...also How can I do?
Calinou The $ shorthand can only be used at the start of an expression, so you need to use i.get_node("Timer").start() instead.
MungMoong @Calinou said: The $ shorthand can only be used at the start of an expression, so you need to use i.get_node("Timer").start() instead. Really Thank you!