Advertisement
debanhiescobar171

Piggy Ultimate Script"

Nov 26th, 2024
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 6.08 KB | None | 0 0
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  2. local Window = Library.CreateLib("Piggy Ultimate Script", "Ocean")
  3.  
  4. -- MAIN
  5. local Main = Window:NewTab("Main")
  6. local MainSection = Main:NewSection("Principal")
  7.  
  8. MainSection:NewButton("God Mode", "Te hace invencible", function()
  9.     local Players = game:GetService("Players")
  10.     local Player = Players.LocalPlayer
  11.     local Character = Player.Character
  12.     local Humanoid = Character:WaitForChild("Humanoid")
  13.    
  14.     Humanoid.MaxHealth = math.huge
  15.     Humanoid.Health = math.huge
  16. end)
  17.  
  18. -- PLAYER
  19. local Player = Window:NewTab("Player")
  20. local PlayerSection = Player:NewSection("Player")
  21.  
  22. PlayerSection:NewSlider("WalkSpeed", "Cambia tu velocidad", 500, 16, function(s)
  23.     game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
  24. end)
  25.  
  26. PlayerSection:NewSlider("JumpPower", "Cambia tu poder de salto", 350, 50, function(s)
  27.     game.Players.LocalPlayer.Character.Humanoid.JumpPower = s
  28. end)
  29.  
  30. PlayerSection:NewToggle("Noclip", "Atraviesa paredes", function(state)
  31.     if state then
  32.         local function NoclipLoop()
  33.             for _, child in pairs(game.Players.LocalPlayer.Character:GetDescendants()) do
  34.                 if child:IsA("BasePart") and child.CanCollide == true then
  35.                     child.CanCollide = false
  36.                 end
  37.             end
  38.         end
  39.        
  40.         Noclipping = game:GetService('RunService').Stepped:Connect(NoclipLoop)
  41.     else
  42.         if Noclipping then
  43.             Noclipping:Disconnect()
  44.         end
  45.     end
  46. end)
  47.  
  48. -- MAPAS (Versión mejorada y funcional)
  49. local Maps = Window:NewTab("Maps")
  50. local MapsSection = Maps:NewSection("Forzador de Mapas")
  51.  
  52. local mapList = {
  53.     "House",
  54.     "Station",
  55.     "Gallery",
  56.     "Forest",
  57.     "School",
  58.     "Hospital",
  59.     "Metro",
  60.     "City",
  61.     "Factory",
  62.     "Mall",
  63.     "Carnival",
  64.     "Outpost"
  65. }
  66.  
  67. for _, mapName in ipairs(mapList) do
  68.     MapsSection:NewButton(mapName, "Forzar "..mapName, function()
  69.         -- Sistema múltiple de forzado
  70.         local args = {
  71.             [1] = "Map",
  72.             [2] = mapName,
  73.             [3] = true
  74.         }
  75.        
  76.         for i = 1, 3 do
  77.             game:GetService("ReplicatedStorage").RemoteEvents.GameEvent:FireServer(unpack(args))
  78.            
  79.             if game:GetService("ReplicatedStorage"):FindFirstChild("Map") then
  80.                 game:GetService("ReplicatedStorage").Map.Value = mapName
  81.             end
  82.            
  83.             local vote = {
  84.                 [1] = "Vote",
  85.                 [2] = mapName
  86.             }
  87.             game:GetService("ReplicatedStorage").RemoteEvents.GameEvent:FireServer(unpack(vote))
  88.            
  89.             wait(0.1)
  90.         end
  91.     end)
  92. end
  93.  
  94. -- ESP
  95. local Esp = Window:NewTab("ESP")
  96. local EspSection = Esp:NewSection("ESP Options")
  97.  
  98. EspSection:NewToggle("Player ESP", "Ver a todos los jugadores", function(state)
  99.     if state then
  100.         for i,v in pairs(game.Players:GetPlayers()) do
  101.             if v.Name ~= game.Players.LocalPlayer.Name then
  102.                 local esp = Instance.new("BoxHandleAdornment")
  103.                 esp.Adornee = v.Character.HumanoidRootPart
  104.                 esp.ZIndex = 0
  105.                 esp.Size = Vector3.new(5, 5, 5)
  106.                 esp.Transparency = 0.5
  107.                 esp.Color3 = Color3.fromRGB(255, 0, 0)
  108.                 esp.AlwaysOnTop = true
  109.                 esp.Parent = v.Character.HumanoidRootPart
  110.             end
  111.         end
  112.     else
  113.         for i,v in pairs(game.Players:GetPlayers()) do
  114.             if v.Character and v.Character:FindFirstChild("HumanoidRootPart") then
  115.                 for _, esp in pairs(v.Character.HumanoidRootPart:GetChildren()) do
  116.                     if esp:IsA("BoxHandleAdornment") then
  117.                         esp:Destroy()
  118.                     end
  119.                 end
  120.             end
  121.         end
  122.     end
  123. end)
  124.  
  125. -- AUTO COLLECT
  126. local AutoFarm = Window:NewTab("Auto Farm")
  127. local AutoFarmSection = AutoFarm:NewSection("Auto Collect")
  128.  
  129. AutoFarmSection:NewToggle("Auto Collect Items", "Recoge items automáticamente", function(state)
  130.     getgenv().autoCollect = state
  131.     while getgenv().autoCollect do
  132.         for _,v in pairs(workspace:GetDescendants()) do
  133.             if v:IsA("Tool") then
  134.                 firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, v.Handle, 0)
  135.                 wait()
  136.                 firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, v.Handle, 1)
  137.             end
  138.         end
  139.         wait(0.1)
  140.     end
  141. end)
  142.  
  143. -- PIGGY KILL AURA
  144. local Combat = Window:NewTab("Combat")
  145. local CombatSection = Combat:NewSection("Combat")
  146.  
  147. CombatSection:NewToggle("Kill Aura", "Mata a jugadores cercanos cuando eres Piggy", function(state)
  148.     getgenv().killAura = state
  149.     while getgenv().killAura do
  150.         if game.Players.LocalPlayer.Character:FindFirstChild("Piggy") then
  151.             for _,v in pairs(game.Players:GetPlayers()) do
  152.                 if v ~= game.Players.LocalPlayer and v.Character then
  153.                     local distance = (v.Character.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude
  154.                     if distance <= 15 then
  155.                         local args = {
  156.                             [1] = v.Character.Humanoid
  157.                         }
  158.                         game:GetService("ReplicatedStorage").RemoteEvents.Damage:FireServer(unpack(args))
  159.                     end
  160.                 end
  161.             end
  162.         end
  163.         wait(0.1)
  164.     end
  165. end)
  166.  
  167. -- ANTI AFK
  168. local Misc = Window:NewTab("Misc")
  169. local MiscSection = Misc:NewSection("Misc")
  170.  
  171. MiscSection:NewToggle("Anti AFK", "Previene que te expulsen por inactividad", function(state)
  172.     if state then
  173.         local vu = game:GetService("VirtualUser")
  174.         game:GetService("Players").LocalPlayer.Idled:connect(function()
  175.             vu:Button2Down(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
  176.             wait(1)
  177.             vu:Button2Up(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
  178.         end)
  179.     end
  180. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement