How to make a player hold a item with weld

How to make player holding a item without using tool ,I want to use weld to let player hold the tool

1 Like

I just finished a project similar to this. You can weld it to the arm, then use cframe to move the item to where you want it

I would recommend scripting it (so you can use cframe), otherwise the item will be stuck in the middle of the character’s arm

What is your intended use for it? Like, how will the player actually receive the item?

1 Like

equipping unequipping a tool is the same as parenting to the character or player’s backpack

I’m not sure if he wants the player to hold a tool or an item, I just finished a project in which the item isn’t even a tool and the player holds it, that’s what I’m thinking he’s wanting it to do :person_shrugging:

yes I did something similar recently too but using weld and the C0, C1 property it’s pretty much the solution of this post lol

Yes that’s what I mean by cframes lol. Try this @MadionChooi

I agree with this.

local players = game:GetService("Players")
local player = players.LocalPlayer
local character = player.Character or player.CharacterAdded:Wait()
local leftHand = character:WaitForChild("LeftHand")

local part = Instance.new("Part")
local weld = Instance.new("Weld")
weld.Parent = part
weld.Part0 = leftHand
weld.Part1 = part
part.CanCollide = false
part.Parent = leftHand
1 Like