> For the complete documentation index, see [llms.txt](https://wiki.thescriptersguild.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://wiki.thescriptersguild.com/knowledge/scripting/guides-and-info/traits-players/traits.md).

# Traits

## Traits

### Specific Traits

#### Prevent Weapon Firing

The Prevent Weapon Firing trait prevents players from firing weapons but also disables melee attacks, even if the player is using a non-melee weapon like a pistol.

#### Active Camo VFX

The active camo VFX trait can remove player outlines, with a minimum scalar of 0.5 needed for the effect to take place. However, at this scalar, players appear translucent and ghost-like. The scalar threshold for fully opaque appearance is dependent on lighting. Players must also be aware that there is a threshold of speed at which the active camo effect goes away and outlines will reappear. Furthermore, having the camo trait tells bots not to sprint.

### Non-Trait-Specific Notes

#### Duplicates of traits that use scalars will apply multiplicatively

When multiple trait sets are applied to a player and they contain the same trait that uses a scalar, the trait is applied multiplicatively. For example, if a player has a Movement Speed trait with a scalar of 2 and another with a scalar of 0.5, the total speed of the player will be scalar 1 (2 x 0.5 = 1). However, if a player has a Jump Height trait with a scalar of 4 and another with a scalar of 0, the total jump height of the player will be scalar 0 (4 x 0 = 0). In the case of a Damage Resistance scalar of 3 and another with a scalar of 4, the total damage resistance scalar of the player will be 12 (3 x 4 = 12).

**Contributors**\
Captain Punch\
DeceitfulEcho


---

# 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, and the optional `goal` query parameter:

```
GET https://wiki.thescriptersguild.com/knowledge/scripting/guides-and-info/traits-players/traits.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
