Make a body part grow

I am making an ice spell which freezes the target when hit. I need help making the frozen parts grow since they stay inside the target (Not sure if i’m being clear enough).

image

As you can see here, the ice will remain inside of the target’s body parts, so I need help making the ice grow a little but without losing the body proportions.

I did this by using an in pairs loop.

	local FrozenPartsFolder = Instance.new("Folder", workspace)
	local FrozenParts = v:Clone()
	FrozenParts.BrickColor = BrickColor.Blue()
	FrozenParts.Transparency = 0.5
	FrozenParts.Anchored = true
	FrozenParts.Parent = FrozenPartsFolder
						
        v.Anchored = true

I just need help making the ice grow with the same proportions as the body, so that you can still see something like an ice figure.

You’d probably need to detect when the Humanoid’s BodyDepthScale property changes, so that you’re able to set the size of the Ice Parts relative to the size of the Character

You could also use a for Loop = 1, 100 do loop so that it keeps changing the size constantly until the loop stops

1 Like