Advertisement
Guest User

Enjoi

a guest
Jun 29th, 2020
572
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.58 KB | None | 0 0
  1. try:
  2. from threading import Thread
  3. import ctypes,random,requests,threading
  4. except:
  5. print("Make sure to install module requests")
  6.  
  7. proxies = open("proxies.txt", encoding="UTF-8", errors="ignore").read().splitlines()
  8. timeout = 5
  9. write_logs = False
  10. groups_checked = []
  11.  
  12. print("Visax V3! Loaded")
  13. print("Running On 500 Threads")
  14. print("Finding A Group with even 1 robux is impossible! Just Quit")
  15. print("This thing works on http/https proxies")
  16. print("Discord : Vision#1420\n")
  17. def hack():
  18. while(True):
  19. run(random.randint(0,5000000))
  20.  
  21. checked = 0
  22. errors1 = 0
  23. valid = 0
  24.  
  25.  
  26. def run(group_id):
  27. global checked
  28. global errors1
  29. global valid
  30. if group_id not in groups_checked:
  31. with requests.Session() as (c):
  32. checked = checked+1
  33. ctypes.windll.kernel32.SetConsoleTitleW(f"Vishax V3|Checked : {checked}|Valid : {valid}|Errors : {errors1}")
  34. https_proxy = random.choice(proxies)
  35. proxyDict = {"https" : https_proxy,"http" : https_proxy}
  36. url = f"https://groups.roblox.com/v1/groups/{group_id}"
  37. groups_checked.append(groups_checked)
  38. try:
  39. req = c.get(url=url,proxies=proxyDict,timeout=timeout).json()
  40. try:
  41. locked = req['isLocked']
  42. except:
  43. locked = False
  44. if req['owner'] is None and req['publicEntryAllowed'] is True and locked is False:
  45. valid = valid+1
  46. try:
  47. members = req["memberCount"]
  48. c.get(f"https://economy.roblox.com/v1/groups/{group_id}/currency",timeout=timeout).json()['robux']
  49. print(f"Found {group_id} | Members : {members} | Robux$$ : {robux}$")
  50. file = open("Groups.txt","a").write(f"Found {group_id} | Members : {members} | Robux$$ : {robux}$ \n")
  51. file.close()
  52. except:
  53. print(f"Found {group_id} | Members : {members} | Robux$$ : Private")
  54. file = open("Groups.txt","a").write(f"Found {group_id} | Members : {members} | Robux$$ : Private \n")
  55. file.close()
  56. except Exception as e:
  57. errors1 = errors1+1
  58. if write_logs is True:
  59. errors = open("errors.txt","a").write(str(f"{e}\n"))
  60.  
  61.  
  62. threads = []
  63.  
  64.  
  65. for i in range(1000):
  66. threads.append(Thread(target=hack))
  67.  
  68. for thread in threads:
  69. thread.start()
  70.  
  71. for thread in threads:
  72. thread.join()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement