Complementary Colors Script

You can write your topic however you want, but you need to answer these questions:

  1. What do you want to achieve? I want to make a script to automatically find the correct complementary color of a given color

  2. What is the issue? I’m not sure how to do it!

  3. What solutions have you tried so far? I haven’t found any other solutions on the devforum, but if there is any please link me to them!

Example below!

Its basically:

local InputColor = Color3.fromRGB(78,97,100)

local ComplementaryColor = Color3.fromRGB(255 - InputColor.R, 255 - InputColor.G, 255 - InputColor.B)

With a bit of modification it did work how I wanted it to, Thanks!