I am trying to take brick (a) and touch it to brick (b) and brick (b) take the color of brick (a) when they touch.
local parts = workspace:FindPartsInRegion3(FillArea) for _, part in pairs(parts) do if part.Parent.Name == "NotUsedBlock" then model:GetChildren("Build") do model.Build.BrickColor.new = part.BrickColor end
local parts = workspace:FindPartsInRegion3(FillArea) for _, part in pairs(parts) do if part.Parent.Name == "NotUsedBlock" then part.Touched:Connect(function(otherPart) otherPart.BrickColor = part.BrickColor end) end end