Advertisement
kingmohamed

Super Evolution

May 15th, 2023 (edited)
4,829
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.97 KB | None | 0 0
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/mohamedyoo/owlhub/main/New%20ui"))()
  2. local Window = Library.CreateLib(" Super Evolution ", "DarkTheme")
  3.  
  4. local Tab = Window:NewTab("Main")
  5.  
  6.  
  7. local section1 = Tab:NewSection("Main")
  8.  
  9. section1:NewToggle(
  10. "Auto-Endurance",
  11. "ff",
  12. function(value)
  13. AutoEndurance = value
  14. end
  15. )
  16.  
  17. section1:NewToggle(
  18. "Auto-Energy",
  19. "INfo",
  20. function(value)
  21. AutoEnergy = value
  22. end)
  23.  
  24. section1:NewToggle(
  25. "Auto-Agility",
  26. "fff",
  27. function(value)
  28. AutoAgility = value
  29. end
  30. )
  31.  
  32. section1:NewToggle(
  33. "Auto-Kill-NPC",
  34. "fff",
  35. function(value)
  36. AutoKillNPC = value
  37. end
  38. )
  39.  
  40. section1:NewToggle(
  41. "Collect-Coin",
  42. "ff",
  43. function(value)
  44. CollectCoin = value
  45. end
  46. )
  47.  
  48. --Main Script
  49.  
  50. game:GetService("RunService").Stepped:connect(
  51. function()
  52. if AutoKillNPC == true then
  53. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  54. for i, v in pairs(game:GetService("Workspace").Enemies["1"]:GetChildren()) do
  55. for i, v1 in pairs(v:GetChildren()) do
  56. if v1.Name == "HumanoidRootPart" then
  57. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame =
  58. CFrame.new(v1.CFrame.Position + Vector3.new(0, -5, 0))
  59. game:service "VirtualUser":ClickButton1(Vector2.new())
  60. end
  61. end
  62. end
  63. local X, Y, Z = 8, 0, 0
  64. local part = game.workspace[game.Players.LocalPlayer.Name].HumanoidRootPart
  65. part.CFrame = part.CFrame * CFrame.Angles(X, Y, Z)
  66. game:service "VirtualUser":ClickButton1(Vector2.new())
  67. can = true
  68. else
  69. if can == true then
  70. can = false
  71. local X, Y, Z = -8, 0, 0
  72. local part = game.workspace[game.Players.LocalPlayer.Name].HumanoidRootPart
  73. part.CFrame = part.CFrame * CFrame.Angles(X, Y, Z)
  74. end
  75. end
  76. if CollectCoin == true then
  77. for i, v in pairs(game:GetService("Workspace").DropSpawns.Earth:GetChildren()) do
  78. for i, v1 in pairs(v:GetChildren()) do
  79. for i, v2 in pairs(v:GetChildren()) do
  80. if v2.Name == "Coin" or v2.Name == "CoinTreasure" then
  81. v2.CFrame =
  82. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame + Vector3.new(0, 0, 0)
  83. end
  84. end
  85. end
  86. end
  87. end
  88. if AutoFullTrain == true then
  89. local tool =
  90. game.Players.LocalPlayer.Backpack:FindFirstChildOfClass("Tool") or
  91. game.Players.LocalPlayer.Character:FindFirstChildOfClass("Tool")
  92. game.Players.LocalPlayer.Character.Humanoid:EquipTool(tool)
  93. if game.Players.LocalPlayer.Character:FindFirstChildOfClass("Tool") then
  94. tool:Activate()
  95. end
  96. end
  97.  
  98. end
  99. )
  100.  
  101. while wait() do
  102. if AutoStrenght == true then
  103. local tool =
  104. game.Players.LocalPlayer.Backpack:FindFirstChild("Basic Fists") or
  105. game.Players.LocalPlayer.Character:FindFirstChild("Basic Fists")
  106. game.Players.LocalPlayer.Character.Humanoid:EquipTool(tool)
  107. wait(.5)
  108. game:service "VirtualUser":ClickButton1(Vector2.new())
  109. end
  110. if AutoEndurance == true then
  111. local tool =
  112. game.Players.LocalPlayer.Backpack:FindFirstChild("Basic Workout") or
  113. game.Players.LocalPlayer.Character:FindFirstChild("Basic Workout")
  114. game.Players.LocalPlayer.Character.Humanoid:EquipTool(tool)
  115. wait(.5)
  116. game:service "VirtualUser":ClickButton1(Vector2.new())
  117. end
  118.  
  119. if AutoEnergy == true then
  120. local tool =
  121. game.Players.LocalPlayer.Backpack:FindFirstChild("Basic Ki") or
  122. game.Players.LocalPlayer.Character:FindFirstChild("Basic Ki")
  123. game.Players.LocalPlayer.Character.Humanoid:EquipTool(tool)
  124. wait(.5)
  125. end
  126.  
  127. if AutoAgility == true then
  128. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame =
  129. CFrame.new(
  130. 250.815552,
  131. 30.1924229,
  132. 183.935043,
  133. 0.0267461445,
  134. 5.98590049e-08,
  135. 0.999642253,
  136. -2.3481542e-08,
  137. 1,
  138. -5.92521623e-08,
  139. -0.999642253,
  140. -2.18883756e-08,
  141. 0.0267461445
  142. )
  143.  
  144. game:GetService("Workspace")[game.Players.LocalPlayer.Name].Humanoid:MoveTo(
  145. game:GetService("Workspace").NPCs["Quest Master"].NPC.HumanoidRootPart.Position
  146. )
  147. end
  148. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement