Best way to resize a R15 Player Character

The question is simple: What is the best, most efficient and least buggiest way to resize an r15 character?

changing the bodyscale values inside the humanoid
image

RobloxStudioBeta_9vx7tTWddO

game:GetService("Players").PlayerAdded:Connect(function(Player)
	Player.Chatted:Connect(function(str)
		local Hum = Player.Character.Humanoid
		
		for i,v in pairs(Hum:GetChildren()) do
			if (string.find(v.Name, "Scale")) then 
				v.Value = tonumber(str)
			end
		end 
	end)
end)

you can also just change them individually

1 Like

Use :ScaleTo(x) its better than