Adding a tool to a user but not equipping from backpack

I’m trying to make sword combat where the user always has the sword attached to them and it doesn’t show up in backpack(starterpack)
Do not want
image
Want
image

My idea would be to attach the model to the character and whatever other code nesscary to the actual character and be able to use it like it was a tool.

Does anyone know how to do this? I could not find any other information and don’t know how to start this myself as I have never tried anything like this before

Use Humanoid:EquipTool(tool that want to be inserted)

As far as i know, StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack,false) should disable the ability to equip tools via 1,2,3,etc. and disable the hotbar and inventory visually.
After that you might wanna use Humanoid:EquipTool(sword) every few moments to assure there is no fishy stuff going on.

You’re going to need to learn welding to achieve this.

Thank you I will start learning it :smiley: