The Aurora Police Department is searching for a group of adults who are accused of trying to lure two young girls into their car and threatening the girls’ uncle with a gun Saturday.
Police said three men and one woman were in the car when they approached the girls in a parking lot and offered them money to get inside. The girls, 7 and 12 years old, ran away and told their uncle.
When the uncle approached the car to confront the group, one of the suspects pulled out a gun and pointed it at him, police said. The uncle told police he saw multiple other weapons inside the car.
After threatening the uncle, the group drove off without firing. No one was injured, police said.
The incident happened about 4:15 p.m. Saturday near East Colfax Avenue and Chambers Road. The suspects took off south on Chambers Road, police said.
Police said they do not believe the girls knew any of the suspects.
The four suspects were described as Hispanic adults. Police said the driver was a man, the front seat passenger was a woman and the two back seat passengers were men.
The car is described as a white Volvo XC60 or XC90 SUV with the rear window covered in plastic and tape around the edges.
Police said the group should be considered armed and dangerous. Anyone who sees them or the suspect vehicle is asked not to approach and to call 911 immediately.
Anyone with information can call Metro Denver Crime Stoppers at 720-913-7867. Tipsters can be anonymous and are eligible for a $2,000 reward.
Catch up with a rundown of the 7 most important and interesting stories delivered to your inbox every Thursday.
Success! Thank you for subscribing to our newsletter.
function subscribeSuccess() {
var nsltrform = document.querySelector(“#nsltr”);
var nsltrSuccess = document.querySelector(“#successnsltr”);
nsltrform.classList.add(“hideblock”);
nsltrSuccess.classList.remove(“hideblock”);
}
function validateEmail(email) {
return String(email)
.toLowerCase()
.match(
/^(([^()[]\.,;:s@”]+(.[^()[]\.,;:s@”]+)*)|(“.+”))@(([[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}])|(([a-zA-Z-0-9]+.)+[a-zA-Z]{2,}))$/
);
}
function validateEmailAddress() {
const result = document.querySelector(“#result”);
const email = document.querySelector(“#email”).value;
result.innerText = “”;
if(validateEmail(email)) {
newsletterSubscribe(email);
} else {
result.innerText = ‘The email entered: ‘ + email + ‘ is not valid :(‘;
result.style.color = “red”;
}
return false;
}
function newsletterSubscribe(email) {
fetch(“https://services.gazette.com/mg2-newsletters.php?action=subscribe&site=denvergazette.com&emailPreferenceId=69&email=” + email, {
method: “POST”
}).then(res => {
console.log(“SUCCESSFUL POST”);
subscribeSuccess();
});
}
#nsltr {
min-width: 100%;
margin: 10px 0;
padding: 10px 20px;
background-color: #2076b3;
background-image: url(https://static.gazette.com/emails/circ/Audience%20Images/dg%20weekly%207.png);
background-size: cover;
}
#nsltr-header {
color: #fff4f4;
}
#nsltr-body {
text-align: center;
color: #ffffff;
}
#nsltr-button {
margin-top: 5px;
}
#successnsltr {
min-width: 100%;
margin: 10px 0;
padding: 10px 20px;
background-color: green;
text-align: center;
color: white;
}
#successnsltr a {
color: white;
}
.hideblock {
display:none;
}
h6 a {
color: black;
text-decoration: none;
padding: 5px;
background-color: #bbccdd;
font-weight: 600;
}
@media only screen and (min-width: 768px) {
#nsltr {
background-image: url(https://static.gazette.com/emails/circ/Audience%20Images/dg%20weekly%207.png);
background-size: cover;
}
}