> For the complete documentation index, see [llms.txt](https://lt-studios.gitbook.io/lt-studios/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://lt-studios.gitbook.io/lt-studios/assets/editor/user-guide/how-to-change-the-language.md).

# How to change the language

To change the script's language, do the following:

1. Navigate to `shared/config.lua`
2. Head to the `Language` property.
3. Change it to whatever language you'd want by the name in the `locales` folder.

### Example Usage

If you want **Hebrew**, which is a Right to Left language. You can change it to the following:

```lua
-- The language that will be shown in the 10system menu.
Language = {
  direction = "rtl", -- 'ltr' or 'rtl', Left to right or Right to left.
  locale = "he"
},
```

### Default Values

If you want to take it back to English after you've changed it and you're not sure how. These are the default values:

```lua
-- The language that will be shown in the 10system menu.
Language = {
  direction = "ltr", -- 'ltr' or 'rtl', Left to right or Right to left.
  locale = "en"
},
```
