> ## Documentation Index
> Fetch the complete documentation index at: https://toolkit.victorgamestudio.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Clothing Items

> Complete reference of all available clothing items in Poly Plaza

## Using Clothing Items

Characters in Poly Plaza can be customized using the `EquipCloth()` method. Here's the basic syntax:

```lua theme={null}
character:EquipCloth({
    itemClass = "BP_ClothingItem_ID"
})
```

## Top

### Blue denim jacket

<Card>
  <img src="https://mintcdn.com/victorgamestudio/hsS-Zb6J5qQ-7BnB/images/torso_default.png?fit=max&auto=format&n=hsS-Zb6J5qQ-7BnB&q=85&s=8457bf1f4bf23633f00d0c2fd75c22fb" alt="Blue denim jacket" width="886" height="660" data-path="images/torso_default.png" />

  ```lua theme={null}
  npc:EquipCloth({
      itemClass = "/Script/Engine.Blueprint'/PolyPlaza_Content/Blueprints/Clothes/Free/BP_DefaultTop.BP_DefaultTop_C'"
  })
  ```
</Card>

### Grey business shirt

<Card>
  <img src="https://mintcdn.com/victorgamestudio/hsS-Zb6J5qQ-7BnB/images/grey_business_shirt.png?fit=max&auto=format&n=hsS-Zb6J5qQ-7BnB&q=85&s=ab92e686419d0371825bb9903301d557" alt="Grey business shirt" width="795" height="608" data-path="images/grey_business_shirt.png" />

  ```lua theme={null}
  npc:EquipCloth({
      itemClass = "/Script/Engine.Blueprint'/PolyPlaza_Content/Blueprints/Clothes/Free/Grey_Business_Shirt/Common_grey_business_shirt.Common_grey_business_shirt_C'"
  })
  ```
</Card>

### Coroner vest

<Card>
  <img src="https://mintcdn.com/victorgamestudio/hsS-Zb6J5qQ-7BnB/images/coroner_vest.png?fit=max&auto=format&n=hsS-Zb6J5qQ-7BnB&q=85&s=a29c62bee4f78a4f5eeabe72d1e6f7c3" alt="Coroner vest" width="743" height="606" data-path="images/coroner_vest.png" />

  ```lua theme={null}
  npc:EquipCloth({
      itemClass = "/Script/Engine.Blueprint'/PolyPlaza_Content/Blueprints/Clothes/Free/Coroner_Vest/Common_coroner_vest.Common_coroner_vest_C'"
  })
  ```
</Card>

### Green Tshirt

<Card>
  <img src="https://mintcdn.com/victorgamestudio/hsS-Zb6J5qQ-7BnB/images/green_tshirt.png?fit=max&auto=format&n=hsS-Zb6J5qQ-7BnB&q=85&s=1781de3a3ecb8f538f92ad5f80060502" alt="Green tshirt" width="792" height="600" data-path="images/green_tshirt.png" />

  ```lua theme={null}
  npc:EquipCloth({
      itemClass = "/Script/Engine.Blueprint'/PolyPlaza_Content/Blueprints/Clothes/Premium/Tourist/BP_Tourist_Top.BP_Tourist_Top_C'"
  })
  ```
</Card>

### Farmer shirt

<Card>
  <img src="https://mintcdn.com/victorgamestudio/hsS-Zb6J5qQ-7BnB/images/farmer_shirt.png?fit=max&auto=format&n=hsS-Zb6J5qQ-7BnB&q=85&s=6060092b52ba7303b06ee2b6a9a2d6dc" alt="Farmer shirt" width="876" height="620" data-path="images/farmer_shirt.png" />

  ```lua theme={null}
  npc:EquipCloth({
      itemClass = "/Script/Engine.Blueprint'/PolyPlaza_Content/Blueprints/Clothes/Premium/Sherif/BP_LegendaryFarmerShirt.BP_LegendaryFarmerShirt_C'"
  })
  ```
</Card>

### Sherif vest

