Skip to content

Instantly share code, notes, and snippets.

View enzomtpYT's full-sized avatar

enzomtp enzomtpYT

View GitHub Profile
CREATE TABLE client(
idClient INT,
nomClient VARCHAR(50) NOT NULL,
prenomClient VARCHAR(50) NOT NULL,
dateNaissanceClient DATE,
sexeClient INT,
telClient INT,
mailClient VARCHAR(50),
adresse1Client VARCHAR(50) NOT NULL,
adresse2Client VARCHAR(50) NOT NULL,
--[[
WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk!
]]
-- Dark Dex --
if game:GetService'CoreGui':FindFirstChild'Dex' then
game:GetService'CoreGui'.Dex:Destroy();
end
math.randomseed(tick())
@enzomtpYT
enzomtpYT / Discord-Logger.py
Last active May 13, 2024 22:38
Discord messager logger selfbot python (don't support polls)
from discord.ext import commands
from discord_webhook import DiscordWebhook, DiscordEmbed
import requests, os, datetime
print("Version 2.0 by enzomtp")
webhook_url = ""
# Verify and create count.txt file if it doesn't exist
if not os.path.exists("count.txt"):
with open("count.txt", "w") as file:
file.write("0")
# create temp folder if it doesn't already exists or empty it if it does
from dataclasses import dataclass
import random, os, time
from colorama import Fore, Back, Style
@dataclass
class Character():
name: str
__atq: int
__hp: int
__potions: int