Why is your goal to re-trigger the User Event script after creation, instead of just having it run on creation in the first place? It seems to me that your UE script is filtered to the Edit event type either on the deployment or within the script itself.
I would check the deployment first, and see if there is a value in the "Event Type" field on the deployment:
Alternatively, you can search for usage of context.UserEventType
within the script, as this is what would be used to filter the script to run under certain contexts. See context.UserEventType help article for list of enum values, but it would (likely) be either if (context.type != context.UserEventType.CREATE)
or if (context.type == context.UserEventType.EDIT)
.