This script is really quite simple
It is a system of for loops all operating in time intervals to reveal a storm.
Some pieces are not working correctly however.
Script here:
…
local fldr = script.Parent.Parent.FolderC
task.wait(1)
for _, child1 in fldr:GetChildren() do
if child1.Name == “1” then
child1.Transparency = 0
task.wait(10)
for _, child2 in fldr:GetChildren() do
if child2.Name == "2" then
child2.Transparency = 0
task.wait(15)
for _, child3 in fldr:GetChildren() do
if child3.Name == "3" then
child3.Transparency = 0
task.wait(25)
for _, child4 in fldr:GetChildren() do
if child4.Name == "4" then
child4.Transparency = 0
task.wait(15)
for _, child5 in fldr:GetChildren() do
if child5.Name == "5" then
child5.Transparency = 0
task.wait(15)
for _, child6 in fldr:GetChildren() do
if child6.Name == "6" then
child6.Transparency = 0
script.Parent.formed = true
print("done")
end
end
end
end
end
end
end
end
end
end
end
end
…
Model:
SRSCK-EARLY-25m4d5.rbxm (6.6 KB)