How can I call an Adonis Admin command from a server script?

I am currently struggling to figure out how to call certain commands from Adonis Admin in my server script.

The example I’d like to achieve is using Adons’s :countdown command to run during a specific loop. I know this is possible given the option is there to use adonis in other scripts in it’s loader settings.

Any ideas or advice would be highly appreciated, I’ve already attempted :
_G.Adonis.RunCommandAsNonAdmin(":countdown", “15”) but no luck there.

You used “AsNonAdmin” meaning the command is being rejected… because nonadmins cannot run the countdown command typically.