Okay so, i made it so a sword welds to my hand and it does work but its like this:
and i want it to look like this:
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
rafa_br34
(rafa_br34)
#2
If i remember right there should be a type of weld or offset in the accessory, that you can set
You can try setting one of these
1 Like
Rotate the handle of the tool using the “Orientation” property of the part.
1 Like
faadee
(faadee)
#4
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