I want to have a part rotated in a certain way, welded to the torso of the player
The orientation/c0 offset of the motor6d changes from what I put in the script, so the c0 is always off.
What it’s supposed to be
What it’s supposed to look like:
what it actually is:
and what it actually looks like
I’ve tried everything I can think of to fix it, but can’t find anything online on anyone with an issue simular to this, or any explanations as to why the orientation changes.
here is what I currently have to produce the result in the image
local handleMotor = Instance.new('Motor6D',char['UpperTorso'])
handleMotor.Part0 = char['UpperTorso']
handleMotor.Part1 = handle
handleMotor.C0 = CFrame.new(0.03, -0.046, -0.565)* CFrame.Angles(math.rad(45),math.rad(90),math.rad(-180))
handleMotor.Name = 'Union'
**might be important to know that the small rectangle part is not the issue, thats a different part, im trying to fix the triangle one