What Is the Creation Kit?
The Creation Kit (CK) is Bethesda's official modding tool for Skyrim. It's the same software Bethesda used to build the game itself, which means it's powerful — but also a bit overwhelming at first glance. This tutorial focuses on the most practical starting point: creating a simple custom room (interior cell) that you can actually enter in-game.
Before You Begin: Prerequisites
- Skyrim Special Edition or Anniversary Edition installed via Steam
- Creation Kit downloaded through the Steam Library (search "Skyrim Special Edition: Creation Kit")
- A text editor like Notepad++ (optional but useful)
- Patience — the CK crashes occasionally. Save often.
Step 1: Launch and Configure the Creation Kit
- Open the Creation Kit from your Steam Library.
- When prompted, click OK to load
Skyrim.esmas your active master file. - Wait for all assets to load — this takes a few minutes the first time.
- Go to File → Data and make sure only
Skyrim.esmis checked. Click OK.
Tip: Add -AllowMultipleMasterFiles to the CK's launch options in Steam if you plan to use multiple master files later.
Step 2: Create a New Interior Cell
A "cell" is what the Creation Kit calls a discrete area of the game world — both interiors and sections of the open world are cells.
- In the top menu, go to World → Cells.
- In the Cell View window, right-click in the interior cell list and select New.
- Give your cell an ID (e.g.,
DWV99TestRoom01) and a name (e.g., "My Test Room"). The ID must be unique. - Click OK. Your new cell now appears in the list. Double-click it to open it in the Render Window.
Step 3: Add Walls, Floor, and Ceiling
An interior cell starts empty. You need to build a room from static mesh pieces called pieces or statics.
- In the Object Window (left panel), navigate to Static → Dungeons → Nordic for a classic Skyrim look.
- Find a floor tile piece (e.g.,
NorFloor1way01) and drag it into the Render Window. - Use G to snap to grid, Q to rotate, and F to drop objects to the floor level.
- Duplicate pieces with Ctrl+D and tile them to build a full floor, then repeat for walls and ceiling.
The CK uses a modular kit-bashing system — most Bethesda interiors are assembled from these puzzle-piece assets snapped together on a grid. Take time to explore the available pieces in the Nordic, Imperial, and Cave categories.
Step 4: Add a Light Source
Without a light, your room will be pitch black in-game.
- In the Object Window, navigate to Light.
- Find
FXInteriorAmbientLightfor general ambient illumination. - Drag it into the center of your room in the Render Window.
- For atmosphere, also add a
TorchSconce01static on a wall and place aNorTorchFire01light source near it.
Step 5: Save and Test Your Plugin
- Go to File → Save. Name your plugin (e.g.,
DWV99TestRoom.esp). - Open Mod Organizer 2, find your new .esp in the plugin list, and enable it.
- Launch Skyrim, open the console with the tilde (~) key, and type:
coc DWV99TestRoom01 - Press Enter. You should be teleported directly into your custom room.
What to Learn Next
- Navmesh: Required for NPCs to walk around in your cell.
- Doors and Teleport Markers: Connecting your cell to the rest of the game world.
- Quests: Attaching dialogue, objectives, and scripts to your location.
- Papyrus Scripting: Bethesda's scripting language for complex mod logic.
Building your first room teaches you the core workflow that every Skyrim mod uses. Once this feels comfortable, the rest of the Creation Kit's depth opens up naturally.