# Aimbot V3 Methods - Documentation

## Load

```xml
<void> ExunysDeveloperAimbot.Load(<void>)
```

Loads the module in the environment.\
\ <mark style="color:red;">**Note**</mark>: You cannot call this function twice.\
\
Faster alternative, equivalent to `ExunysDeveloperAimbot()` which uses a **\_\_call** metamethod that proxies this method.

## Restart

```xml
<void> ExunysDeveloperAimbot.Restart(<void>)
```

Performs a quick disconnect & reconnect on every utility closure.

## GetClosestPlayer

```xml
<Player> ExunysDeveloperAimbot.GetClosestPlayer(<void>)
```

Returns the closest **Player** using the already applied settings from the environment for the lock options (example - *FOV Radius*, *TeamCheck*, *WallCheck* etc...).

This is a proxy method from the same function that the module uses to lock onto players.

## Exit

```xml
<void> ExunysDeveloperAimbot:Exit(<void>)
```

Disconnects every connection, removes the rendered FOV Circle and unloads the module from the script executor's environment. Technically, this method is used for unloading the module.

## Blacklist

```xml
<void> ExunysDeveloperAimbot:Blacklist(<string> Player Name)
```

Adds the parsed player name to the module's blacklist table.\
\
All of the players that are blacklisted get ignored by the module and your camera won't lock on them upon activating the aimbot.\
\
The parsed name of the player can be shortened and the casing of the letters do not matter. See source [here](https://github.com/Exunys/Aimbot-V3/blob/e5ac6f8da1f17afd0151b3be730c02c83cfea8b0/src/Aimbot.lua#L149-L161).

## Whitelist

```xml
<void> ExunysDeveloperAimbot:Whitelist(<string> Player Name)
```

Removes the parsed player name from the module's blacklist table.\
\
This method throws an error if the player is not blacklisted.\
\
The parsed name of the player can be shortened and the casing of the letters do not matter. See source [here](https://github.com/Exunys/Aimbot-V3/blob/e5ac6f8da1f17afd0151b3be730c02c83cfea8b0/src/Aimbot.lua#L149-L161).


---

# 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://exunys.gitbook.io/aimbot-v3-documentation/aimbot-v3-methods-documentation.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.
