You know how spell-check works? You type a mangled word, the system generates a handful of candidate corrections, scores each one against a dictionary, and picks the best match. It doesn't understand English — it just generates, evaluates, selects. This paper does the same thing for humanoid robot motion: generate N candidate motions from a frozen text-to-motion model, simulate each one in full physics, and keep whichever one the robot's tracking controller executed best. No training. No fine-tuning. Just sample, simulate, select. The committed claim is simple: a training-free selection loop over a frozen generative model, verified by the deployment physics simulator itself, can close most of the gap between raw text-to-motion output and actually-executable humanoid behavior. On 200 stratified HumanML3D test prompts with N=8 candidates, upright execution rises from 83.5% to 89.5%, and hardware-gate passes jump from 33 to 85. On the full 4,184-prompt test split, the gain is 80.5% to 89.5%. The system is called S³ (Sample-Simulate-Select) and runs on a Unitree G1 humanoid using the pretrained SONIC whole-body tracking policy. The architecture is refreshingly transparent. A frozen text-to-motion model (the generator) produces N motion candidates per text prompt. Each is retargeted to the G1's kinematic skeleton via direction-matching inverse kinematics. All N candidates are then rolled out under full rigid-body dynamics with the SONIC tracking controller. The candidate that the controller executes best — measured by tracking error and stability — wins. Because the verifier IS the deterministic simulator, the method hits the theoretical any-of-N ceiling by construction. What the paper measures is where that ceiling lies and where it fails. The integrity story is unusually strong for a robotics paper. The authors don't just simulate — they execute all 177 hardware-gate-selected clips on a real Unitree G1 robot, and every single one completes standing. Hardware tracking error matches simulation with r=0.94, which is a strong sim-to-real transfer signal. They also run a kinematic verifier ablation: a fall-predictor with AUROC 0.90 recovers only a quarter of the gain that full physics simulation provides, demonstrating that ranking candidates within a prompt is genuinely harder than classifying the population. They further ablate the retargeter against GMR (a different retargeting method), finding complementary failure modes that push the combined any-of-8 ceiling to 95.0%. The honest limitation is precisely identified: prompts that lower the pelvis (crouching, sitting) remain out of reach because the frozen generator was trained on human motion capture, not robot-retargeted data. This is the one class where a trained generator wins, and the authors say so plainly. They also score semantic fidelity using the standard text-motion evaluator and include a real-mocap control that isolates how much quality loss comes from robot projection versus from the method itself. The ladder position is interesting. This isn't competing against a single SOTA number — it's competing against the entire paradigm of training language-to-humanoid systems. The paper's argument is that training-free selection is a surprisingly strong baseline that the field has been ignoring. The comparison to SONIC without selection (83.5% → 89.5% upright execution) and the hardware-gate improvement (33 → 85 passes) establish the value of the selection loop itself, though the paper acknowledges that trained systems handle the pelvis-lowering failure class. What comes next is obvious: scaling N beyond 8 to see where the any-of-N ceiling truly plateaus, and combining S³ with a generator fine-tuned on retargeted robot data to close the pelvis gap. The authors clearly know this — the complementary-retargeter ablation (95.0% ceiling) hints at it. My read: they're saving the fine-tuned generator combination for the next paper, because it would dilute the clean 'no training needed' message of this one.