t = game.Workspace.TARDIS:GetChildren() for i,v in pairs(t) do for i = 0, 1, 0.1 do v.Transparency = i wait(0.1) end end -- Not fading all at once. It's fading 1 parts to another. I want it to fade all at once!
local Model = game.Workspace.TARDIS for i,v in pairs(Model:GetChildren()) do --Collects all the items in the model. if v:IsA("Part") then --Checks to make sure that item is a part. coroutine.resume(coroutine.create(function() --When the script is read, roblox runs this function while reading everything else after it. for i = 1, 10 do --Loops 10 times. t.Transparency = t.Transparecy + 0.1 --Keeps making the part disappear. wait(0.1) end end)) end end