<Card>
  <img src="https://mintcdn.com/victorgamestudio/hsS-Zb6J5qQ-7BnB/images/sherif_vest.png?fit=max&auto=format&n=hsS-Zb6J5qQ-7BnB&q=85&s=19a31b88be5fe63922bcfbe7bfcd6772" alt="Sherif vest" width="666" height="566" data-path="images/sherif_vest.png" />

  ```lua theme={null}
  npc:EquipCloth({
      itemClass = "/Script/Engine.Blueprint'/PolyPlaza_Content/Blueprints/Clothes/Premium/Sherif/BP_LegendarySherifTop.BP_LegendarySherifTop_C'"
  })
  ```
</Card>

### Business vest

<Card>
  <img src="https://mintcdn.com/victorgamestudio/hsS-Zb6J5qQ-7BnB/images/business_vest.png?fit=max&auto=format&n=hsS-Zb6J5qQ-7BnB&q=85&s=54ebbbc94d956283254b9ed42ded6f49" alt="Business vest" width="790" height="577" data-path="images/business_vest.png" />

  ```lua theme={null}
  npc:EquipCloth({
      itemClass = "/Script/Engine.Blueprint'/PolyPlaza_Content/Blueprints/Clothes/Premium/Sherif/BP_LegendaryBusinessTop.BP_LegendaryBusinessTop_C'"
  })
  ```
</Card>

### Lawyer vest

<Card>
  <img src="https://mintcdn.com/victorgamestudio/hsS-Zb6J5qQ-7BnB/images/lawyer_vest.png?fit=max&auto=format&n=hsS-Zb6J5qQ-7BnB&q=85&s=2001d2067426260457709e8eba34fe1e" alt="Lawyer vest" width="717" height="620" data-path="images/lawyer_vest.png" />

  ```lua theme={null}
  npc:EquipCloth({
      itemClass = "/Script/Engine.Blueprint'/PolyPlaza_Content/Blueprints/Clothes/Premium/Firefighter/BP_LengendaryLawyerVest.BP_LengendaryLawyerVest_C'"
  })
  ```
</Card>

### Firefighter vest

<Card>
  <img src="https://mintcdn.com/victorgamestudio/hsS-Zb6J5qQ-7BnB/images/firefighter_vest.png?fit=max&auto=format&n=hsS-Zb6J5qQ-7BnB&q=85&s=3edc480d8fe77061479cce86bf9f7ab7" alt="Firefighter vest" width="857" height="617" data-path="images/firefighter_vest.png" />

  ```lua theme={null}
  npc:EquipCloth({
      itemClass = "/Script/Engine.Blueprint'/PolyPlaza_Content/Blueprints/Clothes/Premium/Firefighter/BP_LegendaryFirefighter_Top.BP_LegendaryFirefighter_Top_C'"
  })
  ```
</Card>

### FIB vest

<Card>
  <img src="https://mintcdn.com/victorgamestudio/hsS-Zb6J5qQ-7BnB/images/fib_vest.png?fit=max&auto=format&n=hsS-Zb6J5qQ-7BnB&q=85&s=d591826d4844ee4a794dce31625d7e51" alt="FIB vest" width="788" height="593" data-path="images/fib_vest.png" />

  ```lua theme={null}
  npc:EquipCloth({
      itemClass = "/Script/Engine.Blueprint'/PolyPlaza_Content/Blueprints/Clothes/Premium/Firefighter/BP_EpicFIBVest.BP_EpicFIBVest_C'"
  })
  ```
</Card>

## Bottom

### Blue jean

<Card>
  <img src="https://mintcdn.com/victorgamestudio/hsS-Zb6J5qQ-7BnB/images/blue_jean.png?fit=max&auto=format&n=hsS-Zb6J5qQ-7BnB&q=85&s=28a969750b58c51716513d55321de676" alt="Blue jean" width="696" height="522" data-path="images/blue_jean.png" />

  ```lua theme={null}
  npc:EquipCloth({
      itemClass = "/Script/Engine.Blueprint'/PolyPlaza_Content/Blueprints/Clothes/Free/BP_DefaultBottom.BP_DefaultBottom_C'"
  })
  ```
</Card>

### Business pants

