Changing NPC Clothing

Hello,

I am trying to make it so my Rig in Studio changes to the rig of the one LocalPlayer in the game for the menu. I am having some difficulties doing so, I will provide images of the script and explorer.

Nothing changes when the game is loaded.

Screen Shot 2023-07-10 at 11.55.44 PM

Any errors in the output? (It won’t run as a local script. Look at the end of my post for info about that) I remember having to yield the GetHumanoidDescriptionFromUserId() like this (Because it would Apply the description before it was loading):

local HumanoidDescript = game.Players:GetHumanoidDescriptionFromUserId(game.Players.LocalPlayer.UserId)
	task.wait(2)
	script.Parent.Humanoid:ApplyDescription(HumanoidDescript)

Also local scripts don’t run in the workspace! You need to make one in PlayerStarterScripts to make this work (or another place that runs local scripts!!)

1 Like

There were some, found out another was as onplayeradded.

1 Like

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