-
What do you want to achieve?
Im Recently Working On A Shield Script That Makes You Wear It But I Cant Use Accessory Or Something Else, So I Have To Make It Move & Rotate. -
What is the issue? Include screenshots / videos if possible!
I Already Made It Move And Stick To Your Arm But I Cant Rotate It To Same Value As Left Lower Arm…
As Well As The Move Thing Seems Little Bit Broken, It Moves But To A Wrong Position… -
What solutions have you tried so far? Did you look for solutions on the Developer Hub?
I OF COURSE Tried Few Little Ways… SetPrimaryCFrame… Vectors… Angle… MoveTo… Am I Doing Something Wrong Here? Because After Many Tries My Brain Stopped Working Sadly.
note: all i want is to rotate the entire model to same value as left lower arm orientation value
script.Parent.Equipped:Connect(function()
if script.Parent.Parent.Armor:FindFirstChild("Shield") then
script.Disabled = true
else
local Shield = script.Parent.Shield:Clone()
Shield.Parent = script.Parent.Parent:FindFirstChild("Armor")
Shield.Settle.WeldConstraint.Part1 = script.Parent.Parent.LeftLowerArm
-----
Shield:SetPrimaryPartCFrame(CFrame.new(Vector3.new(script.Parent.Parent.LeftLowerArm.Position)))
Shield:SetPrimaryPartCFrame(CFrame.new(Vector3.new(script.Parent.Parent.LeftLowerArm.Orientation)))
end
end)