How do I make a game?

I want to make a game without having to follow any instructions. I am already skilled at coding and have a barrage of game ready to import…if I knew how. If this site does not have a place to do that, does anyone know a site where I can that is not Scratch or Stax.fun? Nothing with viruses or that costs money btw, I don’t use sites that have those things.

Hi! If I understand right, you want a blank editor rather than a guided tutorial, and a way to bring in code you already have. Here are a few free options:

Trinket.io — Python (Pygame Zero) straight in the browser. You start from an empty file, paste your code in, and it runs. Shareable by link.

Pygame Zero — if installing is fine: pip install pgzero. Plain Python, no framework to learn, no tutorial path. Just write a file and run it.

MakeCode Arcade (arcade.makecode.com) — free, from Microsoft. It shows blocks by default, but you can switch to JavaScript or Python and start from a blank project. It can also import projects from GitHub.

All three let you start from nothing instead of walking you through steps.

What language are your existing games written in? That would narrow it down a lot — importing works very differently depending on the answer.