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 6 years ago
local myBaseplate = game.Workspace.Baseplate

while true do
    wait(0.5)
    myBaseplate.BrickColor = BrickColor.Random
end


1 answer

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

a little error of inattention

local myBaseplate = game.Workspace.Baseplate

while true do
    wait(0.5)
    myBaseplate.BrickColor = BrickColor.Random() -- Close your DataType for it to work
end
Ad

Answer this question