I want to rotate this part (it’s not a tool) that is welded to the player’s hand so that the needle of the syringe is pointing upwards.
Here is the code I am using:
local poisonClone = game.ServerStorage.Items["Poison Injector"].Poison.Handle:Clone();
poisonClone.Parent = workspace;
local currentPlayerRShoulderJoint = w["name"].Character["RightUpperArm"]["RightShoulder"];
local targetedPlayerRShoulderJoint = nil;
-- Move arm up 45 degrees
if currentPlayerRShoulderJoint then
currentPlayerRShoulderJoint.C0 = currentPlayerRShoulderJoint.C0 * CFrame.Angles(math.rad(45), 0, 0);
end
local weld = Instance.new("Weld", poisonClone);
weld.Part0 = poisonClone;
weld.Part1 = w["name"].Character["RightHand"]; -- Attach to the player's right hand
weld.C0 = poisonClone.CFrame;
weld.C1 = w["name"].Character["RightHand"].CFrame;