I’ve Changed an objects Position too a players leg it’s Just not rotated correctly i’ve tried cframe.angles and can’t figure it out any ideas?
I’ve had troubles with this in the past as well. the best solution I’ve done is doing CFrame.angles on another line
clone.CFrame = leg.CFrame * CFrame.new(offset)
clone.CFrame = clone.CFrame * CFrame.angles(math.rad(x), math.rad(y), math.rad(z))
1 Like
Thank you so much im positive this will work
1 Like
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.