Advertisement
Ddaoeoododd

Untitled

Feb 19th, 2025
15
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.41 KB | None | 0 0
  1. -- Dehash remote names
  2. print("Dehashing Remotes..")
  3. local function rename(remotename, hashedremote)
  4. local success, err = pcall(function()
  5. hashedremote.Name = remotename
  6. end)
  7. if not success then
  8. warn("Failed to rename remote: " .. err)
  9. end
  10. end
  11.  
  12. local routerClientInit = getupvalue(require(game:GetService("ReplicatedStorage"):WaitForChild("Fsys")).load("RouterClient").init, 4)
  13. print(routerClientInit) -- Check if the value is correctly fetched
  14. table.foreach(routerClientInit, rename)
  15. print("Dehashing Finished")
  16.  
  17. print("Variables Loading..")
  18. local dialogapp = game:GetService("Players").LocalPlayer.PlayerGui.DialogApp
  19. local textlabel = dialogapp.Dialog.HeaderDialog.Info.TextLabel
  20. local tradeApp = game:GetService("Players").LocalPlayer.PlayerGui.TradeApp
  21. local inputFrame = tradeApp.Frame.NegotiationFrame.ChatFrame.InputFrame.TextboxGroup.TextBox
  22. local TextChatService = game:GetService("TextChatService")
  23. local partnerAccepted = game:GetService("Players").LocalPlayer.PlayerGui.TradeApp.Frame.NegotiationFrame.Body.PartnerOffer.Accepted
  24. local partnerConfirm = game:GetService("Players").LocalPlayer.PlayerGui.TradeApp.Frame.ConfirmationFrame.PartnerOffer.Accepted
  25.  
  26. print("Variables Finished")
  27. print("Loading Functions..")
  28.  
  29. local function acceptTrade(username)
  30. local player = game:GetService("Players"):FindFirstChild(username)
  31. print(player)
  32. if player then
  33. local ohInstance1 = player
  34. local ohBoolean2 = true
  35.  
  36. game:GetService("ReplicatedStorage").API["TradeAPI/AcceptOrDeclineTradeRequest"]:InvokeServer(ohInstance1, ohBoolean2)
  37. print("Accepting")
  38. else
  39. warn("Player not found: " .. username)
  40. end
  41. end
  42.  
  43. local function declineTrade(username)
  44. local player = game:GetService("Players"):FindFirstChild(username)
  45. print(player)
  46. if player then
  47. local ohInstance1 = player
  48. local ohBoolean2 = false
  49.  
  50. game:GetService("ReplicatedStorage").API["TradeAPI/AcceptOrDeclineTradeRequest"]:InvokeServer(ohInstance1, ohBoolean2)
  51. print("Declining")
  52. SendChatMessage("AutoPets | Trade with " .. username .. " completed!")
  53. else
  54. warn("Player not found: " .. username)
  55. end
  56. end
  57.  
  58. local function getUser()
  59. local text = textlabel.Text -- Ensure you get the text from the label
  60. local username = text:match("^(%S+)")
  61. return username
  62. end
  63.  
  64. local function SendChatMessage(Message)
  65. TextChatService.TextChannels.RBXGeneral:SendAsync(Message)
  66. end
  67.  
  68. local function accept(currentPlayer)
  69. while true do
  70. wait()
  71. if not tradeApp.Frame.Visible then
  72. SendChatMessage("BloxLuck | Trade Declined")
  73. break
  74. end
  75.  
  76. if partnerAccepted.ImageTransparency <= 0.4 then
  77. break
  78. end
  79. end
  80.  
  81. game:GetService("ReplicatedStorage"):WaitForChild("API"):WaitForChild("TradeAPI/AcceptNegotiation"):FireServer()
  82.  
  83. wait(5)
  84.  
  85. while true do
  86. wait()
  87. if tradeApp.Frame.Visible == false then
  88. SendChatMessage("BloxLuck | Trade Declined")
  89. break
  90. elseif partnerConfirm.ImageTransparency <= 0.4 then
  91. wait()
  92. print("Confirming Trade")
  93. game:GetService("ReplicatedStorage"):WaitForChild("API"):WaitForChild("TradeAPI/ConfirmTrade"):FireServer()
  94. SendChatMessage("AutoPets | Trade Completed")
  95. break
  96. else
  97. wait()
  98. end
  99. end
  100. end
  101.  
  102. local function findTrades()
  103. for i, v in pairs(game:GetService("Players"):GetChildren()) do
  104. if v.Name ~= game.Players.LocalPlayer.Name and not table.find(_G.Config.blacklistedUsers, v.Name) then
  105. local currentPlayer = v.Name
  106. acceptTrade(currentPlayer)
  107. if tradeApp.Frame.Visible == true then
  108. SendChatMessage("BloxLuck | Trade with " .. currentPlayer .. " Accepted: Deposit")
  109. accept(currentPlayer)
  110. wait(1)
  111. end
  112. end
  113. end
  114. end
  115.  
  116. print("Functions Loaded")
  117. print("Loading Main..")
  118.  
  119. spawn(function()
  120. while wait(_G.Config.delay) do
  121. if tradeApp.Frame.Visible == false then
  122. findTrades()
  123. end
  124. end
  125. end)
  126.  
  127. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(3989, 7529, 16049)
  128. game.Players.LocalPlayer.Character.HumanoidRootPart.Anchored = true
  129.  
  130. print("Main Script Loaded!")
  131.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement