Scenes are how a Unity game is split into pieces: menus, levels, a persistent manager layer. Saving is how progress survives closing the game. The two meet constantly, because every scene change asks the same question: which objects should survive it, and where does their state live? Getting that structure right early keeps a project from turning into a tangle of static variables.