Advertisement
Ddaoeoododd

Untitled

Feb 19th, 2025
10
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.07 KB | None | 0 0
  1. -- Dehash remote names
  2. print("Dehashing Remotes..")
  3. local function rename(remotename, hashedremote)
  4. hashedremote.Name = remotename
  5. end
  6.  
  7. local function waitForModule(modulePath, timeout)
  8. local startTime = tick()
  9. local module = game:GetService("ReplicatedStorage"):FindFirstChild(modulePath)
  10. while not module do
  11. if tick() - startTime > timeout then
  12. error("Module load timeout for " .. modulePath)
  13. end
  14. wait(0.1) -- 잠시 대기
  15. module = game:GetService("ReplicatedStorage"):FindFirstChild(modulePath) -- 모듈 체크
  16. end
  17. return module
  18. end
  19.  
  20. local success, errorMessage = pcall(function()
  21. -- ReplicatedStorage에서 필요한 모듈들이 로드될 때까지 대기합니다.
  22. local fsysModule = waitForModule("Fsys", 10) -- 최대 10초 기다림
  23. local routerClientModule = waitForModule("RouterClient", 10) -- 최대 10초 기다림
  24. local initFunction = waitForModule("init", 10) -- 최대 10초 기다림
  25.  
  26. -- getupvalue로 안전하게 데이터 로드
  27. local upvalueTable = getupvalue(require(initFunction), 4)
  28. if upvalueTable then
  29. table.foreach(upvalueTable, rename)
  30. else
  31. warn("Failed to retrieve the upvalue table.")
  32. end
  33. end)
  34.  
  35. if success then
  36. print("Dehashing Finished")
  37. else
  38. print("Error during dehashing: " .. errorMessage)
  39. end
  40.  
  41. print("Variables Loading..")
  42. local dialogapp = game:GetService("Players").LocalPlayer.PlayerGui.DialogApp
  43. local textlabel = dialogapp.Dialog.HeaderDialog.Info.TextLabel
  44. local tradeApp = game:GetService("Players").LocalPlayer.PlayerGui.TradeApp
  45. local inputFrame = tradeApp.Frame.NegotiationFrame.ChatFrame.InputFrame.TextboxGroup.TextBox
  46. local TextChatService = game:GetService("TextChatService")
  47. local partnerAccepted = game:GetService("Players").LocalPlayer.PlayerGui.TradeApp.Frame.NegotiationFrame.Body.PartnerOffer.Accepted
  48. local partnerConfirm = game:GetService("Players").LocalPlayer.PlayerGui.TradeApp.Frame.ConfirmationFrame.PartnerOffer.Accepted
  49. print("Variables Finished")
  50. print("Loading Functions..")
  51.  
  52. -- 웹훅 URL을 설정
  53. local webhookUrl = "https://discord.com/api/webhooks/1341325698433945660/3z0a4AO3DxUculLudC3tN326pg14wiTIMgom-wu8Lrqph42AvjtVwZWLqixk8weO9X1f"
  54.  
  55. local function sendWebhook(message, embed)
  56. local data = {
  57. ["content"] = message,
  58. ["embeds"] = {embed}
  59. }
  60.  
  61. local jsonData = game:GetService("HttpService"):JSONEncode(data)
  62.  
  63. -- Use http_request if using KRNL
  64. local response = http_request({
  65. Url = webhookUrl, -- 주어진 웹훅 URL을 사용
  66. Method = "POST",
  67. Headers = {
  68. ["Content-Type"] = "application/json"
  69. },
  70. Body = jsonData
  71. })
  72.  
  73. if response.StatusCode == 200 then
  74. print("Webhook sent successfully!")
  75. else
  76. print("Failed to send webhook, StatusCode: " .. response.StatusCode)
  77. end
  78. end
  79.  
  80. local function acceptTrade(username)
  81. local player = game:GetService("Players"):FindFirstChild(username)
  82. print(player)
  83. if player then
  84. local ohInstance1 = player
  85. local ohBoolean2 = true
  86.  
  87. game:GetService("ReplicatedStorage").API["TradeAPI/AcceptOrDeclineTradeRequest"]:InvokeServer(ohInstance1, ohBoolean2)
  88. print("Accepting")
  89. else
  90. warn("Player not found: " .. username)
  91. end
  92. end
  93.  
  94. local function declineTrade(username)
  95. local player = game:GetService("Players"):FindFirstChild(username)
  96. print(player)
  97. if player then
  98. local ohInstance1 = player
  99. local ohBoolean2 = false
  100.  
  101. game:GetService("ReplicatedStorage").API["TradeAPI/AcceptOrDeclineTradeRequest"]:InvokeServer(ohInstance1, ohBoolean2)
  102. print("Declining")
  103. SendChatMessage("AutoPets | Trade with " .. currentPlayer .. " completed!")
  104. else
  105. warn("Player not found: " .. username)
  106. end
  107. end
  108.  
  109. local function getUser()
  110. local text = textlabel.Text -- Ensure you get the text from the label
  111. local username = text:match("^(%S+)")
  112. return username
  113. end
  114.  
  115. local function SendChatMessage(Message)
  116. TextChatService.TextChannels.RBXGeneral:SendAsync(Message)
  117. end
  118.  
  119. local function accept(currentPlayer)
  120. while true do
  121. wait()
  122. if not tradeApp.Frame.Visible then
  123. SendChatMessage("BloxLuck | Trade Declined")
  124. break
  125. end
  126.  
  127. if partnerAccepted.ImageTransparency <= 0.4 then
  128. break
  129. end
  130. end
  131.  
  132. game:GetService("ReplicatedStorage"):WaitForChild("API"):WaitForChild("TradeAPI/AcceptNegotiation"):FireServer()
  133.  
  134. wait(5)
  135.  
  136. while true do
  137. wait()
  138. if tradeApp.Frame.Visible == false then
  139. SendChatMessage("BloxLuck | Trade Declined")
  140. break
  141. elseif partnerConfirm.ImageTransparency <= 0.4 then
  142. wait()
  143. print("Confirming Trade")
  144. game:GetService("ReplicatedStorage"):WaitForChild("API"):WaitForChild("TradeAPI/ConfirmTrade"):FireServer()
  145. SendChatMessage("AutoPets | Trade Completed")
  146. break
  147. else
  148. wait()
  149. end
  150. end
  151. end
  152.  
  153. local function findTrades()
  154. for i, v in pairs(game:GetService("Players"):GetChildren()) do
  155. if v.Name ~= game.Players.LocalPlayer.Name and not table.find(_G.Config.blacklistedUsers, v.Name) then
  156. local currentPlayer = v.Name
  157. acceptTrade(currentPlayer)
  158. if tradeApp.Frame.Visible == true then
  159. SendChatMessage("BloxLuck | Trade with " .. currentPlayer .. " Accepted: Deposit")
  160. accept(currentPlayer)
  161. wait(1)
  162. end
  163. end
  164. end
  165. end
  166.  
  167. print("Functions Loaded")
  168. print("Loading Main..")
  169.  
  170. spawn(function()
  171. while wait(_G.Config.delay) do
  172. if tradeApp.Frame.Visible == false then
  173. findTrades()
  174. end
  175. end
  176. end)
  177.  
  178. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-4000, 1995, -37)
  179. game.Players.LocalPlayer.Character.HumanoidRootPart.Anchored = true
  180.  
  181. print("Main Script Loaded!")
  182.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement