# ServerStorage

ServerStorage : `Instance`

## Overview

ServerStorage는 서버 전용 저장소로, 이 컨테이너에 포함된 객체는 클라이언트로 복제되지 않으며, LocalScript에서는 접근할 수 없습니다.

서버에서만 사용되는 리소스를 ServerStorage에 보관하면, 클라이언트 접속 시 불필요한 네트워크 전송을 줄일 수 있어 성능 최적화에 효과적입니다.

단, Script는 ServerStorage 내에 있어도 실행되지 않으므로, 서버에서 실행되어야 하는 스크립트는 ServerScriptService에 보관해야 합니다. 반면, ModuleScript는 예외적으로 ServerStorage에 두어도 require()를 통해 서버에서 불러와 실행할 수 있습니다.

서버와 클라이언트가 공통으로 접근해야 하는 객체는 ReplicatedStorage에 보관하는 것이 적합합니다.

## Properties

## Methods

## Events


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.overdare.com/korean/development/api-reference/classes/serverstorage.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
