Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/mohamedyoo/owlhub/main/New%20ui"))()
- local Window = Library.CreateLib(" Super Evolution ", "DarkTheme")
- local Tab = Window:NewTab("Main")
- local section1 = Tab:NewSection("Main")
- section1:NewToggle(
- "Auto-Endurance",
- "ff",
- function(value)
- AutoEndurance = value
- end
- )
- section1:NewToggle(
- "Auto-Energy",
- "INfo",
- function(value)
- AutoEnergy = value
- end)
- section1:NewToggle(
- "Auto-Agility",
- "fff",
- function(value)
- AutoAgility = value
- end
- )
- section1:NewToggle(
- "Auto-Kill-NPC",
- "fff",
- function(value)
- AutoKillNPC = value
- end
- )
- section1:NewToggle(
- "Collect-Coin",
- "ff",
- function(value)
- CollectCoin = value
- end
- )
- --Main Script
- game:GetService("RunService").Stepped:connect(
- function()
- if AutoKillNPC == true then
- game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
- for i, v in pairs(game:GetService("Workspace").Enemies["1"]:GetChildren()) do
- for i, v1 in pairs(v:GetChildren()) do
- if v1.Name == "HumanoidRootPart" then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame =
- CFrame.new(v1.CFrame.Position + Vector3.new(0, -5, 0))
- game:service "VirtualUser":ClickButton1(Vector2.new())
- end
- end
- end
- local X, Y, Z = 8, 0, 0
- local part = game.workspace[game.Players.LocalPlayer.Name].HumanoidRootPart
- part.CFrame = part.CFrame * CFrame.Angles(X, Y, Z)
- game:service "VirtualUser":ClickButton1(Vector2.new())
- can = true
- else
- if can == true then
- can = false
- local X, Y, Z = -8, 0, 0
- local part = game.workspace[game.Players.LocalPlayer.Name].HumanoidRootPart
- part.CFrame = part.CFrame * CFrame.Angles(X, Y, Z)
- end
- end
- if CollectCoin == true then
- for i, v in pairs(game:GetService("Workspace").DropSpawns.Earth:GetChildren()) do
- for i, v1 in pairs(v:GetChildren()) do
- for i, v2 in pairs(v:GetChildren()) do
- if v2.Name == "Coin" or v2.Name == "CoinTreasure" then
- v2.CFrame =
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame + Vector3.new(0, 0, 0)
- end
- end
- end
- end
- end
- if AutoFullTrain == true then
- local tool =
- game.Players.LocalPlayer.Backpack:FindFirstChildOfClass("Tool") or
- game.Players.LocalPlayer.Character:FindFirstChildOfClass("Tool")
- game.Players.LocalPlayer.Character.Humanoid:EquipTool(tool)
- if game.Players.LocalPlayer.Character:FindFirstChildOfClass("Tool") then
- tool:Activate()
- end
- end
- end
- )
- while wait() do
- if AutoStrenght == true then
- local tool =
- game.Players.LocalPlayer.Backpack:FindFirstChild("Basic Fists") or
- game.Players.LocalPlayer.Character:FindFirstChild("Basic Fists")
- game.Players.LocalPlayer.Character.Humanoid:EquipTool(tool)
- wait(.5)
- game:service "VirtualUser":ClickButton1(Vector2.new())
- end
- if AutoEndurance == true then
- local tool =
- game.Players.LocalPlayer.Backpack:FindFirstChild("Basic Workout") or
- game.Players.LocalPlayer.Character:FindFirstChild("Basic Workout")
- game.Players.LocalPlayer.Character.Humanoid:EquipTool(tool)
- wait(.5)
- game:service "VirtualUser":ClickButton1(Vector2.new())
- end
- if AutoEnergy == true then
- local tool =
- game.Players.LocalPlayer.Backpack:FindFirstChild("Basic Ki") or
- game.Players.LocalPlayer.Character:FindFirstChild("Basic Ki")
- game.Players.LocalPlayer.Character.Humanoid:EquipTool(tool)
- wait(.5)
- end
- if AutoAgility == true then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame =
- CFrame.new(
- 250.815552,
- 30.1924229,
- 183.935043,
- 0.0267461445,
- 5.98590049e-08,
- 0.999642253,
- -2.3481542e-08,
- 1,
- -5.92521623e-08,
- -0.999642253,
- -2.18883756e-08,
- 0.0267461445
- )
- game:GetService("Workspace")[game.Players.LocalPlayer.Name].Humanoid:MoveTo(
- game:GetService("Workspace").NPCs["Quest Master"].NPC.HumanoidRootPart.Position
- )
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement