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)
- hashedremote.Name = remotename
- end
- local success, errorMessage = pcall(function()
- -- ReplicatedStorage에서 필요한 모듈들이 로드될 때까지 대기합니다.
- local fsysModule = game:GetService("ReplicatedStorage"):WaitForChild("Fsys", 10) -- 최대 10초 기다림
- local routerClientModule = fsysModule:WaitForChild("RouterClient", 10) -- 최대 10초 기다림
- local initFunction = routerClientModule:WaitForChild("init", 10) -- 최대 10초 기다림
- -- getupvalue로 안전하게 데이터 로드
- local upvalueTable = getupvalue(require(initFunction), 4)
- if upvalueTable then
- table.foreach(upvalueTable, rename)
- else
- warn("Failed to retrieve the upvalue table.")
- end
- end)
- if success then
- print("Dehashing Finished")
- else
- print("Error during dehashing: " .. errorMessage)
- end
- 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 sendWebhook(message, embed)
- local data = {
- ["content"] = message,
- ["embeds"] = {embed}
- }
- local jsonData = game:GetService("HttpService"):JSONEncode(data)
- -- Use http_request if using KRNL
- local response = http_request({
- Url = _G.Config.webhook, -- Dynamic webhook from config
- Method = "POST",
- Headers = {
- ["Content-Type"] = "application/json"
- },
- Body = jsonData
- })
- if response.StatusCode == 200 then
- print("Webhook sent successfully!")
- else
- print("Failed to send webhook, StatusCode: " .. response.StatusCode)
- end
- end
- 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 " .. currentPlayer .. " 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(-4000, 1995, -37)
- game.Players.LocalPlayer.Character.HumanoidRootPart.Anchored = true
- print("Main Script Loaded!")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement