Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Chargement de la KavoMobileUI Library local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/KavoMobileUI/main/source.lua"))()
- -- Créer une fenêtre principale avec un thème compatible local Window = Library.CreateLib("YINHUB V2", "Midnight")
- -- Variables globales local infiniteHealth = false local spamSwordSlash = false local spamSkill = false local equipBlackHole = false local keepCollecting = false local selectedSkill = nil local selectedBankai = nil local selectedResurrection = nil local selectedLocation = "Aucun" local currentIndex = 1
- local itemsToCollect = {"Souls", "Money", "Essence"} local bossesToTeleport = { {name = "Rukia", coords = Vector3.new(-284.779541, 940.927673, 3086.729)}, {name = "Aizen", coords = Vector3.new(-284.779541, 940.927673, 3086.729)}, {name = "Byakuya", coords = Vector3.new(-284.779541, 940.927673, 3086.729)}, {name = "Gremmy", coords = Vector3.new(-284.779541, 940.927673, 3086.729)}, {name = "Yamamoto", coords = Vector3.new(-284.779541, 940.927673, 3086.729)}, {name = "Ichigo", coords = Vector3.new(-284.779541, 940.927673, 3086.729)} }
- -- Onglet Farm local FarmTab = Window:NewTab("💵|Farm") local FarmSection = FarmTab:NewSection("Farm")
- FarmSection:NewToggle("🛡️|Inf Health", "Rendre la santé infinie", function(state) infiniteHealth = state if state then spawn(function() while infiniteHealth do local player = game.Players.LocalPlayer local character = player.Character or player.CharacterAdded:Wait() local humanoid = character:FindFirstChildOfClass("Humanoid") if humanoid and humanoid.Health < humanoid.MaxHealth then humanoid.Health = humanoid.MaxHealth end wait(0) end end) end end)
- FarmSection:NewButton("💰|Auto Collect", "Collecter automatiquement les ressources", function() keepCollecting = not keepCollecting if keepCollecting then spawn(function() while keepCollecting do local player = game.Players.LocalPlayer local character = player.Character or player.CharacterAdded:Wait() local humanoidRootPart = character:FindFirstChild("HumanoidRootPart")
- if humanoidRootPart then
- local itemName = itemsToCollect[currentIndex]
- local obj = workspace:FindFirstChild(itemName)
- if obj and obj:IsA("Part") then
- local proximityPrompt = obj:FindFirstChildOfClass("ProximityPrompt")
- if proximityPrompt then
- proximityPrompt.HoldDuration = 0
- humanoidRootPart.CFrame = obj.CFrame
- fireproximityprompt(proximityPrompt)
- end
- end
- currentIndex = (currentIndex % #itemsToCollect) + 1
- end
- wait(0)
- end
- end)
- end
- end)
- FarmSection:NewButton("👹|Teleport to Boss", "Téléporter au boss", function() local player = game.Players.LocalPlayer local character = player.Character or player.CharacterAdded:Wait() local humanoidRootPart = character:FindFirstChild("HumanoidRootPart") if humanoidRootPart then for _, boss in ipairs(bossesToTeleport) do humanoidRootPart.CFrame = CFrame.new(boss.coords) * CFrame.new(0, 0, -5) print("Téléporté à :", boss.name) end end end)
- -- Onglet Skill local SkillTab = Window:NewTab("🌀|Skills") local SkillSection = SkillTab:NewSection("Skills")
- SkillSection:NewDropdown("🎯|Select Skill", "Choisir une compétence", {"Z", "X", "C", "V", "B", "N"}, function(option) selectedSkill = option end)
- SkillSection:NewToggle("⚔️|Spam Skill", "Spammer la compétence choisie", function(state) spamSkill = state if state then spawn(function() while spamSkill do if selectedSkill then game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("Skill"):FireServer(selectedSkill) end wait(0.1) end end) end end)
- SkillSection:NewToggle("🗡️|Spam Slash", "Spammer les coups d'épée", function(state) spamSwordSlash = state if state then spawn(function() while spamSwordSlash do game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("SwordSlash"):FireServer() wait(0.1) end end) end end)
- -- Onglet Bankai local BankaiTab = Window:NewTab("☯|Bankai") local BankaiSection = BankaiTab:NewSection("Bankai")
- BankaiSection:NewDropdown("🔥|Select Bankai", "Choisir un Bankai", {"Senbonzakura", "Sakanade", "Suzumebachi"}, function(option) selectedBankai = option end)
- BankaiSection:NewButton("☄️|Activate Bankai", "Activer le Bankai choisi", function() if selectedBankai then game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("Bankai"):FireServer(selectedBankai) end end)
- -- Onglet Resurrection local ResTab = Window:NewTab("☠|Resurrection") local ResSection = ResTab:NewSection("Resurrection")
- ResSection:NewDropdown("💀|Select Resurrection", "Choisir une résurrection", {"Murcielago", "Arro", "Volcanica"}, function(option) selectedResurrection = option end)
- ResSection:NewButton("⚡|Activate Resurrection", "Activer la résurrection choisie", function() if selectedResurrection then game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("Res"):FireServer(selectedResurrection) end end)
- -- Onglet Téléportation local TpTab = Window:NewTab("🧭|TP") local TpSection = TpTab:NewSection("Zones")
- TpSection:NewDropdown("🌍|Choisir une zone", "Sélectionner une zone à téléporter", {"Shop", "Forest", "Cave", "Arena"}, function(option) selectedLocation = option end)
- TpSection:NewButton("🚀|Teleport", "Se téléporter à la zone sélectionnée", function() local locations = { ["Shop"] = Vector3.new(100, 10, 200), ["Forest"] = Vector3.new(500, 15, -100), ["Cave"] = Vector3.new(-300, 25, 400), ["Arena"] = Vector3.new(0, 10, 0) }
- local destination = locations[selectedLocation]
- if destination then
- local player = game.Players.LocalPlayer
- local character = player.Character or player.CharacterAdded:Wait()
- local rootPart = character:FindFirstChild("HumanoidRootPart")
- if rootPart then
- rootPart.CFrame = CFrame.new(destination)
- end
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment