Sandbox Logo

s&box is a spiritual successor to Garry’s Mod and a love letter to Source 2

get it now

What's s&box?

s&box isn’t Garry’s Mod 2. It’s built to eclipse what was possible before — not just modernise it.

We’re using Source 2 and everything we’ve learned from Source 1, Garry’s Mod, Unity, and Unreal to create a modern, intuitive, moddable game development environment.

Like Rust and Garry’s Mod, this is a long-term project. We’re building the platform we want to use ourselves — something we’ll work on and improve for the next couple of decades.

Key Features

A few of our key features of the s&box engine.
Play

Play

Play hundreds of community-made games — from shooters 🔫 and platformers 🧗 to puzzlers 🧩 and racers 🏎️.

Team up with friends 👯‍♂️ right from the main menu and jump into any game — together.

No installs. No subs. No addons. Just click ⚡ and play 🎮.

Create

Create

Create your own games 🛠️ and playtest instantly with our familiar scene system 🎬.

Build with our first-rate C# API — easy for beginners, powerful for pros 💪.

/// <summary>
/// Moves the object forward in the camera direction when pressing forward
/// </summary>
public class ShipControls : Component
{
    /// <summary>
    /// The speed to move the object
    /// </summary>
	[Property, Range( 0, 1000 )] 
    public float Speed { get; set; } = 200.0f;

	protected override void OnUpdate()
	{
		if ( Input.Down( "forward" ) )
		{
			var forward = Scene.Camera.WorldRotation.Forward;
			WorldPosition += forward * Speed * Time.Delta;
		}
	}
}
C#

C#

Write in modern C# 13 with the latest language features — no legacy baggage 🧳.

Powered by .NET 9 and a familiar Component System — intuitive, flexible, and fast ⚡.

Enjoy smooth performance with no GC stutters 💨.

Share

Share

Sharing your game is effortless — just click to publish 📤. Everything uploads automatically and is ready to play instantly 🚀.

Play Fund

Play Fund

Earn real money 💰 when people play your games — our Play Fund rewards creators based on engagement, not ads or microtransactions.

The Play Fund grows with our success - so the more players the game gets, the bigger the pool will be. So far we've paid $53,033.45 !

Multiplayer

Multiplayer

Multiplayer is built right into the engine 🔧 — no setup needed.

Playtest your games or levels instantly with the community 🧪🌍.

Hotload

Hotload

See code changes take effect instantly with blazing-fast hotloading ⚡ — no compiling, no restarts.

Cloud Assets

Cloud Assets

Create your games and levels with a huge library of assets 🧱.

No downloads, no subs — just drag straight from the asset browser into your scene 🎯.

Hammer

Hammer

Create levels with Valve’s powerful Hammer Editor 🔨.

We’ve made it moddable — add new tools, UI, primitives, and more 🔧.

Action Graph

Action Graph

Use our visual scripter, ActionGraph, to build interactive experiences — no code, no messy chains of entities 🧩⚡.

Shader Graph

Shader Graph

Create unique materials and post-processing effects 🎨⚙️ with ease using our Shader Graph.

Virtual Reality

Virtual Reality

We’re committed to making VR on PC easy to develop and seamless to play 🥽🚀.

Publishing

Publishing

Coming soon: export and release your s&box games as standalone titles on Steam 🚀.

Completely free, no royalties, no strings. Your game, your name, your revenue 💼.