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

How can I delay my explosion script?

Asked by
MrHerkes 166
8 years ago
Edited 8 years ago

Hello, I am a beginner scripter. I've just made my first script involving a landmine. Touching the landmine will of course explode upon contact. The problem here is that it doesn't have a delay. Every part it touches will explode immediately. I just wanted to explode at least every second. Here's the code:

01function ExplodePart(part)
02    local explosion = Instance.new("Explosion")
03    explosion.BlastRadius = 10
04    explosion.Position = part.Position
05    explosion.Parent = game.Workspace
06end
07 
08 
09landMine = game.Workspace.Landmine
10 
11landMine.Touched:connect(ExplodePart)

Please help a beginner scripter out. ;)

EDIT: Sorry for the mistake but what I mean is that it need to explode and DELAY after it. Multiple explosions happen at once!

0
We can use the Variable wait(seconds) Coolboyok11 64 — 8y

3 answers

Log in to vote
0
Answered by
blowup999 659 Moderation Voter
8 years ago

If you only include the wait(1) then the function can still run again If you include the if and boolean variable then you can make sure it only runs after the wait(1)

01local canExplode=true;
02function ExplodePart(part)
03    if canExplode then
04        canExplode=false
05        local explosion = Instance.new("Explosion")
06        explosion.BlastRadius = 10
07        explosion.Position = part.Position
08        explosion.Parent = game.Workspace
09        wait(1)
10        canExplode=true
11    end
12end
13landMine = game.Workspace.Landmine
14landMine.Touched:connect(ExplodePart)
0
Thanks a lot, it's working now ever since! :) MrHerkes 166 — 8y
Ad
Log in to vote
1
Answered by 8 years ago

Use wait()

01function ExplodePart(part)
02wait(1) -- in the parentheses, type the number of seconds you want the script to wait
03    local explosion = Instance.new("Explosion")
04    explosion.BlastRadius = 10
05    explosion.Position = part.Position
06    explosion.Parent = game.Workspace
07end
08 
09 
10landMine = game.Workspace.Landmine
11 
12landMine.Touched:connect(ExplodePart)
Log in to vote
0
Answered by 8 years ago
Edited 8 years ago

do you want multiple explosions when you touch the landmine? i don't really know what you're trying to say. but here's my script:

01AmountOfExplosions = 5 -- here is how much explosions you want
02landMine = game.Workspace.Landmine
03 
04function ExplodePart(part)
05    for i = 1, AmountOfExplosions do
06        local explosion = Instance.new("Explosion")
07        explosion.BlastRadius = 10
08        explosion.Position = part.Position
09        explosion.Parent = game.Workspace
10        wait(1) -- how long to wait between each explosion
11    end
12end
13 
14 
15landMine.Touched:connect(ExplodePart)

Answer this question