For some reason when this script trys to change the color of the fire it does not change the fire to the correct color and just appears white when it should be going blue to red/orange.
local Fire = script.Parent while true do Fire.Size = 15 wait(3) Fire.Color = Color3.new(255, 147, 70) Fire.SecondaryColor = Color3.new(255, 147, 70) Fire.Size = 25 wait(3) Fire.Size = 15 Fire.Color = Color3.new(236, 139, 70) Fire.SecondaryColor = Color3.new(236, 139, 70) end