# ServerScriptService

ServerScriptService : `Instance`

## Overview

ServerScriptService는 서버 측 Script 및 ModuleScript 전용으로 사용되는 저장소로, 이 컨테이너에 포함된 객체는 클라이언트로 복제되지 않기 때문에 보안이 중요한 서버 로직을 안전하게 격리하고 관리하는 데 적합합니다.

게임 중 삽입되는 몬스터, 아이템 등의 오브젝트에 스크립트를 포함시켜야 할 경우에는 해당 오브젝트와 스크립트를 함께 ServerStorage에 보관하는 것이 좋습니다. ServerStorage 역시 서버 전용 저장소이지만, 이 안의 Script는 자동으로 실행되지 않습니다.

한편, 서버와 클라이언트 양쪽에서 접근해야 하는 공용 자산이나 ModuleScript는 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/serverscriptservice.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.
