A FiveM resource that adds manual transmission functionality to vehicles, allowing players to manually shift gears and use a clutch system.
- Manual and automatic transmission modes
- Clutch system support
- Customizable UI for gear display
- RPM warning system
- RPM cut limit
- Integration with Wizard Mileage script
- Configurable key bindings
- Chat notifications for gear changes
- None required
- Optional: Wizard Mileage for mileage tracking and clutch wear integration
- Download the latest release
- Extract the
wizard-manualtransmission
folder to your server's resources directory - Add
ensure wizard-manualtransmission
to your server.cfg - Restart your server
All configuration options are available in config.lua
:
lua
Config.ShowUI = true -- Enable/disable gear display UI
Config.UIloc = "custom" -- UI position: "top-right", "top-left", "custom"
Config.CustomUILoc = {top = 95, right = 46.7} -- Custom UI position (percentage)
lua
Config.GearBoxMode = "gearboxmode" -- Command to toggle transmission mode
Config.WizardMileage = true -- Enable Wizard Mileage integration
Config.ManualClutch = true -- Enable/disable clutch requirement
Config.RpmCut = true -- Enable Rpm Cut system
Config.RpmCutTime = 130 -- Rpm cut limit timer, lower = more beautiful sound (110 - 200)
Config.RpmCutMax = 1.0 -- The maximum rpm when using Rpm Cut timer (0.0 - 1.0)
Config.RpmCutMin = 0.8 -- The minimum rpm when using Rpm Cut timer (0.0 - 1.0)
Config.SendChatText = false -- Enable/disable gear change notifications
lua
Config.ShiftUp = 188 -- Key for shifting up (Arrow up)
Config.ShiftDown = 187 -- Key for shifting down (Arrow down)
Config.ClutchKey = 21 -- Key for clutch (Left Shift)
- Use
/gearboxmode
to toggle between manual and automatic transmission - In manual mode:
- Press Arrow Up to shift up
- Press Arrow Down to shift down
- Hold Left Shift for clutch (if enabled)
The gear display shows:
- Current gear number
- Warning indication when RPM is too high
- Neutral (N) when stationary
- Reverse (R) when in reverse
wizard-transmission/
├── client/
│ └── client.lua
├── html/
│ ├── index.html
│ └── script.js
├── config.lua
├── fxmanifest.lua
└── README.md
For support, bug reports, or feature requests:
- Join our Discord Server
- Visit our GitHub Repository
Created by The_Hs5, CodeWizards Development Team
This project is licensed under the MIT License - see the LICENSE file for details.