Roblox Script Resize the Character

Posted on May 4, 2020

According to this post, here the propertied that can be changed to alter the size of the 3 parts of the character body:

local Players = game:GetService("Players")

local function onPlayerAdded(player)
  
  wait(5)
  
  local character = player.Character
  
  if character then
    local humanoid = character.Humanoid
    humanoid.BodyHeightScale.Value = 2
    humanoid.BodyWidthScale.Value = 2
    humanoid.BodyDepthScale.Value = 2
    humanoid.HeadScale.Value = 2
  end
end

Players.PlayerAdded:Connect(onPlayerAdded)

The default values are equal to 1, therefore the above code double its size.