Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Is there an error with changing my baseplate to random colors?

Asked by 7 years ago
1local myBaseplate = game.Workspace.Baseplate
2 
3while true do
4    wait(0.5)
5    myBaseplate.BrickColor = BrickColor.Random
6end

1 answer

Log in to vote
3
Answered by 7 years ago
Edited 7 years ago

a little error of inattention

1local myBaseplate = game.Workspace.Baseplate
2 
3while true do
4    wait(0.5)
5    myBaseplate.BrickColor = BrickColor.Random() -- Close your DataType for it to work
6end
Ad

Answer this question