#animation only work client sided for custome rig

1 messages · Page 1 of 1 (latest)

vocal iron
#

basicaly am doing a custome rig and cloning all the original script from the startercharacterScript even the animate in the new character but the animation just dosen't whant to play

#
workspace.BUTTON.ProximityPrompt.Triggered:Connect(function(player)
    local oldModel = player.Character
    local newModel = workspace.Pablo:Clone()
    newModel.Name = player.Name
    player.Character = newModel
    newModel.Parent = game.Workspace
    
    newModel.HumanoidRootPart.Anchored = false
    
    for i,v in game.StarterPlayer.StarterCharacterScripts:GetChildren() do
        v:Clone().Parent = newModel
    end
end)