How to weld particle to lefthand

Hello! I’m trying to put effect to hand with weld but idk why the particle isn’t follow my hand.
Here is script in server side

local rp = game:GetService("ReplicatedStorage")
local remote = rp:WaitForChild("clap")
local effect = rp:WaitForChild("ClapEffect")


remote.OnServerEvent:Connect(function(ply,root,target,targetPos,rootPos)
	local ce = effect:Clone()
	local LHand = root.Parent:FindFirstChild("LeftHand")
	ce.CFrame = LHand.CFrame
	local weld = Instance.new("Weld")
	weld.Part0 = LHand
	weld.Part1 = ce
	weld.C0 = ce.CFrame
	weld.C1 = LHand.CFrame
	ce.Parent = game.Workspace
	
	root.Position = targetPos
	target.Position = rootPos
	
end)

Thank for helping :grin:

I don’t think you can weld a particle to something. But I think just parenting the particle to the left hand will work

try this :

local rp = game:GetService("ReplicatedStorage")
local remote = rp:WaitForChild("clap")
local effect = rp:WaitForChild("ClapEffect")


remote.OnServerEvent:Connect(function(ply,root,target,targetPos,rootPos)
	local ce = effect:Clone()
	local LHand = root.Parent:FindFirstChild("LeftHand")
    ce.Parent = LHand
	
	root.Position = targetPos
	target.Position = rootPos
end)
1 Like