Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How can i make a script that runs after 20 sec and then work for 140 sec ?

Asked by 4 years ago

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

01colors = { --table of colors
02        BrickColor.new("Electric blue"), --Really red
03        BrickColor.new("Really red"), --Really blue
04        BrickColor.new("Bright yellow"), --Deep orange
05        BrickColor.new("Lime green")
06        }
07 
08while true do
09        local color = colors[math.random(1,#colors)]
10        print(color)
11        for i,v in pairs (platforms:GetChildren()) do
12                if v:IsA("BasePart") then
13                   if v.BrickColor == color then
14                            v.CanCollide = false
15                                v.Transparency = 1
View all 22 lines...

end

0
pls help xbloodyguyx 10 — 4y

1 answer

Log in to vote
0
Answered by 4 years ago

Inside the while true loop, you can add a for loop that runs seven times, then a 20 second wait. It'll look something like this

1while true do
2    for i = 1,7 do
3        --Colour change code
4    end
5 
6    wait(20)
7end
0
oh ty , ill try xbloodyguyx 10 — 4y
0
hey , but should i still use the while true do from the color change code or no? xbloodyguyx 10 — 4y
0
If you want it to repeat the process then use the while loop thecelestialcube 123 — 4y
Ad

Answer this question