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:
01 | function ExplodePart(part) |
02 | local explosion = Instance.new( "Explosion" ) |
03 | explosion.BlastRadius = 10 |
04 | explosion.Position = part.Position |
05 | explosion.Parent = game.Workspace |
06 | end |
07 |
08 |
09 | landMine = game.Workspace.Landmine |
10 |
11 | landMine.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!
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)
01 | local canExplode = true ; |
02 | function 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 |
12 | end |
13 | landMine = game.Workspace.Landmine |
14 | landMine.Touched:connect(ExplodePart) |
Use wait()
01 | function ExplodePart(part) |
02 | wait( 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 |
07 | end |
08 |
09 |
10 | landMine = game.Workspace.Landmine |
11 |
12 | landMine.Touched:connect(ExplodePart) |
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:
01 | AmountOfExplosions = 5 -- here is how much explosions you want |
02 | landMine = game.Workspace.Landmine |
03 |
04 | function 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 |
12 | end |
13 |
14 |
15 | landMine.Touched:connect(ExplodePart) |