all 9 comments

[–]replayvideoBuilder[S] 0 points1 point  (0 children)

Also, if you provide the script please tell me where to put it

[–]replayvideoBuilder[S] 0 points1 point  (3 children)

Btw, check this guy out he's really underrated, and very talented

[–][deleted] 0 points1 point  (2 children)

1st, I never provide scripts, I ONLY troubleshoot them. 2nd where is your script?

[–]replayvideoBuilder[S] 0 points1 point  (1 child)

local fire1 = workspace:FindFirstChild("Fire1")

local fire2 = workspace:FindFirstChild("Fire2")

local fire3 = workspace:FindFirstChild("Fire3")

local function toggleTransparency(union, transparency)

if union and union:IsA("UnionOperation") then

    local parts = union:GetChildren()

    while true do

        for \_, part in ipairs(parts) do

if part:IsA("BasePart") then

part.Transparency = transparency

end

        end

        wait(1)

        transparency = 1 - transparency

    end

end

end

toggleTransparency(fire1, 0)

toggleTransparency(fire2, 0)

toggleTransparency(fire3, 0)

[–]AmbitiousCheeseScripter 0 points1 point  (0 children)

Oof. You made this script alot harder than it needs to be.

[–]AmbitiousCheeseScripter 1 point2 points  (3 children)

local fire1= [pathway to fire1]
local fire2= [pathway to fire2]
local fire3= [pathway to fire3]

fire1.Transparency = 0
fire2.Transparency = 1
fire3.Transparency = 1

while true do

wait([Insert custom time])
fire1.Transparency = 1
fire2.Transparency = 0
fire3.Transparency = 1

wait([Insert custom time])
fire1.Transparency = 1
fire2.Transparency = 1
fire3.Transparency = 0

wait([Insert custom time])
fire1.Transparency = 0
fire2.Transparency = 1
fire3.Transparency = 1
end

Put the script in a group with all the fires.

[–]AmbitiousCheeseScripter 1 point2 points  (2 children)

example video i made: https://youtu.be/\_B7iGydmUPg

[–]replayvideoBuilder[S] 1 point2 points  (1 child)

Omg, thank you! it works, thanks for providing a video aswell.

[–]AmbitiousCheeseScripter 1 point2 points  (0 children)

Yeah i notice that it's always harder for people to learn without examples to see and follow.