Skip to content

Instantly share code, notes, and snippets.

View Core-commits's full-sized avatar
🏠
Working from home

Shiggy Core-commits

🏠
Working from home
View GitHub Profile
world.bricks.forEach(async (brick) => { // Finds all brick possible in the map.
if (brick.name == "Kill") { // Is the specific brick currently on named "Kill"?
brick.touching(debounce((p) => {
p.kill();
}), 500)
}
})
Game.assingRandomTeam = true;
Team1Spawn = world.spawns.find(spawn => spawn.name === "Team1")
Team2Spawn = world.spawns.find(spawn => spawn.name==="Team2")
Team1 = "Team 1 name here";
Team2 = "Team 2 name here";
Game.on("playerJoin", (player) => {
if (player.team.name == Team1){
player.spawnPosition = Team1Spawn.position;
Game.on("playerJoin", (player) => {
player.on("initialSpawn", async () => {
let VAR = 10
for (let i = 0; i < VAR; i++) {
player.topPrint(`Game starts in ${VAR - i} seconds.`)
console.log(VAR)
console.log(i)
await sleep(1000)
if (i == 9) {
Game.on("initialSpawn", (player) => {
let zombie = new Bot("Zombie")
let outfit = new Outfit(zombie)
.body("#0d9436")
.torso("#694813")
.rightLeg("#694813")
from bs4 import BeautifulSoup
import requests as r
import json
import re
def GetPost(url): # Get Post Text Title.
HTML1 = r.get(url).text
[
{
"compiler-option-raw": true,
"display-compile-command": "gcc prog.c",
"display-name": "gcc HEAD",
"language": "C",
"name": "gcc-head-c",
"provider": 0,
"runtime-option-raw": false,
"switches": [
@Core-commits
Core-commits / App.css
Created July 1, 2020 12:51
Brick Hill CSS code
.flex-container,
.fp {
display: flex
}
.flex-container.flex-column,
.fp.flex-column {
flex-direction: column
}
@Core-commits
Core-commits / Common Ip Loggers.txt
Created June 26, 2020 21:45
Keep yourself safe!
iplogger.org
2no.co
iplogger.com
iplogger.ru
yip.su
iplogger.co
iplogger.info
ipgrabber.ru
iplis.ru
02ip.ru
@Core-commits
Core-commits / sword.js
Created June 25, 2020 21:15
Sword Script by Smart Lion
// Sword Script by SmartLion
// Credit not required
// SemVer 1.0.1
// Settings \\
swordDamage = 10 // How much damage does the sword deal when clicked?
swordRange = 8 // How far can the sword hit players?
swordModelID = 2930 // The mesh of the sword from the store ID
@Core-commits
Core-commits / Gun Script.js
Created June 24, 2020 22:01
Made by Phoenix
let tool = new Tool("GUNTEST")
tool.model = 6929
score = 0
tool.on("activated", (p) => {
//console.log(p.username + " has clicked with the tool equipped!")
let brick = new Brick(new Vector3(0,0,0), new Vector3(0.5, 2.5, 0.5), "#f54242")
brick.visibility = 0.5