> For the complete documentation index, see [llms.txt](https://kierandev.gitbook.io/documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://kierandev.gitbook.io/documentation/tmc-resources/clear-props/config-options.md).

# Config Options

## Progress Bar

```lua
Config.ProgressBarOptions = {
    -- Title of the progress bar
    Title = "Clearing Props",
    -- Subutitle of the progress bar
    SubTitle = "Removing attached items...",
    -- How long the progressbar is
    Duration = 3500,
    -- if the player can cancel the progress bar
    canCancel = true,
    -- if the player should be able to move whilst in the progress bar
    disableMovement = false,
    -- If it should disable car movement if done inside of a vehicle
    disableCarMovement = false,
    -- If it should disable the player moving there mouse
    disableMouse = false,
    -- If it should stop comabat
    disableCombat = true,
    -- If the player should be able to ragdoll and cancel the progress bar
    ragdollCancel = false,
}
```

## Radial Options

```lua
Config.RadialOptions = {
    -- The display name of the radial menu option
    DisplayName = "Clear Props",
    -- The icon to use for the radial menu option (Font Awesome icons)
    Icon = 'broom',
    -- The icon category for the radial menu option (Font Awesome categories)
    IconCategory = 'duotone',

}
```

## Animation

```lua
Config.Animation = {
    -- Anim Dict
    AnimDict = 'missmic4',
    -- Anim Name
    AnimName = 'michael_tux_fidget',
    -- Anim Flag
    AnimFlag = 49
}
```

## Notify

```lua
Config.Notify = {
    Success = {
        -- Message of the notification
        Message = "Successfully Cleared Random Props.",
        -- Type of the notification (success, error, info)
        Type = "info",
        -- Duration of the notification in milliseconds
        Duration = 5000,
    },
    Fail = {
        -- Message of the notification
        Message = "Cancelled Clearing Props.",
        -- Type of the notification (success, error, info)
        Type = "info",
        -- Duration of the notification in milliseconds
        Duration = 5000,
    },
}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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://kierandev.gitbook.io/documentation/tmc-resources/clear-props/config-options.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.
