How can I make players spawn with larger scaled characters?

I want to increase size of a players character via script. Any idea how to do that?

1 Like

Well, what I would do is something like:

local function onPlayerAdded(player)
   local player = player
   local characterDescendants = player.Character or player.CharacterAdded:Wait()
      for _, characterDescendants in pairs(characterDescendants) do
         if characterDescendants:IsA(“BasePart”) then
            characterDescendants.Size = characterDescendants.Size * 10 --(IDK(?))
            end
         end
      end
game:GetService(“Players”).PlayerAdded:Connect(onPlayerAdded)
1 Like

local Humanoid = script.Parent:WaitForChild(“Humanoid”)

local HS = Humanoid.HeadScale
local BDS = Humanoid.BodyDepthScale
local BWS = Humanoid.BodyWidthScale
local BHS = Humanoid.BodyHeightScale

HS.Value = HS.Value * 2
BDS.Value = BDS.Value * 2
BWS.Value = BWS.Value * 2
BHS.Value = BHS.Value * 2

Figured it out

2 Likes

I didn’t know about those scales, interesting…

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