If it would be possible, I’d love someone reaching out to me showing me a simple script for this, because i’m a beginner scripter and I’d want to understand the script. Thanks Already!
Hey,
To achieve this kind of differing, you can make a loop that changes the brightness and colour of the light point every few seconds or so.
I wouldn’t like to spoonfeed you with already made code so here is some pseudocode to guide you to the solution of you problem:
local Light = Part.PointOfLight
while true do wait(math.random(0.1,2)
Light.Brightness = math.random(20,100)
Light.Color = Color3.fromRGB(math.random(colorrange1-colorrange2),...)
wait(0.5)
Light.Brightness = -- original brightness
Light.Color = -- original colour
end
wait should be replaced with task.wait due to it having a ton of performance issues. It probably wouldn’t make much of a difference here but it’s generally a good idea to use it anyways.