So i have a custom character that i load with a script, this script replaces the default character.
But it doesnt clone the animate script,i have tried to clone the animate into the custom character but it doesnt work.
local animate = mug_character:FindFirstChild("Animate")
if (animate) then
animate.Parent = mug_model
animate.Disabled = true
task.delay(0.25, function()
animate.Disabled = false
end)
end
