How can i make a script that runs after 20 sec and then work for 140 sec ?
so i have a script of 4 platforms that disappear every 20 seconds , how can i make them disappear only 7 times, 140 seconds of work then wait 20 seconds and after it start over the script and do it again only 7 times and so so so here is the script of the 4 platforms:
view source
wait(20) local platforms = workspace.PlatformsFolder -- all the platforms in a folder
view source
02 | BrickColor.new( "Electric blue" ), |
03 | BrickColor.new( "Really red" ), |
04 | BrickColor.new( "Bright yellow" ), |
05 | BrickColor.new( "Lime green" ) |
09 | local color = colors [ math.random( 1 ,#colors) ] |
11 | for i,v in pairs (platforms:GetChildren()) do |
12 | if v:IsA( "BasePart" ) then |
13 | if v.BrickColor = = color then |
end