> ## Documentation Index
> Fetch the complete documentation index at: https://docs.bfl.ml/llms.txt
> Use this file to discover all available pages before exploring further.

# Insert the Person Into a Scene

> Inserting a person into a scene with FLUX editing

export const PromptDisplay = ({prompt}) => {
  const [copied, setCopied] = useState(false);
  const copy = () => {
    navigator.clipboard.writeText(prompt);
    setCopied(true);
    setTimeout(() => setCopied(false), 2000);
  };
  return <div className="not-prose" style={{
    marginTop: "1rem"
  }}>
      <div style={{
    backgroundColor: "#1a1a1a",
    borderRadius: "1rem",
    padding: "1.25rem 1.5rem",
    display: "flex",
    flexDirection: "column",
    gap: "1rem"
  }}>
        <p style={{
    color: "#e5e5e5",
    fontSize: "1rem",
    lineHeight: 1.6,
    margin: 0,
    fontFamily: "inherit"
  }}>
          {prompt}
        </p>
        <div style={{
    display: "flex",
    justifyContent: "flex-end"
  }}>
          <button onClick={copy} style={{
    backgroundColor: copied ? "#3d8a5b" : "var(--aspen-evergreen, #486A58)",
    color: "#fff",
    border: "none",
    borderRadius: "0.375rem",
    padding: "0.25rem 0.6rem",
    fontSize: "0.7rem",
    fontWeight: 600,
    cursor: "pointer",
    transition: "background-color 0.2s"
  }}>
            {copied ? "Copied!" : "Copy prompt"}
          </button>
        </div>
      </div>
    </div>;
};

FLUX.2 can populate empty spaces with realistic people — adding visitors to restaurants, students to classrooms, or individuals into architectural scenes. Describe the people, their actions, and how they interact with the environment.

## Examples

### Add visitors to restaurant

<Columns cols={2}>
  <img src="https://cdn.sanity.io/images/2gpum2i6/production/a75b32aa2492c4984d48c350ded809ee63081a52-1549x1033.jpg" alt="Empty restaurant" />

  <img src="https://cdn.sanity.io/images/2gpum2i6/production/986306f6dbdcff4d46808d1f0c8873a6076211f5-1440x960.png" alt="Restaurant with visitors" />
</Columns>

<PromptDisplay prompt="Add visitors to the restaurant in the image. Some should be sitting and eating, and some walking with slight motion blur, to make the place feel full and lively" />

### Add person to architectural space

<Columns cols={2}>
  <img src="https://cdn.sanity.io/images/2gpum2i6/production/9d66e3848dc66219e570d019a2aa215f15e88ac5-496x736.png" alt="Empty architectural space" />

  <img src="https://cdn.sanity.io/images/2gpum2i6/production/df2164bb1884ae3037a89355901f63d36f7dba30-496x736.png" alt="Person added to space" />
</Columns>

<PromptDisplay prompt="Add to the space beneath the glass ceiling a man wearing wide khaki jeans and an oversized denim jacket, standing with his back to the camera and looking upward." />

### Populate an auditorium

<Columns cols={2}>
  <img src="https://cdn.sanity.io/images/2gpum2i6/production/55fffb0d206b64f043184380f13f723b24c692a3-2902x2073.jpg" alt="Empty auditorium" />

  <img src="https://cdn.sanity.io/images/2gpum2i6/production/f0ac60a9e6b0eff6e92c24bbc4057cd942d2e5f3-1440x1024.png" alt="Auditorium with people" />
</Columns>

<PromptDisplay prompt="Add people throughout the auditorium from image 1, some sitting and talking, some walking between the rows, add natural motion blur to a few individuals to create a sense of activity, keep the original structure exactly as in the image" />

### Add students to classroom

<Columns cols={2}>
  <img src="https://cdn.sanity.io/images/2gpum2i6/production/55fffb0d206b64f043184380f13f723b24c692a3-2902x2073.jpg" alt="Empty classroom chairs" />

  <img src="https://cdn.sanity.io/images/2gpum2i6/production/8d21fd58de3e0770d4b3d8ef9c1dac8f6f0f5229-1440x1024.png" alt="Students sitting and waving" />
</Columns>

<PromptDisplay prompt="Add many students sitting on the chairs, all waving and looking toward the camera." />
