I can't find BodyWidthScale, BodyDepthScale and BodyHeightScale in-game?
The below code is supposed to find the BodyWidthScale, BodyHeightScale and BodyDepthScale inside the R15 Character's Humanoid.
It does work in Studio, however, if I run this in a server, None of these Values are a child of Humanoid, in fact, they aren't even a descendant of the Character.
Did ROBLOX remove these Values? If they did, are there any other way to get the Scale properties of R15 Character bodies?
The script is being ran in a Server-Script.
1 | local plrs = game:GetService( "Players" ) |
2 | plrs.PlayerAdded:connect( function (plr) |
3 | plr.CharacterAdded:connect( function (char) |
4 | local hum = char:WaitForChild( "Humanoid" ) |
5 | local BW = hum:WaitForChild( "BodyWidthScale" ) |
6 | local BH = hum:WaitForChild( "BodyHeightScale" ) |
7 | local BD = hum:WaitForChild( "BodyDepthScale" ) |
Output: