If you create an object that is not placed on the layout, Construct loads its textures on the fly, and that can take a moment on low end devices. In that case the 'Create object' action is effectively asynchronous and you won't be able to immediately paste the object to a canvas, because the object hasn't loaded its textures yet, and so cannot draw itself.
The easiest solution is to place the object on the layout, and destroy it on startup. Then Construct pre-loads its images when the layout starts. (See Memory usage in the manual.)
Otherwise you can use the system memory management actions, e.g. the 'Load object images' action, before creating the object. Something like Load object images, wait for previous actions to complete, and then 'Create object' for the same object, will then ensure it is ready before creating and so it should be able to paste to a canvas straight away too.
(FWIW Construct 2 loaded objects synchronously, and that could jank the game. Construct 3's approach ensures a smooth framerate and better performance loading lots of objects. This is not 100% compatible with C2 projects though and so is a documented compatibility issue moving from C2 to C3.)