How to make this Fire Script Last Longer?
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..
04 | if Boost.Anchored = = false then |
05 | f = Instance.new( "Fire" ) |
07 | f.Size = math.random( 10 , 20 ) |
13 | Boost.Material = "CorrodedMetal" |
15 | hs = Boost:findFirstChild( "AfterSmoke" ) |
19 | as = Instance.new( "Smoke" ) |
21 | as.Color = Color 3. new( 0 , 0 , 0 ) |
23 | as.Size = math.random( 5 , 15 ) |
24 | as.RiseVelocity = math.random( 25 , 100 ) / 10 |
25 | as.Opacity = math.random( 1 , 5 ) / 10 |
26 | Boost.BrickColor = BrickColor.new( "Really black" ) |
29 | ps = Instance.new( "IntValue" ) |
37 | wait(math.random( 30 , 60 )) |
38 | v = Boost:findFirstChild( "AfterSmoke" ) |
Or
02 | if hit.Name ~ = "Effect" then |
03 | f = hit:findFirstChild( "ForceField" ) |
05 | ff = hit.Parent:findFirstChild( "ForceField" ) |
07 | if hit.Anchored = = false then |
08 | if hit:findFirstChild( "AfterSmoke" ) = = nil then |
09 | d = hit:findFirstChild( "Heat" ) |
11 | script.Heat:Clone().Parent = hit |
15 | hit.Material = "CorrodedMetal" |
16 | e = Instance.new( "Explosion" ) |
17 | e.Parent = game.Workspace |
18 | e.Position = script.Parent.Position |
21 | script.Boom.Parent = script.Parent |
22 | script.Parent.Boom:play() |
25 | if hit.Anchored = = false then |
26 | if hit:findFirstChild( "AfterSmoke" ) = = nil then |
27 | d = hit:findFirstChild( "Heat" ) |
29 | script.Heat:Clone().Parent = hit |
32 | e = Instance.new( "Explosion" ) |
33 | e.Parent = game.Workspace |
34 | e.Position = script.Parent.Position |
37 | script.Boom.Parent = script.Parent |
38 | script.Parent.Boom:play() |
42 | e = Instance.new( "Explosion" ) |
43 | e.Parent = game.Workspace |
44 | e.Position = script.Parent.Position |
47 | script.Boom.Parent = script.Parent |
48 | script.Parent.Boom:play() |
54 | script.Parent.Touched:connect(t) |
60 | p = Instance.new( "Part" ) |
62 | p.Size = Vector 3. new( 1 , 1 , 1 ) |
63 | p.BrickColor = BrickColor.new( "White" ) |
66 | p.CFrame = script.Parent.CFrame |
70 | script.Mesh:Clone().Parent = p |
71 | script.Clean:Clone().Parent = p |
72 | p.Parent = game.Workspace |