A powerful, expandable, and optimized wheelchair system for QBCore servers. Includes spawning, picking up, key-sharing, multiple inventory systems, and multiple target systems.
Perfect for immersive hospital RP, accessibility, EMS roleplay, and more.
-
🦽 Spawn a Wheelchair using a usable item
-
🎯 Supports both major target systems
ox_targetqb-target
-
📦 Supports both major inventory systems
ox_inventoryqb-inventory
-
🔑 Share Wheelchair Keys with nearby players
-
🧹 Safe cleanup on resource stop
-
⛽ Wheelchairs spawn with configurable fuel
-
🚫 Prevent pickup if someone is seated
-
🧍 Distance-based player detection
-
🔔 Clean notifications and easy configuration
-
🧩 Fully synced between all players
| Dependency | Required | Notes |
|---|---|---|
| QBCore Framework | ✅ | Core required |
| ox_target or qb-target | Must choose one | |
| ox_inventory or qb-inventory | Must choose one | |
| vehiclekeys script | For key sharing |
ensure dj_wheelchair
This script supports both QB-Inventory and OX Inventory.
Choose your system in Config.lua:
Config.Inventory = 'ox_inventory'Item setup — add to ox_inventory/data/items.lua:
['wheelchair'] = {
label = 'Wheelchair',
weight = 5000,
stack = false,
close = true,
consume = 0,
client = {
export = 'dj_wheelchair.spawnWheelchair'
}
}Config.Inventory = 'qb'Add item to qb-core/shared/items.lua:
["wheelchair"] = {
"name": "wheelchair",
"label": "Wheelchair",
"weight": 5000,
"type": "item",
"image": "wheelchair.png",
"unique": true,
"useable": true,
"shouldClose": true,
"description": "A foldable wheelchair."
},This script supports both:
Config.Target = 'ox_target'Config.Target = 'qb-target'Script automatically builds the correct actions for whichever system you choose.
Includes:
- 🛒 Pickup Wheelchair
- 🔑 Share Keys
Config.ItemName = 'wheelchair'
Config.WheelchairModel = 'prop_wheelchair_01'
Config.SpawnDistance = 2.0
Config.ShareKeysDistance = 3.0
Config.DefaultFuel = 100
Config.Target = 'qb-target' -- or 'ox_target'
Config.Inventory = 'qb' -- or 'ox_inventory'- Removes item from inventory
- Spawns a wheelchair in front of player
- Gives keys automatically
- Target options appear
- Pick up wheelchair
- Share keys with nearby players
- Shows list of players within range
- Select player using input dialog
- Keys get transferred via vehiclekeys
Script by: DJONTOP_143 If this script helps your server, please ⭐ star the GitHub repo!
Wheelchair Model: 🔗 https://github.com/AndreIakko/wheelchair Huge thanks for making the model available to the community ❤️
Free to use and modify for personal/server use.