How to make a change Gui Theme

:

  1. What do you want to achieve? Keep it simple and clear!
    How to make a script that change Gui colors but some guis not
  2. What is the issue? Include screenshots / videos if possible!
    I have tried by add al guide I have in tables but that is to much work
  3. What solutions have you tried so far? Did you look for solutions on the Developer Hub?
Local color1 = {
Script.parent.gui,
-- and all other gui
}

is there a simpler way

1 Like

hi there!

here is how i would do it:

local instancestheme = {
   color_1 = {
      script.Parent = {
          BackgroundColor3=true
      }
   }
}

you should add all the colors in your ui to a table, and then add objects to the color.

there is not really an easy way to do it, but this is the best one for most people.

1 Like