Advertisement
Peerapat_PKY

Maru_AD_DT

Sep 4th, 2024 (edited)
2,150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 5.23 KB | None | 0 0
  1. local lobbyCount = 0
  2. local maxLobbyCount = 5
  3.  
  4. repeat task.wait() until game:IsLoaded()
  5. pcall(function()
  6.     spawn(function()
  7.         while true do
  8.             local Map
  9.             local IntroGui = game:GetService("Players").LocalPlayer.PlayerGui:FindFirstChild("MatchIntroGui")
  10.             if IntroGui then
  11.                 Map = "In Game"
  12.                 getgenv().Configuration = {
  13.                     ['Enabled'] = true,
  14.                     ['Enabled Challenge'] = false,
  15.                     ['PC Name'] = 'dekonemillionbaht',
  16.                     ['Delay'] = 0,
  17.                     ['Leave Delay'] = 0,
  18.                     ['EquipBest'] = true,
  19.                     ['Leave At Wave'] = 31,
  20.                     ['Leave Method'] = 2, -- 1 = Sell,  2 = Leave
  21.                     ['TradingMode'] = false,
  22.                     ['ClaimBattlepass'] = true,
  23.                     ['Roll Mythic'] = false,
  24.                     ['Roll Method'] = 1,
  25.                     ['Auto Feed Mythic'] = false,
  26.                     ['Use Auto Sell'] = false,
  27.                     ['Game Speed'] = {
  28.                         Enabled = true,
  29.                         Speed = 1, -- 1 , 2 ,3
  30.                     },
  31.                     ['Sell Config'] = {
  32.                         ['Rare'] = false,
  33.                         ['Epic'] = false,
  34.                         ['Legendary'] = false,
  35.                         ['Rare Shiny'] = false,
  36.                         ['Epic Shiny'] = false,
  37.                         ['Legendary Shiny'] = false,
  38.                     },
  39.                     ['Placement Distance'] = 25,
  40.                 };
  41.                 getgenv().key = '1a9a8b51-c3ee-4c5c-bb21-36f4ee05a56c'
  42.                 loadstring(game:HttpGet('https://raw.githubusercontent.com/Xenon-Trash/Loader/main/Loader.lua'))()
  43.                 break
  44.             else
  45.                 Map = "In Lobby"
  46.                 lobbyCount = lobbyCount + 1
  47.             end
  48.            
  49.             print("สถานะปัจจุบัน: " .. Map)
  50.             print("จำนวนครั้งที่เจอ 'In Lobby': " .. lobbyCount)
  51.            
  52.             if lobbyCount >= maxLobbyCount then
  53.                 print("เจอ 'In Lobby' ครบ 60 ครั้ง ออกจากลูป")
  54.  
  55.  
  56.                 local player = game:GetService("Players").LocalPlayer
  57.                 local playerGui = player:FindFirstChild("PlayerGui")
  58.                 if playerGui then
  59.                     local pages = playerGui:FindFirstChild("PAGES")
  60.                     if pages then
  61.                         if pages.Enabled then
  62.                             print("PAGES is enabled")
  63.                             getgenv().Configuration = {
  64.                                 ['Enabled'] = true,
  65.                                 ['Enabled Challenge'] = false,
  66.                                 ['PC Name'] = 'dekonemillionbaht',
  67.                                 ['Delay'] = 0,
  68.                                 ['Leave Delay'] = 0,
  69.                                 ['EquipBest'] = true,
  70.                                 ['Leave At Wave'] = 31,
  71.                                 ['Leave Method'] = 2, -- 1 = Sell,  2 = Leave
  72.                                 ['TradingMode'] = false,
  73.                                 ['ClaimBattlepass'] = true,
  74.                                 ['Roll Mythic'] = false,
  75.                                 ['Roll Method'] = 1,
  76.                                 ['Auto Feed Mythic'] = false,
  77.                                 ['Use Auto Sell'] = false,
  78.                                 ['Game Speed'] = {
  79.                                     Enabled = true,
  80.                                     Speed = 1, -- 1 , 2 ,3
  81.                                 },
  82.                                 ['Sell Config'] = {
  83.                                     ['Rare'] = false,
  84.                                     ['Epic'] = false,
  85.                                     ['Legendary'] = false,
  86.                                     ['Rare Shiny'] = false,
  87.                                     ['Epic Shiny'] = false,
  88.                                     ['Legendary Shiny'] = false,
  89.                                 },
  90.                                 ['Placement Distance'] = 25,
  91.                             };
  92.                             getgenv().key = '1a9a8b51-c3ee-4c5c-bb21-36f4ee05a56c'
  93.                             loadstring(game:HttpGet('https://raw.githubusercontent.com/Xenon-Trash/Loader/main/Loader.lua'))()
  94.                         end
  95.                     else
  96.                         local targetPlaceId = 17017769292
  97.                         if game.PlaceId == targetPlaceId then
  98.                             wait(5)
  99.                             local Players = game:GetService("Players")
  100.                             local player = Players.LocalPlayer
  101.        
  102.                             if player then
  103.                                 player:Kick("BUG SEVER by Sanbux")
  104.                             end
  105.                         end
  106.                         print("PAGES does not exist")
  107.                     end
  108.                 else
  109.                     print("PlayerGui does not exist")
  110.                 end
  111.                 break
  112.             end
  113.            
  114.             wait(1)
  115.         end
  116.     end)
  117. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement