How to make this part not make the player immovable. The part is anchored btw.
Make an attachment in the player where the part should be and make the part follow it. I have already wrote a simple script!:
local Attachment = Instance.new("Attachment")
Attachment.Parent = Player.HumanoidRootPart
Attachment.CFrame = CFrame.new({1.5, 0.9, -2.6}, {0, -110, 0}) -- Tweak this CFrame until it fits your likings!
local Part = nil -- Replace "nil" with your part!
local RunService = game:GetService("RunService")
RunService.Stepped:Connect(function()
Part.CFrame = Attachment.WorldCFrame
end)
Also remove any welds when using this script the part follows the attachment!