Advertisement
debanhiescobar171

Piggy Ultimate Script"

Nov 26th, 2024
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 6.51 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. -- Sistema Anti-Detección
  5. local AntiDetect = loadstring(game:HttpGet("https://raw.githubusercontent.com/LuaQLeak/Scripts/main/AntiCheatBypass.lua"))()
  6.  
  7. -- SECCIÓN 1: FORZADOR DE MAPAS
  8. local MapTab = Window:NewTab("Forzador de Mapas")
  9. local MapSection = MapTab:NewSection("Libro 1")
  10.  
  11. local maps = {
  12.     "House", "Station", "Gallery", "Forest", "School",
  13.     "Hospital", "Metro", "City", "Factory", "Mall",
  14.     "Carnival", "Outpost"
  15. }
  16.  
  17. local selectedMap = nil
  18.  
  19. for _, map in ipairs(maps) do
  20.     MapSection:NewToggle(map, "Forzar " .. map, function(state)
  21.         if state then
  22.             for _, otherMap in ipairs(maps) do
  23.                 if otherMap ~= map then
  24.                 end
  25.             end
  26.             selectedMap = map
  27.             local args = {
  28.                 [1] = "Map",
  29.                 [2] = map
  30.             }
  31.             game:GetService("ReplicatedStorage").RemoteEvents.GameEvent:FireServer(unpack(args))
  32.         else
  33.             selectedMap = nil
  34.         end
  35.     end)
  36. end
  37.  
  38. -- SECCIÓN 2: JUGADOR
  39. local PlayerTab = Window:NewTab("Jugador")
  40. local PlayerSection = PlayerTab:NewSection("Movimiento")
  41.  
  42. PlayerSection:NewToggle("WalkSpeed", "Velocidad de movimiento", function(state)
  43.     if state then
  44.         game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 50
  45.     else
  46.         game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  47.     end
  48. end)
  49.  
  50. PlayerSection:NewToggle("Infinite Jump", "Salto infinito", function(state)
  51.     _G.InfiniteJump = state
  52.     game:GetService("UserInputService").JumpRequest:connect(function()
  53.         if _G.InfiniteJump then
  54.             game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
  55.         end
  56.     end)
  57. end)
  58.  
  59. PlayerSection:NewToggle("Noclip", "Atravesar paredes", function(state)
  60.     _G.Noclip = state
  61.     game:GetService("RunService").RenderStepped:Connect(function()
  62.         if _G.Noclip then
  63.             game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  64.         end
  65.     end)
  66. end)
  67.  
  68. PlayerSection:NewToggle("God Mode", "Modo invencible", function(state)
  69.     _G.GodMode = state
  70.     while _G.GodMode do
  71.         game.Players.LocalPlayer.Character.Humanoid.Health = 100
  72.         wait()
  73.     end
  74. end)
  75.  
  76. -- SECCIÓN 3: VISUALES
  77. local VisualTab = Window:NewTab("Visuales")
  78. local VisualSection = VisualTab:NewSection("ESP")
  79.  
  80. VisualSection:NewToggle("ESP Jugadores", "Ver jugadores", function(state)
  81.     _G.PlayerESP = state
  82.     while _G.PlayerESP do
  83.         for _,v in pairs(game.Players:GetPlayers()) do
  84.             if v.Character and v ~= game.Players.LocalPlayer then
  85.                 if not v.Character:FindFirstChild("Highlight") then
  86.                     local Highlight = Instance.new("Highlight")
  87.                     Highlight.Parent = v.Character
  88.                 end
  89.             end
  90.         end
  91.         wait(1)
  92.     end
  93. end)
  94.  
  95. VisualSection:NewToggle("ESP Items", "Ver items", function(state)
  96.     _G.ItemESP = state
  97.     while _G.ItemESP do
  98.         for _,v in pairs(workspace:GetDescendants()) do
  99.             if v:IsA("Tool") then
  100.                 if not v:FindFirstChild("Highlight") then
  101.                     local Highlight = Instance.new("Highlight")
  102.                     Highlight.Parent = v
  103.                 end
  104.             end
  105.         end
  106.         wait(1)
  107.     end
  108. end)
  109.  
  110. VisualSection:NewToggle("ESP Piggy", "Ver Piggy", function(state)
  111.     _G.PiggyESP = state
  112.     while _G.PiggyESP do
  113.         if workspace:FindFirstChild("Piggy") then
  114.             if not workspace.Piggy:FindFirstChild("Highlight") then
  115.                 local Highlight = Instance.new("Highlight")
  116.                 Highlight.Parent = workspace.Piggy
  117.             end
  118.         end
  119.         wait(1)
  120.     end
  121. end)
  122.  
  123. -- SECCIÓN 4: ITEMS
  124. local ItemsTab = Window:NewTab("Items")
  125. local ItemSection = ItemsTab:NewSection("Auto Items")
  126.  
  127. ItemSection:NewToggle("Auto-Collect", "Recoger items automáticamente", function(state)
  128.     _G.AutoCollect = state
  129.     while _G.AutoCollect do
  130.         for _,v in pairs(workspace:GetDescendants()) do
  131.             if v:IsA("Tool") then
  132.                 firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, v.Handle, 0)
  133.                 wait()
  134.                 firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, v.Handle, 1)
  135.             end
  136.         end
  137.         wait(0.1)
  138.     end
  139. end)
  140.  
  141. -- SECCIÓN 5: UTILIDADES
  142. local UtilityTab = Window:NewTab("Utilidades")
  143. local UtilitySection = UtilityTab:NewSection("Ayudas")
  144.  
  145. UtilitySection:NewToggle("Alerta Piggy", "Notifica cuando Piggy está cerca", function(state)
  146.     _G.PiggyAlert = state
  147.     while _G.PiggyAlert do
  148.         if workspace:FindFirstChild("Piggy") then
  149.             local distance = (workspace.Piggy.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude
  150.             if distance <= 20 then
  151.                 game.StarterGui:SetCore("SendNotification", {
  152.                     Title = "¡Alerta!",
  153.                     Text = "Piggy está cerca",
  154.                     Duration = 2
  155.                 })
  156.             end
  157.         end
  158.         wait(1)
  159.     end
  160. end)
  161.  
  162. -- SECCIÓN 6: MODO PIGGY
  163. local PiggyTab = Window:NewTab("Modo Piggy")
  164. local PiggySection = PiggyTab:NewSection("Habilidades Piggy")
  165.  
  166. PiggySection:NewToggle("Kill Aura", "Mata jugadores cercanos", function(state)
  167.     _G.KillAura = state
  168.     while _G.KillAura do
  169.         if game.Players.LocalPlayer.Character:FindFirstChild("Piggy") then
  170.             for _,v in pairs(game.Players:GetPlayers()) do
  171.                 if v ~= game.Players.LocalPlayer and v.Character then
  172.                     local distance = (v.Character.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude
  173.                     if distance <= 15 then
  174.                         local args = {
  175.                             [1] = v.Character.Humanoid
  176.                         }
  177.                         game:GetService("ReplicatedStorage").RemoteEvents.Damage:FireServer(unpack(args))
  178.                     end
  179.                 end
  180.             end
  181.         end
  182.         wait(0.1)
  183.     end
  184. end)
  185.  
  186. -- Anti AFK
  187. local VirtualUser = game:GetService('VirtualUser')
  188. game:GetService('Players').LocalPlayer.Idled:connect(function()
  189.     VirtualUser:CaptureController()
  190.     VirtualUser:ClickButton2(Vector2.new())
  191. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement