I want to make when you buy a new area the sign will fall apart and it will slowly disappear
The problem I have is that it now falls apart and disappears one by one I want it all the same time
https://gyazo.com/17ec92bca20902860e26b7280d1b5f0f
Here is my code:
for _, SignParts in pairs(Sign:GetChildren()) do
SignParts.Anchored = false
for i = 0,1,0.1 do wait(0.1)
SignParts.Transparency = i
end
end
I know it is because of the wait(0.1) in it but idk how to do it in a different way