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