I want a random particle color, but the color is not changing
local particle = Instance.new("ParticleEmitter")
particle.Parent = script.Parent.Handle
particle.EmissionDirection = ("Back")
local r = math.random(0,255)
local g = math.random(0,255)
local b = math.random(0,255)
particle.Color = Color3.fromRGB(r,g,b)