# Attach Objects

## Athena.player.emit.objectAttach

Allows users to have objects attached to their players. They can be temporarily added or added for the entire play session.

*Accessible on Server Side*

## Example

```typescript
const attachable: IAttachable = {
    model: 'prop_tool_fireaxe',
    bone: 57005,
    pos: {
        x: 0.1,
        y: -0.1,
        z: -0.02,
    },
    rot: {
        x: 80,
        y: 0,
        z: 170,
    },
};

Athena.player.emit.objectAttach(player, attachable, 5000);
```

![](https://i.imgur.com/TucLJqC.png)


---

# Agent Instructions: 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://stuykgaming.gitbook.io/old/player/objectattach.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.
