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).
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.