Hello, I have tried using the Model by boatbomber:
I’ve seen it also includes the characters animations, but it is not the case for my current GUI.
This is the hierarchy of the Instances:
The only lines I’ve changed/added were changing the Viewport to script.Parent and adding a WorldModel into the Viewport, where the Viewmodel gets put inside. Specifically:
local Viewmodel = Instance.new("Model")
local WorldModel = Instance.new("WorldModel")
WorldModel.Parent = ViewPort
WorldModel.Name = "WorldModel"
Viewmodel.Name = "PlayerViewmodel"
Viewmodel.Parent = WorldModel
My problem is that I want the ViewportFrame to contain the entire character and its current status, like in Arsenal in the bottom-left corner of the screen. I want it to display the character in real-time: if the player walks, the character in the viewport should also walk, if the player emotes, the viewport should also emote.