Greetings, how can I make a rig of a user's avatar with it refereshing once they change it?

Greetings. I would like to ask how can I make a rig of a user’s avatar that refreshes once they change their avatar?

1 Like

I dont think theres a way of changing it when the player changes their avatar but you can just use a while loop

local UserID = 1

local Humanoid = script.Parent:WaitForChild("Humanoid")

task.spawn(function()
	while true do 
		local HumDescription = game:GetService("Players"):GetHumanoidDescriptionFromUserId(UserID)
			
		Humanoid:ApplyDescription(HumDescription)
		
		task.wait(1)
	end
end)

Heres the studio file if you need it:
DummyThing.rbxl (92.2 KB)

2 Likes

Thank you for your help. Have a nice day.

1 Like

Hello, I hope you are well, I know that this topic has already ended, but I wanted to know how I can clone it in the same way that you did in that script, that is, clone the player’s avatar in a folder that is inside game.Players.LocalPlayer
thanks