> For the complete documentation index, see [llms.txt](https://fast-studios.gitbook.io/press-e/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://fast-studios.gitbook.io/press-e/manual/scripting.md).

# Scripting

The goal of our system is to **minimize the need for scripting** so that simple changes and effects can be done with a few clicks in the **Inspector**.\
However, for more advanced needs (such as **runtime** changes) clicks alone aren’t enough. In this section you’ll find methods and variables that can be useful in code.

## Getting Started

To begin, in any script where you want to interact with the system, **import the `FastStudios` namespace**:

```csharp
using FastStudios;

public class YourClass : MonoBehaviour
{
    // You can now use this system’s scripts in your code.
}
```
