> For the complete documentation index, see [llms.txt](https://synilla.gitbook.io/essentials/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://synilla.gitbook.io/essentials/reference/functions/players/isplayerverified.md).

# IsPlayerVerified

**Example Usage:**

{% tabs %}
{% tab title="Script" %}

```lua
-- Getting ReplicatedStorage and Players service
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local Players = game:GetService("Players")

-- Referencing Essentials
local Essentials = require(ReplicatedStorage.Essentials)

-- On the player added event, we add a function that checks if the player is ID verified or not, if they aren't, we kick them with the following reason
Players.PlayerAdded:Connect(function(player: Player)
	if not Essentials.IsPlayerVerified(player) then
		player:Kick("You do not have your ID verified")
	end
end)
```

{% endtab %}

{% tab title="Output" %}

```
Is ID-Verified:
Essentials: Femtrs is ID Verified

Is Not ID-Verified:
Essentials: Femtrs is not ID Verified
```

{% endtab %}
{% endtabs %}

### Parameters

#### player: [Player](https://create.roblox.com/docs/reference/engine/classes/Player)

The specified player object.

#### debugging: [bool](https://create.roblox.com/docs/luau/booleans)

Sends an output log to your output window and developer console.

### References

#### [Player](https://create.roblox.com/docs/reference/engine/classes/Player)

#### [PlayerAdded](https://create.roblox.com/docs/reference/engine/classes/Players#PlayerAdded)

#### [Player:IsVerified()](https://create.roblox.com/docs/reference/engine/classes/Player#IsVerified)


---

# 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:

```
GET https://synilla.gitbook.io/essentials/reference/functions/players/isplayerverified.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.
