I've been practicing my scripting aptitudes by starting off small. I began exploring color, and I'm stuck on changing the color of flame. I've additionally looked in object browser and researched Color3 and Color, however despite everything I still don't comprehend it.
I know how to insert fire in Workspace, which worked.
Instance.new('Fire', game.Workspace)
If it's not too much trouble help..^-^
Fire.Color = Color3.new()
-- Declaration Section local fire = Instance.new("Fire", game.Workspace) -- Processing Section fire.Color = Color3.new(102, 0, 0) -- Look up HTML RGB colours for more info. -- Checking Section if fire then print ("Fire is placed!") end