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

How to make this Fire Script Last Longer?

Asked by 10 years ago

I want this Fire Script That was in the Tool to last at least 10 Minutes longer But also i want it to go out with an Fire Extinguisher.. I dont know if this is the right script of the other one..

01Boost = script.Parent
02p = math.random(1,10)
03 
04if Boost.Anchored == false then
05f = Instance.new("Fire")
06f.Parent = Boost
07f.Size = math.random(10,20)
08wait(math.random(2,4))
09if p ~= 1 then
10Boost:BreakJoints()
11end 
12vl = 500-1000
13Boost.Material = "CorrodedMetal"
14wait(math.random(2,4))
15hs = Boost:findFirstChild("AfterSmoke")
View all 43 lines...

Or

01function t(hit)
02if hit.Name ~= "Effect" then
03f = hit:findFirstChild("ForceField")
04if f == nil then
05ff = hit.Parent:findFirstChild("ForceField")
06if ff == nil then
07if hit.Anchored == false then
08if hit:findFirstChild("AfterSmoke") == nil then
09d = hit:findFirstChild("Heat")
10if d == nil then
11script.Heat:Clone().Parent = hit
12end end end
13 
14 
15hit.Material = "CorrodedMetal"
View all 73 lines...

2 answers

Log in to vote
0
Answered by
war8989 35
10 years ago

Change line 37 of the first script from wait(math.random(30,60)) to whatever you like.

Ad
Log in to vote
0
Answered by 10 years ago

Another option would be the change the wait(math.random(30,60)) on line 37 to wait(math.random(60,90)) to make it where the lowest wait time is 60 instead of 30.

Answer this question