Answered by
6 years ago Edited 6 years ago
I'm Assuming You Are Trying To Change The Entire Characters Size? If So Then Try This:
01 | game.Players.PlayerAdded:Connect( function (plr) |
02 | plr.CharacterAdded:Connect( function (char) |
04 | local size = plr.leaderstats.Mass.Value/ 10 |
05 | game.Workspace:FindFirstChild(plr.Name).Humanoid:FindFirstChild( 'BodyHeightScale' ).Value = size |
06 | game.Workspace:FindFirstChild(plr.Name).Humanoid:FindFirstChild( 'BodyDepthScale' ).Value = size |
07 | game.Workspace:FindFirstChild(plr.Name).Humanoid:FindFirstChild( 'BodyWidthScale' ).Value = size |
08 | game.Workspace:FindFirstChild(plr.Name).Humanoid:FindFirstChild( 'HeadScale' ).Value = size |
09 | game.Workspace:FindFirstChild(plr.Name).Humanoid.HipHeight = size * 2 |
Try putting it in server script service, also if it doesn't work then try making sure that your leader stats are correct. (The Script Should Still Work If You Remove Either, The BodyHeightScale, The BodyDepthScale, The BodyWidthScale, Or The HeadScale) (But Just In Case You Should Still Try Without Removing Them First)