Hello,
so i was trying to loop through a model to make all of it parts invsible but it seems to be a little delayed when the model has many parts and i can't lower the number of the parts so is there's any way i can loop trough that model faster
01 | local Tween = game:GetService( "TweenService" ) |
02 |
03 | local function MakeInvisible(Model) |
04 | for _, Part in ipairs (Model:GetChildren()) do |
05 | if Part:IsA( "BasePart" ) then |
06 | local Goal, Info = { Transparency = 1 } |
07 | ,TweenInfo.new( 0.25 , Enum.EasingStyle.Sine, Enum.EasingDirection.Out) |
08 | local Fade = Tween:Create(Part, Info, Goal) |
09 |
10 | Fade:Play() |
11 | end |
12 | end |
13 | end |
Thanks,
You should reuse a lot of the variables since they are constants. There should not be a delay in the part fades as this code does not yield meaning that each tween will run after the code finishes.
Check that you are using the correct EasingDirection for your needs.
01 | local Tween = game:GetService( "TweenService" ) |
02 |
03 | local function MakeInvisible(Model) |
04 | local Goal = { Transparency = 1 } |
05 | local Info = TweenInfo.new( 0.25 , Enum.EasingStyle.Sine, Enum.EasingDirection.Out) |
06 |
07 | local parts = Model:GetChildren() |
08 | for i = 1 , #parts do |
09 | if parts [ i ] :IsA( "BasePart" ) then |
10 | Tween:Create(parts [ i ] , Info, Goal):Play() |
11 | end |
12 | end |
13 |
14 | end |
hope this helps