Advertisement
Cizzy

Untitled

Mar 18th, 2021
253
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.66 KB | None | 0 0
  1. local lib = loadstring(game:HttpGet("https://raw.githubusercontent.com/vep1032/VepStuff/main/Vape%20Ui%20Lib"))()
  2.  
  3. local win = lib:Window("Vep's Release", Color3.fromRGB(44, 120, 224), Enum.KeyCode.RightControl)
  4.  
  5. local ss = win:Tab("MAIN")
  6. local sss = win:Tab("MISC")
  7.  
  8. DB = 0
  9. Distance = 5
  10.  
  11. ss:Toggle(
  12. "AutoHit",
  13. function(t)
  14. autohit = t
  15. pcall(
  16. function()
  17. while autohit do
  18. wait()
  19. game:GetService("Players").LocalPlayer.Backpack.Goku.Combat:FireServer("Combo1")
  20. end
  21. end
  22. )
  23. end
  24. )
  25.  
  26. ss:Toggle(
  27. "Autofarm Players",
  28. function(t)
  29. pcall(
  30. function()
  31. game:GetService("RunService").Heartbeat:Connect(
  32. function()
  33. if player then
  34. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  35. end
  36. end
  37. )
  38. end
  39. )
  40. getgenv().player = t
  41. pcall(
  42. function()
  43. while player do
  44. wait()
  45. for i, v in pairs(game.Players:GetChildren()) do
  46. if v ~= game.Players.LocalPlayer and v.Character:FindFirstChild("HumanoidRootPart") then
  47. repeat
  48. wait()
  49. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame =
  50. CFrame.new(
  51. v.Character.HumanoidRootPart.Position + Vector3.new(0, Distance, DB),
  52. v.Character.HumanoidRootPart.Position
  53. )
  54. until v.Character.Humanoid.Health < .1
  55. end
  56. end
  57. end
  58. end
  59. )
  60. end
  61. )
  62.  
  63. ss:Toggle(
  64. "Autofarm Npcs",
  65. function(t)
  66. npc = t
  67. while npc do
  68. wait()
  69. pcall(
  70. function()
  71. for i, v in pairs(workspace:GetDescendants()) do
  72. if v:IsA("Model") and v:FindFirstChild("Npc") then
  73. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame =
  74. CFrame.new(
  75. v.Character.HumanoidRootPart.Position + Vector3.new(0, Distance, DB),
  76. v.Character.HumanoidRootPart.Position
  77. )
  78. end
  79. end
  80. end
  81. )
  82. end
  83. end
  84. )
  85.  
  86. ss:Slider(
  87. "Mob Distance Behind",
  88. 0,
  89. 10,
  90. 2,
  91. function(t)
  92. DB = t
  93. end
  94. )
  95.  
  96. ss:Slider(
  97. "Mob Distance Height",
  98. -9,
  99. 10,
  100. 3,
  101. function(t)
  102. Distance = t
  103. end
  104. )
  105.  
  106. sss:Toggle(
  107. "Spam 1 Skill",
  108. function(t)
  109. skills1 = t
  110. while skills1 do
  111. wait()
  112. pcall(
  113. function()
  114. local LP = game:GetService("Players").LocalPlayer
  115. local VIM = game:GetService("VirtualInputManager")
  116. VIM:SendKeyEvent(true, Enum.KeyCode.One, false, game)
  117. end
  118. )
  119. end
  120. end
  121. )
  122.  
  123. sss:Toggle(
  124. "Spam E Skill",
  125. function(t)
  126. skillsE = t
  127. while skillsE do
  128. wait()
  129. pcall(
  130. function()
  131. local LP = game:GetService("Players").LocalPlayer
  132. local VIM = game:GetService("VirtualInputManager")
  133. VIM:SendKeyEvent(true, Enum.KeyCode.E, false, game)
  134. end
  135. )
  136. end
  137. end
  138. )
  139.  
  140. sss:Toggle(
  141. "Spam 2 Skill",
  142. function(t)
  143. skills2 = t
  144. while skills2 do
  145. wait()
  146. pcall(
  147. function()
  148. local LP = game:GetService("Players").LocalPlayer
  149. local VIM = game:GetService("VirtualInputManager")
  150. VIM:SendKeyEvent(true, Enum.KeyCode.Two, false, game)
  151. end
  152. )
  153. end
  154. end
  155. )
  156.  
  157. sss:Toggle(
  158. "Spam 3 Skill",
  159. function(t)
  160. skills3 = t
  161. while skills3 do
  162. wait()
  163. pcall(
  164. function()
  165. local LP = game:GetService("Players").LocalPlayer
  166. local VIM = game:GetService("VirtualInputManager")
  167. VIM:SendKeyEvent(true, Enum.KeyCode.Three, false, game)
  168. end
  169. )
  170. end
  171. end
  172. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement