Basically I want to be able to move the Hitbox CFrame down, Limb is the right arm of an R6 Character, I am fairly new to CFrames and tried different solutions but couldn’t get anything to work, any help would be appreciated.
i recommend you base it off the character’s humanoidrootpart cframe, as it will not change pitch orientation regardless of the character’s orientation. I recommend you do this:
Make a dummy in roblox studio (R6 since you are using R6), move the hitbox to where you want it on the character
type in Roblox studio command bar
print(workspace.Dummy.HumanoidRootPart.CFrame:Inverse() * workspace.Hitbox.CFrame)
copy and paste all the numbers it gives you
In the script, write:
Hitbox.CFrame = Character.HumanoidRootPart.CFrame * CFrame.new(what you copied)
it will show up exactly like you had it in roblox studio, so if you want to change the location of the hitbox, just repeat the steps