Need Translucent object to maintain shadow; is it possible?

Wondering if anyone is familiar with this problem–I have code that tweens transparency of parts == .75, however one visual nuisance is that when finalizing, the shadows instantly disappear (like the parts do not exist).

This situation is not ideal–i wouldnt mind if the shadow mimic’d the transparency while tweening the transparency change (shadow becoming lighter as the parts fade) but this doesnt occur.

looking for any suggestions for solutions

for i, Object in ipairs(Parts) do
			
			if Object:IsA("BasePart") then
				

				TweenService:Create(Object, tweenInfo, {
					Transparency = 0.75
				}):Play()

			
			end
		end
1 Like