<div id="shop-mod">
<style>
<script>
//this is a sample flashlight effect
$(document).ready(function() {
$(this).mousemove(function(e) {
$("#light").css({
"top": e.pageY - 250,
"left": e.pageX - 250
})
}).mousedown(function(e) {
switch (e.which) {
case 1:
$("#light").toggleClass("light-off");
break;
case 2:
break;
case 3:
break;
default:
}
})
})
</script>
<div id="light"></div>
<style>
body,
html {
padding: 0;
margin: 0;
background-color:rgba(0,0,0,1.00);
color:rgba(255,255,255,1.00);
overflow: hidden;
z-index: 20;
color: rgba(0,0,0,1.00);
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
#content {
width: 100%;
height: 100vh;
}
#light {
position: absolute;
width: 500px;
height: 500px;
box-shadow: inset 0 0 150px 150px #000;
background: #fff;
z-index: 10;
}
.light-off {
box-shadow: inset 0 0 150px 250px #000 !important;
}
.pogi {
position: absolute;
top: 40%;
left: 45%;
}
</style>
</div>
<script>
let shopMod = document.getElementById("shop-mod");
document.body.appendChild(shopMod);
</script>
Welcome To The Survivors!!!
I tried putting this in ur game and save doesnt work ;-;