#Particle Emitter ELS is not working
1 messages · Page 1 of 1 (latest)
Hey there! It looks like you have created a thread in our support forums.
This message is to provide some information on how to use this thread.
Please do not ping staff members directly, they will respond to your thread when they are available.
If you are experiencing issues with a product or service, please provide as much information as possible.
This includes any error messages, steps to reproduce the issue, and any other relevant information.
Please remember that we are all volunteers, and everything we do is in our free time.
We pride ourselves on providing the best support possible, but after all its all for free so please be patient and understanding.
None of this was meant to scare you away, we are happy to help and will do our best to resolve your issue.
Thank you for understanding and we hope we can help!
#announcements message
Particle emitters havent been supported by default since 2.1.1
You will nee to manually add it back to the light function
aww man
will you ever re-support it or no?
if not, I have some old evc versions from previous vehicles that I can try and rip the code from
Its four lines of code to add back to the light function
Light = function(Light, Color, Colors)
if Color == 0 then
for i,v in pairs(Light:GetDescendants()) do
if v:IsA("GuiObject") then
v.Visible = false
elseif v:IsA("Light") or v:IsA("SurfaceGui") then
v.Enabled = false
elseif v:IsA("ParticleEmitter") then
v.Transparency = NumberSequence.new(1)
end
end
Light.Transparency = 1
else
for i,v in pairs(Light:GetDescendants()) do
if v:IsA("GuiObject") then
v.Visible = true
v.ImageColor3 = Colors[Color]
elseif v:IsA("Light") then
v.Enabled = true
v.Color = Colors[Color]
elseif v:IsA("SurfaceGui") then
v.Enabled = true
elseif v:IsA("ParticleEmitter") then
v.Transparency = NumberSequence.new(0)
v.Color = ColorSequence.new(Colors[Color])
v.Enabled = true
end
end
Light.Transparency = 0
Light.Color = Colors[Color]
end
end,