diff --git a/source/funkin/import.hx b/source/funkin/import.hx
index 5ca6b03db..02055d4ed 100644
--- a/source/funkin/import.hx
+++ b/source/funkin/import.hx
@@ -6,6 +6,7 @@ import funkin.util.Constants;
 import funkin.Paths;
 import funkin.Preferences;
 import flixel.FlxG; // This one in particular causes a compile error if you're using macros.
+import flixel.system.debug.watch.Tracker;
 
 // These are great.
 using Lambda;
diff --git a/source/funkin/play/stage/Stage.hx b/source/funkin/play/stage/Stage.hx
index c8cb8ce66..f876a0e54 100644
--- a/source/funkin/play/stage/Stage.hx
+++ b/source/funkin/play/stage/Stage.hx
@@ -276,6 +276,8 @@ class Stage extends FlxSpriteGroup implements IPlayStateScriptedClass
     {
       namedProps.set(name, prop);
       prop.name = name;
+      FlxG.debugger.track(prop, name);
+      FlxG.debugger.track(prop.scale, name + '.scale');
     }
     this.add(prop);
   }