Make many levels

So when making levels for a game, what is the way to go? Let’s say I have a block who just rolls from start to end and then you reach next level. Would best way just be to create a new scene like “level2”. Cause I want kinda many levels for my game which increases in difficulty. But not really sure how to build the level system

You’ve answered your question. Make every level as a new scene, this is esiest way to go. Or, you can make a level a prefab and load/unload them as needed, or you can generate level on the fly, like in a endless runner, from prefabs or purely from algorithm, or mixed.