The Arapahoe County Sheriff’s Office is investigating reports of threats made against Eaglecrest High School near Aurora over the past two days.
Deputies said the first threat was made via a Snapchat post Tuesday, in which a student said he would “shoot up” the school the next day.
Screenshots of the Snapchat posted to Twitter say, “i am shooting up eagle crest highschool tomorrow i am sick and tired of the bulling and hate everyone do not come to school tomorrow me and my friends will be there waiting for you.”
Other students reported the threat and deputies quickly identified the student responsible. Though the student initially denied making the post, deputies found the post in his deleted archives, at which point the student said he did it to impress his friends, deputies said.
The student is still under investigation and is not currently allowed back in the school, deputies said.
On Wednesday, deputies received reports of social media posts from students claiming to have seen a gun inside of Eaglecrest High School.
Deputies said they tracked down and interviewed all the witnesses Wednesday afternoon. The students claimed they didn’t personally see any weapons but heard rumors or saw posts about the sightings.
Deputies said they do not believe either of the threats were credible.
“The investigation has not been able to substantiate the validity of any threats in the last two days,” the sheriff’s office said in a statement. “There is no danger to the school or the surrounding area.”
Eaglecrest High School has not been placed on lockdown in the last two days as a result of either of the threats.
The investigations are ongoing, deputies said.
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;
}
}