Greybox a playable area


Greyboxing is the process of building a level with simple shapes before investing time in scripting or creating final art assets. It helps you test gameplay, identify layout issues, and make changes quickly while the environment is still easy to modify.

In this section, you'll greybox the sea stack platforms that make up the playable area of the game. Once the layout feels right, you can begin scripting.

Plan the playable area

In the final game, players collect coins to increase their jump power and reach higher platforms. You'll implement this progression system later in the tutorial, but it's important to plan for it while greyboxing your environment. As a general rule, the height difference between platforms should gradually increase to encourage players to collect coins and continue progressing.

As a reference, the sample Island Jump - Building game uses seven height levels. The first platform sits low enough that players only need a few coins to reach it. The subsequent height differences increase to 8, 20, 35, 55, 81, and 110 studs, creating a steady sense of progression throughout the game.

A distant view of the sample island jump game's greybox geometry. Each level of height difference between sea stacks is highlighted.

Add the platforms

Now that you have a plan for the difference in height between platforms, add placeholder Part objects to represent the sea stacks. Parts are Roblox's basic building blocks, with properties that control their shape, size, color, and other physical characteristics.

For this project, use cylinder parts to give players a flat top to land on when jumping.

A comparison between the sample Island Jump game's greybox and final geometry
The sample Island Jump game's greybox geometry.
The sample Island Jump game's final geometry.

Create an organization structure

Before adding parts, create two containers to keep the project organized. Roblox provides Folder objects for grouping related instances and Model objects for grouping 3D objects. In this tutorial, you'll create a World folder to hold the environment and a Blockout_Parts model inside that folder to hold the greybox platforms.

  1. In the Explorer, create a folder named World inside Workspace.
  2. Create a model named Blockout_Parts inside the new folder.

Insert parts

Now that you have an organization structure, add the cylinders for your platforms. You can use an Assistant prompt, build your own layout manually, or recreate the layout of the sample game.

To get Assistant to generate the entire blockout in one step, copy the prompt that matches whether you want a unique layout or an exact copy of the sample game.

Create your own layout

Create multiple cylinder Parts inside Workspace > World > Blockout_Parts to form platforms.
Start with one large, flat cylinder centered on the island, then add at least seven more cylinders that all start at the same vertical base but vary in height (like tall buildings) to create an upward path.
Adjust Size, Position, and Orientation so the top surfaces are flat and walkable, and set all Parts to Anchored.
Recreate the sample

Create the following cylinder parts inside Workspace > World > Blockout_Parts:
1. Level_1 (Size 12, 131, 131; CFrame.Position -23, -4, 9; CFrame.Orientation 0, 0, 90)
2. Level_2 (Size 20, 81, 81; CFrame.Position -8, 0, 24; CFrame.Orientation 0, 0, 90)
3. Level_3a (Size 40, 44, 44; CFrame.Position 42, 10, 9; CFrame.Orientation 0, 0, 90)
4. Level_3b (Size 40, 34, 34; CFrame.Position 87, 10, 4; CFrame.Orientation 0, 0, 90)
5. Level_3c (Size 40, 44, 44; CFrame.Position 97, 10, 49; CFrame.Orientation 0, 0, 90)
6. Level_4a (Size 75, 39, 39; CFrame.Position 112, 27.5, 46.5; CFrame.Orientation 0, 0, 90)
7. Level_4b (Size 75, 65, 65; CFrame.Position 137, 27.5, 69; CFrame.Orientation 0, 0, 90)
8. Level_4c (Size 75, 60, 60; CFrame.Position 159.5, 27.5, 91.5; CFrame.Orientation 0, 0, 90)
9. Level_4d (Size 75, 30, 30; CFrame.Position 207, 27.5, 106.5; CFrame.Orientation 0, 0, 90)
10. Level_4e (Size 75, 61, 61; CFrame.Position 250, 27.5, 74; CFrame.Orientation 0, 0, 90)
11. Level_5a (Size 130, 60, 60; CFrame.Position 268, 55, 50; CFrame.Orientation 0, 0, 90)
12. Level_5b (Size 130, 25, 25; CFrame.Position 256, 55, 2.5; CFrame.Orientation 0, 0, 90)
13. Level_5c (Size 130, 25, 25; CFrame.Position 276, 55, -17.5; CFrame.Orientation 0, 0, 90)
14. Level_5d (Size 130, 54, 54; CFrame.Position 322, 55, -21; CFrame.Orientation 0, 0, 90)
15. Level_6a (Size 211, 79, 79; CFrame.Position 367, 94.5, -41; CFrame.Orientation 0, 0, 90)
16. Level_6b (Size 211, 24, 24; CFrame.Position 387, 94.5, 11.5; CFrame.Orientation 0, 0, 90)
17. Level_6c (Size 211, 44, 44; CFrame.Position 397, 94.5, 51.5; CFrame.Orientation 0, 0, 90)
18. Level_7 (Size 321, 61, 61; CFrame.Position 407, 149.5, 79; CFrame.Orientation 0, 0, 90)
Make sure all Parts are anchored, correctly positioned, and oriented to form a continuous level layout.

