Answers for "how to remove r15 character scaling"

0

how to remove r15 character scaling

local Players = game.Players

function PlayerJoined(Player)
	local function RemoveMeshes(Character)
		local Humanoid = Character:WaitForChild("Humanoid")
		wait()
		local CurrentDescription = Humanoid:GetAppliedDescription()
		
		CurrentDescription.BodyTypeScale = 0
		CurrentDescription.HeightScale = 1
		CurrentDescription.ProportionScale = 0
		Humanoid:ApplyDescription(CurrentDescription)
		
	end
	Player.CharacterAppearanceLoaded:Connect(RemoveMeshes)
end

Players.PlayerAdded:Connect(PlayerJoined)
Posted by: Guest on July-31-2021

Browse Popular Code Answers by Language