Quick answer: Avoid starting overlapping tweens on the same property, check the Tween is not paused, and use On finished only after confirming a single tween owns the property.

A Construct 3 object tweens halfway across the screen and stops, with the On finished event never firing. Usually a second Tween action on the same property cut it off, or the behavior was paused. Letting one tween own the property fixes it.

How to fix it

1. Do not overlap tweens on one property

Starting a new Tween on the same property (such as position) while one is running can interrupt it. Stop the existing tween first or tween distinct properties.

2. Check the tween is not paused

Confirm no event set the Tween behavior or the object inactive mid-animation; a paused tween sits frozen and never reaches On finished.

3. Use Wait for previous actions or On finished

Chain follow-up logic from the Tween's On finished trigger rather than a fixed Wait, so it runs exactly when the tween truly completes regardless of frame rate.

Catching the ones you can't reproduce

The hardest version of this to fix is the one you can't reproduce — it only happens on a player's hardware, OS, driver, or save state, under conditions that simply aren't present on your machine. A report that says “it crashed” or “it froze” gives you nothing to act on, so the bug survives release after release while quietly costing you players.

Automatic error capture closes that gap. Each failure arrives with its full stack trace, the device and OS, the build number, and a breadcrumb trail of what the player did right before it broke, so even a failure you have never seen becomes a specific, reproducible issue. Fold identical failures into one signature ranked by how many players each hits, and your worklist sorts itself worst-first instead of arriving as a stream of vague complaints.

This is where a tool like Bugnet earns its place. Its SDK captures every Construct 3 error automatically with the full stack trace plus device, OS, memory, build, and game-state context, folds duplicates into one grouped issue with an occurrence count, and ties each to the build it first appeared on — so you fix the problem that hurts the most players first and confirm it is gone when its signature disappears from the next release.

Reproduce it once with full context and the fix writes itself. The hunt is the expensive part.