# ReplicatedStorage

ReplicatedStorage : `Instance`

## Overview

ReplicatedStorage는 서버와 클라이언트가 공동으로 사용하는 데이터나 스크립트를 보관하기 위한 저장소로, ModuleScript, RemoteEvent, RemoteFunction 등 양측에서 참조해야 하는 객체를 저장하기에 적합합니다.

이 컨테이너에 저장된 객체는 자동으로 클라이언트에 복제되며, 서버에서 변경한 내용은 클라이언트에도 반영됩니다. 반면, 클라이언트에서 변경한 내용은 서버로 반영되지 않습니다.

서버 측 Script와 달리, LocalScript는 ReplicatedStorage에 있어도 실행되지 않으며, StarterPlayerScripts와 같은 유효한 위치에 배치되어야 실행됩니다.

이 컨테이너에 위치한 ModuleScript는 서버 스크립트와 클라이언트 스크립트 양쪽에서 require()를 통해 로드 및 실행할 수 있으며, 이를 통해 공용 모듈 코드를 효율적으로 관리하고 재사용할 수 있습니다.

## 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/replicatedstorage.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.
