> For the complete documentation index, see [llms.txt](https://docs.greenhellmodding.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.greenhellmodding.com/client-code-examples/accessing-the-player-instance.md).

# Accessing the player instance

In order to access the local player instance, we use the `.Get()` method from the Player class which returns the instance of the local player.

```csharp
Player player = Player.Get();
```
