I was wondering, it is easy to just change a brick color using the property tab, but out of curiosity, is it possible to change it using a script?
1 | local part = game.Workspace.Part |
2 | part.BrickColor = BrickColor.new( "Really red" ) |
This snippet will change the color of part to Really red.
1 | local paint = game.Workspace.Part -- name whatever your part is -- |
2 | local color = BrickColor.new |
3 | paint.BrickColor = BrickColor.new( "Really blue" ) |
Heres normal
1 | game.Workspace.Part.BrickColor = BrickColor.new( "Really blue" ) |
Or if you didn't want to put color and wanted to make a efforted code :
1 | local new = "Really blue" |
2 | game.Workspace.Part.BrickColor = BrickColor.new( "New" ) |
Heres a welcome
1 | game.starterGUI.SurfaceGUI.TextLabel.Text = "Your welcome" |