Humanoid Description
Last updated
local function ApplyHumanoidDescription(character)
local humanoidDesc = Instance.new("HumanoidDescription")
-- BodyPart Mesh
humanoidDesc.Head = 8213300
humanoidDesc.Torso = 8214200
humanoidDesc.LeftArm = 8213200
humanoidDesc.LeftLeg = 8213400
humanoidDesc.RightArm = 8213100
humanoidDesc.RightLeg = 8214100
-- BodyPart Texture
humanoidDesc.HeadTextureId = 8211400
humanoidDesc.TorsoTextureId = 8212600
humanoidDesc.LeftArmTextureId = 8212400
humanoidDesc.LeftLegTextureId = 8211500
humanoidDesc.RightArmTextureId = 8212500
humanoidDesc.RightLegTextureId = 8212500
-- BodyPart Color
humanoidDesc.HeadColor = Color3.fromRGB(255, 100, 100)
humanoidDesc.TorsoColor = Color3.fromRGB(0, 255, 100)
humanoidDesc.LeftArmColor = Color3.fromRGB(255, 0, 0)
humanoidDesc.LeftLegColor = Color3.fromRGB(0, 255, 0)
humanoidDesc.RightArmColor = Color3.fromRGB(0, 0, 255)
humanoidDesc.RightLegColor = Color3.fromRGB(100, 0, 100)
-- Animations
humanoidDesc.IdleAnimation = "ovdrassetid://18558100"
humanoidDesc.RunAnimation = "ovdrassetid://18559300"
humanoidDesc.WalkAnimation = "ovdrassetid://18560100"
humanoidDesc.JumpAnimation = "ovdrassetid://18563500"
humanoidDesc.FallAnimation = "ovdrassetid://18563700"
humanoidDesc.LandedAnimation = "ovdrassetid://18565100"
--Scale
humanoidDesc.HeightScale = 1.6
humanoidDesc.DepthScale = 1.4
humanoidDesc.WidthScale = 1.4
humanoidDesc.Parent = character
local humanoid = character:WaitForChild("Humanoid")
humanoid:ApplyDescription(humanoidDesc, Enum.AssetTypeVerification.Default)
end