Erik M.  said:   Hey David,   I am having some trouble with the ScriptCards/SelectManager/Spawn shenanigans.   I'm trying to spawn a spell effect on a target token in a Card. I'm using the forselected command in front of the Spawn call in the Card, but I keep getting:   (From API):   No selected tokens to use for that command. Please select some tokens then try again.         I was just rereading this thread, and I should point out that the fix I just posted would help with this case, too. Messages that lose their selected tokens because of targeting statements still have @{selected} calls resolved in the command line. That means you can do things like:  {& select @{selected|token_id}}  ...somewhere in your command line, and you get that one token back as a selected token.  You can either do this at the top level of the ScriptCard command, or you can use the ScriptCard deferral to place it in the Spawn call:  {^& select @{selected|token_id}}  I'm fairly certain, too, that if you go this route, you no longer have to use   forselected   (since there is only one token selected, and you are making sure it *is* selected, Spawn -- or any other downstream script -- should work. In fact, going without it should be slightly quicker.