Hey. I’m looking for a plugin that can change the color value of all parts in a game with a specific color value. For example, if I’d be able to change all parts with the color of 255, 0, 0 to something like 0, 255, 0 etc if I wanted to. I know this is quite specific but I could really use something like that. If you know of something like that, please let me know.
I have no idea if there’s a plugin to do that, but here’s a code snippet to do it. Just run it in the command line. Just be sure to save your changes before:
local color = Color3.fromRGB(0, 255, 0)
for _,v in pairs(workspace:GetDescendants()) do
if (v:IsA("BasePart")) then
v.Color = color
end
end
4 Likes
Aah, thanks. That would actually work fine!