Iconic-Scripts | Docs
  • SCRIPTS
    • iconic-rope
      • Config
      • Item creation
        • Tgiann_inventory
        • ox_inventory
    • Iconic-Minigames
      • Tutorial
    • Iconic-AdvancedGarges
      • Installation Guide
      • Fixing Categories
      • Exports
        • Client
          • Classes
          • Vehicle Stats
          • Vehicle Category
Powered by GitBook
On this page
  1. SCRIPTS
  2. iconic-rope

Item creation

How to create an item

Tgiann_inventory


```lua
rope = {
    name = "rope",
    label = 'Rope',
    weight = 220,
    type = "item", 
    image = "rope.png",
    unique = false,
    useable = true,
    shouldClose = true, 
    description = "It's a Rope!",
    client = {
        export = 'iconic_rope.rope' -- Script Name . Function name
    },
}
```
PreviousConfigNextTgiann_inventory

Last updated 3 months ago