> For the complete documentation index, see [llms.txt](https://grootdev.gitbook.io/groot-development/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://grootdev.gitbook.io/groot-development/assets/g-pausemenu/features-guide/rules.md).

# Rules

Follow the steps below to create a new rule category or edit an existing one:

{% hint style="info" %}
`g-pausemenu -> src -> shared ->`` `<mark style="color:green;">`config_rules.lua`</mark>
{% endhint %}

```lua

Config.Rules  = {
  {
     title = "Multiple Characters",
     category = "EX: GENERAL RULES", --  new category name = new category
     rules = {
       "Rule 1",
       "Rule 2",
       "More",
       "More",  
     },
  },
}

```
