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

How can I make a 'rainbow colour' fire? [closed]

Asked by
zomspi 541 Moderation Voter
3 years ago

How can I make fire 'rainbow'? I think it has something to do with for loops but idk how or where to place them.

Thanks!

Closed as Not Constructive by User#29913, zomspi, Nguyenlegiahung, Block_manvn, and Fifkee

This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.

Why was this question closed?

1 answer

Log in to vote
2
Answered by 3 years ago
Edited 3 years ago

If you want to make fire rainbow, then you must use Tweening if you want it to slowly go to the next colour. Insert this in the Fire:

while true do
    local tweenservice = game:GetService("TweenService")
    local goal = {
        Color = Color3.fromRGB(255,0,0)
    }
    local tween = TweenInfo.new(2) --how fast color changes
    local playingTween = tweenservice:Create(script.Parent,tween,goal)
    playingTween:Play()
    wait(2) --do this the same as how fast color changes
    local goal = {
        Color = Color3.fromRGB(236,139,70)
    }
    local tween = TweenInfo.new(2)
    local playingTween = tweenservice:Create(script.Parent,tween,goal)
    playingTween:Play()
    wait(2)
    local goal = {
        Color = Color3.fromRGB(255, 255, 10)
    }
    local tween = TweenInfo.new(2)
    local playingTween = tweenservice:Create(script.Parent,tween,goal)
    playingTween:Play()
    wait(2)
    local goal = {
        Color = Color3.fromRGB(16, 128, 1)
    }
    local tween = TweenInfo.new(2)
    local playingTween = tweenservice:Create(script.Parent,tween,goal)
    playingTween:Play()
    wait(2)
    local goal = {
        Color = Color3.fromRGB(7, 64, 128)
    }
    local tween = TweenInfo.new(2)
    local playingTween = tweenservice:Create(script.Parent,tween,goal)
    playingTween:Play()
    wait(2)
    local goal = {
        Color = Color3.fromRGB(252, 2, 255)
    }
    local tween = TweenInfo.new(2)
    local playingTween = tweenservice:Create(script.Parent,tween,goal)
    playingTween:Play()
    wait(2)
end

Happy to help, b_mni

Ad