Tween model transparency

did research and most said to use loops but they were confusing so could someone help explain?
my current attempt =

local spearval = spear:GetChildren()
	
	local tweenInfotrans = TweenInfo.new(1, Enum.EasingStyle.Circular, Enum.EasingDirection.InOut) 

	local tweentrans = game:GetService("TweenService"):Create(spearval,tweenInfotrans,{Transparency = 0.3})
	tweentrans:Play()
local spearval = spear:GetChildren()
	
	local tweenInfotrans = TweenInfo.new(1, Enum.EasingStyle.Circular, Enum.EasingDirection.InOut) 

for _, spearPart in pairs(spearval) do
	local tweentrans = game:GetService("TweenService"):Create(spearPart,tweenInfotrans,{Transparency = 0.3})
	tweentrans:Play()
end

Use a basic for loop.

1 Like

what a chad, thanks for the help love