What do you want to achieve? I want to weld a part to the players left hand, and give it an orientation for it to look correctly, but when I attempt this I am faced with some errors.
What is the issue? On the Properties its called “Orientation” and “Position”
But when I’m scripting, its changed to “Rotation” and “Position”.
Wouldn’t it be easier to keep the names the same and to not make things confusing for people? Or am I just completely missing something here?
And to divert back to my main issue, this is the error I’m receiving:
What solutions have you tried so far? I’ve tired different variations of code, and looked on dev-forum.
Well CFrame.Angles isn’t just for welding parts; it’s used when you want to rotate any sort of CFrame value
All it does is tell the code hey I want to rotate this CFrame by whatever value is inside of those arguments
You should also know that CFrame.Angles takes in something called radians; basically a unit of angle that tells the function how much to rotate it by, so you’ll need to use the math.rad function to convert degrees to radians