Help with color3 error

Im making a particle emitter, and im trying to color it but i get a error. Heres part of the code.

	local b = Instance.new("ParticleEmitter")
			b.Name = "BusoLeft"
			b.Texture = "rbxassetid://405886187"
			b.Rate = 300
			b.Color = Color3.fromRGB(0,0,255)
			b.Lifetime = 1
			b.Parent = Player.Character["Left Arm"]

The line I get a error on is,

		b.Color = Color3.fromRGB(0,0,255)
1 Like

That’s because ParticleEmitters don’t use Color3, they use ColorSequence (more info on those Here)
Fixed code:

b.Color = ColorSequence.new(Color3.fromRGB(0,0,255))
1 Like