local part = workspace.MyPartpart.Transparency = 0.5part.Color = Color3.fromRGB(255, 0, 0)part.Size = Vector3.new(10, 2, 5)part.Position = Vector3.new(0, 10, 0)local part = workspace.MyPart
part.Transparency = 1
part.CanCollide = falselocal part = workspace.MyPart
part.Touched:Connect(function()
part.Color = Color3.fromRGB(0, 255, 0)
end)