of     1   

Raildex
#182931316Wednesday, February 03, 2016 2:10 PM GMT

I want to assign a bricks color to the value of its x Position, how can I get this.
128Gigabytes
#182931418Wednesday, February 03, 2016 2:14 PM GMT

This question makes no sense at all .
NovusTheory
#182931446Wednesday, February 03, 2016 2:15 PM GMT

BrickColor.Color Convert each one to a Vector3 @128Gig It actually does make sense because I see why he would use it
Raildex
#182931513Wednesday, February 03, 2016 2:18 PM GMT

local part = script.Parent local x while true do x = part.Position part.BrickColor = BrickColor.new(Color3.new(x)) wait() end this is kinda what im going for^
128Gigabytes
#182931530Wednesday, February 03, 2016 2:19 PM GMT

The question makes no sense because I don't see what he wants not because I don't see why. And I don't think why you posted is what he wants. He wants a bircks color to be equal to its position on the x axis You told him how to get the Color3 of a BrickColor?
Raildex
#182931556Wednesday, February 03, 2016 2:20 PM GMT

Im mainly just making this to test some stuff and learn more about scripting
128Gigabytes
#182931622Wednesday, February 03, 2016 2:23 PM GMT

Why did you say its x position if you wanted its position Also brickColors given a color3 will round to the nearest BrickColor you can't just use any color you want.
NovusTheory
#182931631Wednesday, February 03, 2016 2:24 PM GMT

128 I told him to get the Color3 of a brick color and change the parts position (x) to the Color3 (This case Color3.r)
128Gigabytes
#182931691Wednesday, February 03, 2016 2:26 PM GMT

Thats not what he wanred because thats not what he said and you posted it because you were guessing at what he wanted because the question didn't make sense.
Raildex
#182931731Wednesday, February 03, 2016 2:28 PM GMT

Sorry I wasnt thinking in terms of RGB when I titled the post, my original plan was to create the color based on the parts position, I was going to set each of the vectors to a variale and then have them as the color ints
NovusTheory
#182931771Wednesday, February 03, 2016 2:29 PM GMT

@Raildex You said it the other way.....
128Gigabytes
#182931861Wednesday, February 03, 2016 2:33 PM GMT

No, he didn't "I want to assign a bricks color" So already you saying he wanted to set the position is wrong. " to the value of its x Position, " So he wants to assign the BrickColor to the parts Position.X
NovusTheory
#182932035Wednesday, February 03, 2016 2:39 PM GMT

wtf I read it wrong then
Raildex
#182932044Wednesday, February 03, 2016 2:39 PM GMT

local part = script.Parent local x local y local z while true do x = part.Position.X y = part.Position.Y z = part.Position.Z part.BrickColor = BrickColor.new(Color3.new(x,y,z)) wait() end am I getting any closer here?^
NovusTheory
#182932515Wednesday, February 03, 2016 2:56 PM GMT

math.floor them

    of     1