Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Dehash remote names
- print("Dehashing Remotes..")
- local function rename(remotename, hashedremote)
- local success, err = pcall(function()
- hashedremote.Name = remotename
- end)
- if not success then
- warn("Failed to rename remote: " .. err)
- end
- end
- local routerClientInit = getupvalue(require(game:GetService("ReplicatedStorage"):WaitForChild("Fsys")).load("RouterClient").init, 4)
- print(routerClientInit) -- Check if the value is correctly fetched
- table.foreach(routerClientInit, rename)
- print("Dehashing Finished")
- print("Variables Loading..")
- local dialogapp = game:GetService("Players").LocalPlayer.PlayerGui.DialogApp
- local textlabel = dialogapp.Dialog.HeaderDialog.Info.TextLabel
- local tradeApp = game:GetService("Players").LocalPlayer.PlayerGui.TradeApp
- local inputFrame = tradeApp.Frame.NegotiationFrame.ChatFrame.InputFrame.TextboxGroup.TextBox
- local TextChatService = game:GetService("TextChatService")
- local partnerAccepted = game:GetService("Players").LocalPlayer.PlayerGui.TradeApp.Frame.NegotiationFrame.Body.PartnerOffer.Accepted
- local partnerConfirm = game:GetService("Players").LocalPlayer.PlayerGui.TradeApp.Frame.ConfirmationFrame.PartnerOffer.Accepted
- print("Variables Finished")
- print("Loading Functions..")
- local function acceptTrade(username)
- local player = game:GetService("Players"):FindFirstChild(username)
- print(player)
- if player then
- local ohInstance1 = player
- local ohBoolean2 = true
- game:GetService("ReplicatedStorage").API["TradeAPI/AcceptOrDeclineTradeRequest"]:InvokeServer(ohInstance1, ohBoolean2)
- print("Accepting")
- else
- warn("Player not found: " .. username)
- end
- end
- local function declineTrade(username)
- local player = game:GetService("Players"):FindFirstChild(username)
- print(player)
- if player then
- local ohInstance1 = player
- local ohBoolean2 = false
- game:GetService("ReplicatedStorage").API["TradeAPI/AcceptOrDeclineTradeRequest"]:InvokeServer(ohInstance1, ohBoolean2)
- print("Declining")
- SendChatMessage("AutoPets | Trade with " .. username .. " completed!")
- else
- warn("Player not found: " .. username)
- end
- end
- local function getUser()
- local text = textlabel.Text -- Ensure you get the text from the label
- local username = text:match("^(%S+)")
- return username
- end
- local function SendChatMessage(Message)
- TextChatService.TextChannels.RBXGeneral:SendAsync(Message)
- end
- local function accept(currentPlayer)
- while true do
- wait()
- if not tradeApp.Frame.Visible then
- SendChatMessage("BloxLuck | Trade Declined")
- break
- end
- if partnerAccepted.ImageTransparency <= 0.4 then
- break
- end
- end
- game:GetService("ReplicatedStorage"):WaitForChild("API"):WaitForChild("TradeAPI/AcceptNegotiation"):FireServer()
- wait(5)
- while true do
- wait()
- if tradeApp.Frame.Visible == false then
- SendChatMessage("BloxLuck | Trade Declined")
- break
- elseif partnerConfirm.ImageTransparency <= 0.4 then
- wait()
- print("Confirming Trade")
- game:GetService("ReplicatedStorage"):WaitForChild("API"):WaitForChild("TradeAPI/ConfirmTrade"):FireServer()
- SendChatMessage("AutoPets | Trade Completed")
- break
- else
- wait()
- end
- end
- end
- local function findTrades()
- for i, v in pairs(game:GetService("Players"):GetChildren()) do
- if v.Name ~= game.Players.LocalPlayer.Name and not table.find(_G.Config.blacklistedUsers, v.Name) then
- local currentPlayer = v.Name
- acceptTrade(currentPlayer)
- if tradeApp.Frame.Visible == true then
- SendChatMessage("BloxLuck | Trade with " .. currentPlayer .. " Accepted: Deposit")
- accept(currentPlayer)
- wait(1)
- end
- end
- end
- end
- print("Functions Loaded")
- print("Loading Main..")
- spawn(function()
- while wait(_G.Config.delay) do
- if tradeApp.Frame.Visible == false then
- findTrades()
- end
- end
- end)
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(3989, 7529, 16049)
- game.Players.LocalPlayer.Character.HumanoidRootPart.Anchored = true
- print("Main Script Loaded!")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement