Gimkit Cheat Script
Gimkit Cheat Script
/*
Gimkit hack by Drew Snow
Fri Aug 23 2019 14:57:53 GMT-0700 (Pacific Dayligh
t Time)
*/
function Exploit () {
alert(‘Notice: This script is in beta and currently only works on demos.’)
this.getSpans = () => document.getElementsByTagName(‘span’);
this.questions = window..gameData.questions;
this.clickText = function (text) {
let spans = this.getSpans();
for (let i = 0; i < spans.length; i++)
if (text == spans[i].textContent.trim()) return spans[i].click();
Gimkit Cheat Script – Gimkit Cheat Script
Gimkit Cheat Script
this.correctAnswer = (questions) => questions.answers.filter(e => e.correct)[0];
this.answerQuestion = function () {
let spans = this.getSpans();
for (let i = 0; i < spans.length; i++) {
let text = spans[i].textContent.trim();
for (let j = 0; j < this.questions.length; j++) {
let correct = this.correctAnswer(this.questions[j]);
Gimkit Cheat Script
if (this.questions[j].text.trim() == text) return this.clickText(correct.text);
}
}
};
}
let Session = new Exploit();
setInterval(() => {
Gimkit Cheat Script
// Find the answer and click it every 100ms
Session.answerQuestion();
}, 100);
Gimkit Cheat Script – 2022
Gimkit Cheat Script –