Issue with animating Humanoids from a WorldModel in a Cloned Viewport Frame

A constant error I get while trying to load an animation to a Humanoid from a cloned WorldModel in a Viewport Frame is:

Cannot load the AnimationClipProvider Service.

The script is used with a tool to clone the viewport gui with the humanoid animation to the attacked player:

if plyr then
     local Popup = script.Boom -- ScreenGui
     local gui = Popup:clone()
     gui.Parent = plyr.PlayerGui
     gui.ViewportFrame.Visible = true
     gui.ViewportFrame.WorldModel.Kenny.Humanoid.Animator:LoadAnimation(script.punch)

So seems like you need a remote event for the client as playergui only works with the client

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.