<Card>
  <img src="https://mintcdn.com/victorgamestudio/hsS-Zb6J5qQ-7BnB/images/biz_pants.png?fit=max&auto=format&n=hsS-Zb6J5qQ-7BnB&q=85&s=128343856067aaa914c116f96396b5cc" alt="Business pants" width="713" height="492" data-path="images/biz_pants.png" />

  ```lua theme={null}
  npc:EquipCloth({
      itemClass = "/Script/Engine.Blueprint'/PolyPlaza_Content/Blueprints/Clothes/Premium/Sherif/BP_LegendaryBusinessPants.BP_LegendaryBusinessPants_C'"
  })
  ```
</Card>

### Farmer pants

<Card>
  <img src="https://mintcdn.com/victorgamestudio/hsS-Zb6J5qQ-7BnB/images/farmer_pants.png?fit=max&auto=format&n=hsS-Zb6J5qQ-7BnB&q=85&s=bc54ac4770f142c287f500ef53215621" alt="Farmer pants" width="611" height="496" data-path="images/farmer_pants.png" />

  ```lua theme={null}
  npc:EquipCloth({
      itemClass = "/Script/Engine.Blueprint'/PolyPlaza_Content/Blueprints/Clothes/Premium/Sherif/BP_LegendaryFarmerPants.BP_LegendaryFarmerPants_C'"
  })
  ```
</Card>

### Sherif pants

<Card>
  <img src="https://mintcdn.com/victorgamestudio/hsS-Zb6J5qQ-7BnB/images/sherif_pants.png?fit=max&auto=format&n=hsS-Zb6J5qQ-7BnB&q=85&s=a26b0e53ed3d491367039d9765c0cb64" alt="Sherif pants" width="442" height="370" data-path="images/sherif_pants.png" />

  ```lua theme={null}
  npc:EquipCloth({
      itemClass = "/Script/Engine.Blueprint'/PolyPlaza_Content/Blueprints/Clothes/Premium/Sherif/BP_LegendarySherifBottom.BP_LegendarySherifBottom_C'"
  })
  ```
</Card>

### Red short

<Card>
  <img src="https://mintcdn.com/victorgamestudio/hsS-Zb6J5qQ-7BnB/images/red_short.png?fit=max&auto=format&n=hsS-Zb6J5qQ-7BnB&q=85&s=8110248e0020d5430e8953aaa42a9972" alt="Red short" width="407" height="346" data-path="images/red_short.png" />

  ```lua theme={null}
  npc:EquipCloth({
      itemClass = "/Script/Engine.Blueprint'/PolyPlaza_Content/Blueprints/Clothes/Premium/Tourist/BP_Tourist_Bottom.BP_Tourist_Bottom_C'"
  })
  ```
</Card>

### FIB pants

<Card>
  <img src="https://mintcdn.com/victorgamestudio/hsS-Zb6J5qQ-7BnB/images/fib_pants.png?fit=max&auto=format&n=hsS-Zb6J5qQ-7BnB&q=85&s=db424ed574585951d9b2315e4fb0e151" alt="FIB Pants" width="421" height="377" data-path="images/fib_pants.png" />

  ```lua theme={null}
  npc:EquipCloth({
      itemClass = "/Script/Engine.Blueprint'/PolyPlaza_Content/Blueprints/Clothes/Premium/Firefighter/BP_EpicFIBPants.BP_EpicFIBPants_C'"
  })
  ```
</Card>

### Firefighter pants

<Card>
  <img src="https://mintcdn.com/victorgamestudio/hsS-Zb6J5qQ-7BnB/images/firefighter_pants.png?fit=max&auto=format&n=hsS-Zb6J5qQ-7BnB&q=85&s=964b168fa291020d349841ce1ece8fb7" alt="Firefighter Pants" width="455" height="371" data-path="images/firefighter_pants.png" />

  ```lua theme={null}
  npc:EquipCloth({
      itemClass = "/Script/Engine.Blueprint'/PolyPlaza_Content/Blueprints/Clothes/Premium/Firefighter/BP_LegendaryFirefighterPants.BP_LegendaryFirefighterPants_C'"
  })
  ```
</Card>

<Tip>
  New clothes are coming soon!
</Tip>

## See Also

<CardGroup cols={2}>
  <Card title="Youtube tutorials" icon="youtube" href="https://www.youtube.com/@VictorsAdventure">
    Learn more about Poly Plaza directly from it's creator!
  </Card>

  <Card title="Character System" icon="user" href="/objects/character">
    Learn more about character customization
  </Card>
</CardGroup>
