I'm trying to weld a small part inside a player's torso, but when I do, it stops the character from moving. Does anyone know how to make it so the character can still move? This is a LocalScript.
local plr = game.Players.LocalPlayer repeat wait() until plr.Character local chr = plr.Character local part = Instance.new("Part",workspace) part.Size = Vector3.new(1,1,1) part.CanCollide = false part.CFrame = chr.Torso.CFrame local w = Instance.new("Weld",chr.Torso) w.Part0 = chr.Torso w.Part1 = part