color3 not working lua

To use the Color3 datatype in Lua, you need to make sure that you are using the correct syntax and that you have the appropriate libraries imported. Here are the steps to use Color3 in Lua:

  1. Import the Color3 library: lua local Color3 = require("Color3")

  2. Create a Color3 object: lua local myColor = Color3.new(1, 0, 0)

In this example, myColor is a Color3 object that represents the color red. The new function is used to create a new Color3 object, and the arguments passed to it represent the red, green, and blue components of the color, respectively. In this case, we are setting the red component to 1, the green component to 0, and the blue component to 0.

  1. Access the individual components of the Color3 object: lua local red = myColor.R local green = myColor.G local blue = myColor.B

You can access the red, green, and blue components of the Color3 object using the .R, .G, and .B properties, respectively. In this example, we are storing the red, green, and blue components of myColor in separate variables.

  1. Use the Color3 object in your code: lua print(myColor)

You can use the Color3 object in any way you like, depending on your specific use case. In this example, we are simply printing the myColor object to the console.

By following these steps, you should be able to use the Color3 datatype in Lua and work with colors in your code. Let me know if you have any further questions.