# SUserProfile

## Index

### Properties Index

| Property Name                                                         |
| --------------------------------------------------------------------- |
| string [**UserName** ](#username)`get`                                |
| string [**Title** ](#title)`get`                                      |
| string [**RealName** ](#realname)`get`                                |
| string [**Gender** ](#gender)`get`                                    |
| string [**Since** ](#since)`get`                                      |
| string [**Country** ](#country)`get`                                  |
| string [**City** ](#city)`get`                                        |
| int [**SocialGold** ](#socialgold)`get`                               |
| int [**SocialSilver** ](#socialsilver)`get`                           |
| int [**SocialFlower** ](#socialflower)`get`                           |
| string [**Interests** ](#interests)`get`                              |
| string [**About** ](#about)`get`                                      |
| SSocialMedia\[] [**SocialMediaProfiles** ](#socialmediaprofiles)`get` |

## Properties

### UserName

string **UserName** `get`

*Get player profile's Username*

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

```lua
userName = Space.Profile.ActivePlayerProfile.Username
```

{% endtab %}
{% endtabs %}

### Title

string **Title** `get`

*Get player profile's Title*

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

```lua
userTitle = Space.Profile.ActivePlayerProfile.Title
```

{% endtab %}
{% endtabs %}

### RealName

string **RealName** `get`

*Get player profile's Real Name*

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

```lua
userRealName = Space.Profile.ActivePlayerProfile.RealName
```

{% endtab %}
{% endtabs %}

### Gender

string **Gender** `get`

*Get player profile's Gender*

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

```lua
userGender = Space.Profile.ActivePlayerProfile.Gender
```

{% endtab %}
{% endtabs %}

### Since

string **Since** `get`

*Get player profile's Since*

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

```lua
userSince = Space.Profile.ActivePlayerProfile.Since
```

{% endtab %}
{% endtabs %}

### Country

string **Country** `get`

*Get player profile's Country*

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

```lua
userCountry = Space.Profile.ActivePlayerProfile.Country
```

{% endtab %}
{% endtabs %}

### City

string **City** `get`

*Get player profile's City*

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

```lua
userCity = Space.Profile.ActivePlayerProfile.City
```

{% endtab %}
{% endtabs %}

### SocialGold

int **SocialGold** `get`

*Get player profile's Gold Badge count*

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

```lua
userSocialGold = Space.Profile.ActivePlayerProfile.SocialGold
```

{% endtab %}
{% endtabs %}

### SocialSilver

int **SocialSilver** `get`

*Get player profile's Silver Badge count*

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

```lua
userSocialSilver = Space.Profile.ActivePlayerProfile.SocialSilver
```

{% endtab %}
{% endtabs %}

### SocialFlower

int **SocialFlower** `get`

*Get player profile's Flower count*

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

```lua
userSocialFlower = Space.Profile.ActivePlayerProfile.SocialFlower
```

{% endtab %}
{% endtabs %}

### Interests

string **Interests** `get`

*Get player profile's Interests*

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

```lua
userInterests = Space.Profile.ActivePlayerProfile.Interests
```

{% endtab %}
{% endtabs %}

### About

string **About** `get`

*Get player profile's About*

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

```lua
userAbout = Space.Profile.ActivePlayerProfile.About
```

{% endtab %}
{% endtabs %}

### SocialMediaProfiles

[SSocialMedia](https://docs.breakroom.tech/scripting/client-scripting-api-reference/types/ssocialmedia)\[] **SocialMediaProfiles** `get`

*Get player profile's Social Media Profiles*

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

```lua
tableOfSSocialMedia = Space.Profile.ActivePlayerProfile.SocialMediaProfiles
```

{% endtab %}
{% endtabs %}
