Kraynic said: Tom G. said: Also.. I have an ability on each players sheet that does their attack roll so its called ATTACK inside it is /roll 1d20+4 Out on my macros, I'm trying to create a generic AttackDefault macro. First select who is attacking, then click macro, then click the target It reads like this. &{template:default} {{name=@{selected|token_name} attacks @{target|token_name}}} {{Attack = %{selected|Attack}}} {{AC = @{target|bar2}}} {{damage = %{selected|Damage}}} Seems to be fine, except the macro is just bringing the text /roll 1d20+4 from the ability and not actually rolling the dice. I guess it may be easier to just build a macro for each player to attack, but curious why this wasnt working properly. Inside roll templates, you need to use the inline roll macro structure. Instead of having the called macro be "/roll 1d20+4", see if it will work with "[[1d20+4]]". This worked, thanks for the insight on this, I appreciate it.