Hello
I would like player’s hand to be rotated in a certain position, when holding a certain tool.
(I want the hand to be rotated relative to the body, not the tool rotated relative to the hand.
I know how to adjust the tool’s grip)
How can I do this?
This does not help me unfortunately. It is about animation when activating the tool.
I need the player hand to be rotated (palm facing down, not left) while holding the tool.
--put in tool
local thing = script.Parent
local anim = Instance.new("Animation")
local e = nil
anim.AnimationId = "http://www.roblox.com/Asset?ID=0" -- put anim id
thing.Equipped:Connect(function()
e = script.Parent.Parent.Humanoid:LoadAnimation(anim)
e.Looped = true
e.Priority = Enum.AnimationPriority.Action
e:Play()
end)
thing.Unequipped:Connect(function()
if e and anim ~= nil then
e:Stop()
end
end)