Now you've created one rotating PickUp collectible, it's time to place them around the play area. There's one vital step needed to do this. You need to make the PickUp GameObject into a Prefab. A Prefab is an asset that contains a template or a blueprint of a GameObject or GameObjects Family. Once a GameObject is turned into a Prefab, you can use the Prefab in any scene in your current project. By turning the PickUp GameObject into a Prefab, you will be able to make changes to a single instance of the Prefab or to the Prefab asset itself, and all of the PickUp GameObjects in the game will be updated with those changes. Let's get started. First, go to the Project window and check that you are at the root, or top level, of the project. Make sure that no other item or directory is highlighted. Select Create, Folder, and rename this folder, "Prefabs." Now select the PickUp GameObject in the Hierarchy and drag it into the Prefabs folder. When you drag an item from the Hierarchy into the Project window, Unity creates a new Prefab asset containing a template or a blueprint of the GameObject or GameObject family. Your GameObject will turn blue in the Hierarchy when it becomes a Prefab instance. Select the arrow to the right of the PickUp Prefab in the Hierarchy to open the Prefab Edit Mode. From this mode, you can use the arrow at the top of the Hierarchy to return to a normal Scene view. Now you've turned the PickUp GameObject into a Prefab. In the next video, you'll instantiate it around the play area for your Players to collect.