of     1   

Truste135
#63538007Monday, February 27, 2012 6:58 PM GMT

Im trying to make a brick change its color from medium stone grey to red. Help?
AdamantTale
#63538028Monday, February 27, 2012 6:58 PM GMT

What do you need help with If you want us to make it for you, this is not a requesting forum
Truste135
#63538066Monday, February 27, 2012 7:00 PM GMT

No just how would the script look like. Ill make it diffrent cause dude, its should be something else.
Oysi
#63538072Monday, February 27, 2012 7:00 PM GMT

[ Content Deleted ]
Nicolas77
#63538142Monday, February 27, 2012 7:05 PM GMT

[ Content Deleted ]
Truste135
#63538263Monday, February 27, 2012 7:10 PM GMT

Nope, none of them work.
J_B
#63538615Monday, February 27, 2012 7:27 PM GMT

.... this is not a request forum. but... Do you want it to be if you click the thing?
unholysoda
#63541196Monday, February 27, 2012 8:42 PM GMT

These script will work. script.Parent.BrickColor = BrickColor.new("Bright red") game.Workspace.Part.BrickColor = BrickColor.new("Bright red")
1waffle1
#63543108Monday, February 27, 2012 9:17 PM GMT

His complaint is that it doesn't work. So give him something that works so he'll leave until he realizes that it stops working because he lacks sufficient mental competence. for _, v in ipairs(workspace:GetChildren()) do if v:IsA("BasePart") and v ~= workspace.Terrain then if v.BrickColor == BrickColor.new("Medium stone grey") then v.BrickColor = BrickColor.Red() break end end end

    of     1