Align parts

If you're creating your own layout, it's often easier to manage platform heights when every platform shares the same base elevation and only varies in size. The Align Tool can do this in a single click by aligning the bottom edge on the Y axis.

  1. In the Explorer, select all of your platforms.

  2. In the Model toolbar tab, click Align.

  3. In the Align Tool window:

    1. Set Mode to Min.
    2. Set Align In to World and Y.
    3. Set Relative To in Selection Bounds.
  4. Click Align.

An underwater view of many cylinders that are aligned along their bottom edge.
All platforms align their bottom edge

Create a hollow tunnel

To add more visual variety, carve a tunnel through one of the sea stacks using Studio's solid modeling tools. For this tutorial, you'll use Negate to create the hole and Union to combine the parts into a single shape. For more information on all solid modeling tools, see solid modeling.

Create a hollow tunnel

Create a hollow tunnel structure using these steps:
1. Create a cylinder Part named Tunnel with Size 24, 65, 69 and CFrame.Position 137, 77, 69 and CFrame.Orientation 0, 0, 90. Set Anchored to true.
2. Create a block Part named Hollow_Part with Size 24.5, 72, 22 and CFrame.Position 134.5, 77, 71 and CFrame.Orientation 0, 135, 90. Set Anchored to true. This part should intersect the cylinder to define the hollow space.
3. Negate the Hollow_Part so it becomes a subtraction shape.
4. Select both the Tunnel part and the negated Hollow_Part, then perform a Union operation so the hollow shape is cut out of the cylinder.
5. Rename the resulting union to Level_4b_Union.
6. Find the existing Level_4b platform, duplicate it, and rename the duplicate to Level_4b_Top.
7. Set Level_4b_Top to Size 74, 65, 69 and CFrame.Position 137, 126, 69 and CFrame.Orientation 0, 0, 90. Make sure it is Anchored and positioned above the tunnel.
Make sure all Parts are properly aligned and that the final result is a cylinder tunnel with an open passage and a platform placed on top.

Playtest the layout

Before you start scripting, playtest the layout to catch any issues while it's still easy to make changes.

Start a playtest from the Test tab and simulate the player's starting state.

  1. Find your character in the Explorer and select Humanoid.
  2. Enable UseJumpPower.
  3. In the Properties window, set JumpPower to 0.
  4. As you reach higher platforms, increase JumpPower in increments of 30 to simulate collecting jump upgrades and make sure that each level is reachable.
Jump Settings with the JumpPower and UseJumpPower properties highlighted.

In the next section, you'll learn how to script the overall gameplay.

©2026 Roblox Corporation. Roblox, the Roblox logo and Powering Imagination are among our registered and unregistered trademarks in the U.S. and other countries.