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

How do you fix the color changing?

Asked by 5 years ago

local players = game.workspace.players

local baseplatecolor = game.workspace.baseplate.brickcolor

local color = true

while true do

baseplatecolor.new("red")

wait(1)

baseplatecolor.new("blue")

wait(1)

end

0
players doesnt exist in workspace, it only exist in game/game.Players) not game.Workspace.Players Gameplayer365247v2 1055 — 5y
0
an your script doesnt rlly make sence, only ur question Gameplayer365247v2 1055 — 5y

1 answer

Log in to vote
0
Answered by 5 years ago

Replace "players" with Players. Replace workspace with Workspace if you use game.Workspace. to change a brickcolor, you type:

workspace.Baseplate.BrickColor = BrickColor.new(<COLOR>)
Ad

Answer this question