Rotating an accessory?

Okay so, i made it so a sword welds to my hand and it does work but its like this:
image
and i want it to look like this:
image

here is the script:

local tool = game:GetService("Workspace").Sword

game.Players.PlayerAdded:Connect(function(plr)
	plr.CharacterAdded:Connect(function(char)
		local hum = char:WaitForChild("Humanoid")
		
		hum:AddAccessory(tool:Clone())
	end)
end)

anyone knows how to rotate the accessory? Thanks in advance!!

4 Likes

If i remember right there should be a type of weld or offset in the accessory, that you can set image

You can try setting one of these

1 Like

Rotate the handle of the tool using the “Orientation” property of the part.

1 Like

Tried using the Grip Tool Editor plugin?

Here’s the plugin: Tool Grip Editor - Roblox

2 Likes

Apparently, all I had to do was change the attachment’s orientation.

1 Like