# Exports

## Client

<pre class="language-lua"><code class="lang-lua">-- Will return the xp of the calling client.
<strong>exports.randol_bundles:GetFemaleRep()
</strong>
-- Will return the level of the calling client.
exports.randol_bundles:GetMyLevel()

-- Will return true or false if the calling client is a verified female.
exports.randol_bundles:IsFemale()
</code></pre>

## Server

```lua
-- Will return true or false if the src provided is a verified female.
local isFemale = exports.randol_bundles:IsFemale(source)
print(isFemale)
```
