[SOLVED] Why isn't my object showing up?

This is what my scene and events looks like:

As you can see, I would like the object to follow the cursor, but when I launch a preview, the Red Enemy doesn’t show up!

first off, is the enemy in the scene and has the bathfinding behavior?
secondly:
you cannot use at the beginning of the scene, since it triggers only once and therefore it would go, where your cursor was at the beginning of the scene and not update.

Move RedEnemy2 to MouseX("",0);MouseY("",0) not Mouse.X();Mouse.Y()

good catch, i didnt see the dots.
but just MouseX() / MouseY() without “”,0 still works.

Thanks guys, it worked!