1 Like
if found the solution
local deadanimateScript = Character:WaitForChild(“Animate”)
deadanimateScript:Destroy()
for _, playingTracks in pairs(humanoid:GetPlayingAnimationTracks()) do
playingTracks:Stop()
end
local animateScript = game.StarterPlayer.StarterCharacterScripts.Animate:Clone()
animateScript.Parent = Character
animateScript.Disabled = true
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.