I need help with the Classic Sword script by Roblox

Hello! I’m having issues with the part of the code that defines the grips.

  1. What do you want to achieve? I would like to figure out what each set of numbers defines which part of the grip.

  2. What is the issue? I currently do not know how to change these grips for the model I am using.

  3. What solutions have you tried so far? I’ve looked all throughout google, and I’ve tried figuring it out myself.

The code inside of the sword is below:

Grips = {
	Up = CFrame.new(0, 0, -1.70000005, 0, 0, 1, 1, 0, 0, 0, 1, 0), -- What do these mean?
	Out = CFrame.new(0, 0, -1.70000005, 0, 1, 0, 1, -0, 0, 0, 0, -1)
}

Thank you!

To understand it try converting it to an orientation value using :ToOrientation() then use math.deg to convert it to degrees.

Also the first three numbers should be the position of the grip.