forked from 5S6/Roblox-Group-Finder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
46 lines (36 loc) · 1.41 KB
/
main.py
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import os
import threading
import requests, random
from dhooks import Webhook
import ctypes
ctypes.windll.kernel32.SetConsoleTitleW("Aleks Group Finder")
def groupfinder():
id = random.randint(1000000, 1150000)
r = requests.get(f"https://www.roblox.com/groups/group.aspx?gid={id}")
if 'owned' not in r.text:
re = requests.get(f"https://groups.roblox.com/v1/groups/{id}")
if 'isLocked' not in re.text and 'owner' in re.text:
if re.json()['publicEntryAllowed'] == True and re.json()['owner'] == None:
hook.send(f'Hit: https://www.roblox.com/groups/group.aspx?gid={id}')
print(f"[+] Hit: {id}")
else:
print(f"[-] No Entry Allowed: {id}")
else:
print(f"[-] Group Locked: {id}")
else:
print(f"[-] Group Already Owned: {id}")
print("""
____ _ ____ _ _ ____ ____ ____ ____ _ _ ___
|__| | |___ |_/ [__ | __ |__/ | | | | |__]
| | |___ |___ | \_ ___] |__] | \ |__| |__| |
____ _ _ _ ___ ____ ____
|___ | |\ | | \ |___ |__/
| | | \| |__/ |___ | \
""")
#your webhook
hook = Webhook(input("[-] Enter your webhook url: "))
#number of threads
threads = int(input("[-] How many threads: "))
while True:
if threading.active_count() <= threads:
threading.Thread(target=groupfinder).start()