Pause command not working

Hi,
I am trying to run below command to pause for 10 seconds which is working fine when i test it with Fixlet Debugger but when i use it through BigFix action script it gave me error. The error is

Command failed (parameter add exists) parameter “start” = “Mon, 18 Jul 2022 06:23:25 -0400” (action:7844

parameter “start” = "{now}"
pause while {now < ((parameter “start” of action) as time) + (“00:00:10” as time interval)}

Kindly provide some suggestions for it.

The failure indicates that you already have parameter “start” configured. Actionscript do not allow overwriting/recreating/resetting of parameters (not sure why, it was always a bit weird imho), so if you had used parameter “start” = …, you can’t use that again. Use “start1” or something like that.