html
html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!-- Created by Pro Gamer 12 Nobody -->
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<button onclick=btnRouleteYou() id="getOut">Shoot Yourself</button>
<h2 id="life"></h2>
<h3 id="count"></h3>
<script>
// Roulete
let num = 0;
function btnRouleteYou() {const RouleteH = ["You are Alive!", "You are Alive!", "You are Alive!", "You are Alive!", "You are Alive!", "You Died", "You are Alive!"]
let RR = Math.floor(Math.random() * 6)
console.log(RR)
if (RR === 5) {
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
4
5
6
7
8
9
10
11
12
/* Created by Pro Gamer 12 Nobody */
button {
background-color: lightBlue;
}
h2 {
text-align:center;
}
Enter to Rename, Shift+Enter to Preview
js
js
1
2
3
// Created by Pro Gamer 12 Nobody
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run