Advertisement
Ddaoeoododd

Untitled

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