#Particle Colours

1 messages · Page 1 of 1 (latest)

shrewd badger
#

Anyone know if I want to get for example the R value of a colour of a particleEmitter what do I do
I cant grab the particleEmitter.Color.R as that property doesn't exist according to Luau
Or does it?
If it doesnt, what can I do as a workaround?

example:

Instance.new("Part").Color.R = 0 -- Works
Instance.new("ParticleEmitter").Color.R = 0 -- Doesn't work

The error I get is: R is not a valid property of ColorSequence

neon sable
#

uh maybe BrickColour.new("")?

#

or Color3.fromRGB(255, 100, 50)

shrewd badger
#

i want to directly grab the R value

#

nvm found how

#

its

Instance.new("ParticleEmitter").Color.Keypoints[1].Value.R
#

god thats dumb

neon sable
#

💀