hello, im a newbie in gdevelop5 and im currently creating a quiz game
I’m having a trouble in my game where when the character collided to a object it will be sent to a scene where i place a question and upon answering it they will go back to the previous scene.
currently i have 10 scenes and i want them to randomly appear in the screen upon collision with an object.
the Scenes i have ;
homepage
the scene for game
and the 10 scenes for the question
Change to scene "Scene_" + ToString(Random(1,10)).
Make sure the scene name before the number is correct. You’ve given “Scene_”, but you write the scene names are Scene 1, Scene 2, etc, with a space in the name.
Also, you can use VariableString(…) instead of ToString(Variable(…))