Spawning enemies

Hello Unity! I was wondering how to spawn a enemy prefab that I have created. It has no AI, but I just want to make sure how it will look in the game and its hitbox. Is there a spawner I need to create? This will just be temporary.

use Instantiate

basically you will need an object in the scene, which can instantiate your prefab. Also you can add empty gameobject, rename it as spaner and add to it script with instantiate code.