Scaling Issue - How would i go about fixing it

Hi,
I’m currently having a issue with changing the players scale to reset it to the Dummy’s size as seen in the picture below, I have no clue how to reset it with some code

  • Thanks for any help provided!

scalinglel

Just go into its humanoid and then humanoid discription you see size set it to the dummies size or change your characters height in avatar

I’m attempting to do it through code ( changing the players size ), heres my code it isn’t workingI’m attempting to do it through code ( changing the players size ), heres my code it isn’t working.

local function removeBundles(character)
	local humanoid = character:FindFirstChildOfClass("Humanoid")
	if not humanoid then
		error("Character has no humanoid.")
	end

	local descriptionClone = humanoid:GetAppliedDescription()
	
	descriptionClone.DepthScale = 0.9
	descriptionClone.HeightScale = 0.9
	descriptionClone.WidthScale = 0.8
	descriptionClone.HeadScale = 1
	descriptionClone.ProportionScale = 0
	wait(0.2)
	humanoid:ApplyDescription(descriptionClone)
end

game.Players.PlayerAdded:Connect(function(player)
	player.CharacterAppearanceLoaded:Connect(function(character)
		removeBundles(character)
	end)
end)

Do :FindFirstChildWhichIsA :grinning_face_with_smiling_eyes:

Okay thank you for the help you provided. :slight_smile: