RaildexJoin Date: 2009-12-06 Post Count: 934 |
I want to assign a bricks color to the value of its x Position, how can I get this. |
|
|
This question makes no sense at all . |
|
|
BrickColor.Color
Convert each one to a Vector3
@128Gig
It actually does make sense because I see why he would use it |
|
RaildexJoin Date: 2009-12-06 Post Count: 934 |
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^ |
|
|
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? |
|
RaildexJoin Date: 2009-12-06 Post Count: 934 |
Im mainly just making this to test some stuff and learn more about scripting |
|
|
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. |
|
|
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)
|
|
|
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. |
|
RaildexJoin Date: 2009-12-06 Post Count: 934 |
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 |
|
|
@Raildex
You said it the other way..... |
|
|
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 |
|
|
RaildexJoin Date: 2009-12-06 Post Count: 934 |
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?^ |
|
|