Goal: Change the characters size once they join the game.
Issue: The script changes the int values in “Humanoid” but it doesn’t do anything to the actual character
Script: (Location: StarterCharacterScripts)
local humanoid = script.Parent:WaitForChild("Humanoid")
local hs = humanoid.HeadScale
local bds = humanoid.BodyDepthScale
local bws = humanoid.BodyWidthScale
local bhs = humanoid.BodyHeightScale
hs.Value = 0.5
bds.Value = 0.5
bws.Value = 0.5
bhs.Value = 0.5
Vid Below
Sorry for bad quality.
All help appreciated!