Hi hi, i was wondering how or if there is any way to equip multiple tools at once? Right now the default inventory system only allows you to equip one at a time and was wondering if is anyway to bypass that
As far as I’m aware, it’s not possible to equip more than one tool with the base Roblox inventory, so you’ll most likely have to create your own custom inventory system. Or, if you only have like one extra tool you want to equip alongside any other tool (for example the player can equip a flashlight as a secondary tool, but can hold any other tool in their other hand) - you can continue using the standard toolbar and create a custom script for equipping this bonus tool on top.
For equipping the 2nd tool using a script (which is actually what i need), would I need to use humanoids equip tool or something completely different?
The Humanoid:Equip(tool) method will only let the character hold one tool, so if the character is already holding a tool then it will unequip that one to equip the new one. You’ll have to create a custom system with unique equip/unequip functions and attach the tool model to the character’s hand.
While I will always encourage someone to try and work out their own approach to the code, I’m sure there are plenty of flexible custom inventory/hotbar scripts out there for you to implement and edit ![]()
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.