I made a bunch of lanterns that flicker in unison. However, I want to change the color and don't want to go through copy and pasting and deleting scripts again (I tried to save and it crashed without saving). Please, please tell me there is an easier way. Thanks for reading.
Sadly, there is not a way, but I would recommend to use one script that does it all. You can create a function and call it multiple times. You can even use the same function for different colors. Like this:
function color(PartName, Color) local part = game.Workspace:FindFirstChild(PartName) part.BrickColor = Color end) :color(ThisIsMyPartName, "Really Blue")