Tool Script Support

Max_Scale = 3
script.Parent.Activated:connect(function()
	local drinker = game.Players.LocalPlayer.Character.Humanoid
	if Max_Scale > drinker.BodyDepthScale.Value then
		script.Parent.Handle.DrinkSound:Play()
		drinker.BodyDepthScale.Value = drinker.BodyDepthScale.Value + 2
		drinker.BodyHeightScale.Value = drinker.BodyHeightScale.Value + 2
		drinker.BodyWidthScale.Value = drinker.BodyWidthScale.Value + 2
		drinker.HeadScale.Value = drinker.HeadScale.Value + 2
	else
	end
end)

Screenshot_9

I believe DepthScale is a Property of HumanoidDescription, not Humanoid.

1 Like