animation not slowing down after using AdjustSpeed robloxapp-20211207-0933428.wmv (325.7 KB)
local Tool = script.Parent
Tool.Activated:Connect(function()
local Character = Tool.Parent
if Character then
local Humanoid = Character:WaitForChild("Humanoid")
if Humanoid then
if Humanoid.RigType == Enum.HumanoidRigType.R6 and bowanimationr6 then
local LoadedAnim = Humanoid:LoadAnimation(bowanimationr6)
LoadedAnim:AdjustSpeed(30)
repeat
task.wait()
until LoadedAnim.Length > 0
LoadedAnim:Play()
end
end
end
end)