> For the complete documentation index, see [llms.txt](https://api.raftmodding.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://api.raftmodding.com/modding-examples/back-soon.md).

# Accessing the player instance

In order to access the local player instance, we use the `GetLocalPlayer` method from the `RAPI` class it return the instance of the player `Network_Player`

```csharp
Network_Player player = RAPI.GetLocalPlayer();
```
