Change color FRAME

Hello, I want to change the color of a FRAME with a script, can you help me?

1 Like

Color is a property of the frame. To update values of properties you write:

<object>.<property> = <Value>

In your case it would be:

frame.BackgroundColor3 = Color3.fromRGB(100, 200, 100) -- Replace with desired colour
1 Like

Thanks you for the information.