So here I do not think it is an error but I feel like I am mssing something. Here is my code:
local Part = Workspace.Part while true do Part.Color = Color3.fromRGB (3,7,5) wait(1.5) Part.Color = Color3.fromRGB (7,18,4) wait(1.5) Part.Color = Color3.fromRGB (6,17,3) wait(1.5) Part.Color = Color3.fromRGB (4,2,6) end --Is There something wrong here? --Coded in the Lua Interpreter.
Is the while loop
not in the correct place?
Thanks for helping.
I think BrickColor is more simple in my opinion so:
local Part = game.Workspace.Part while true do Part.BrickColor = BrickColor.new("newcolor") wait(1.5) Part.BrickColor = BrickColor.new("newcolor") wait(1.5) Part.BrickColor = BrickColor.new("newcolor") wait(1.5) Part.BrickColor = BrickColor.new("newcolor") end