Advertisement
thegameplayer

Eee

Apr 28th, 2022
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.05 KB | None | 0 0
  1. local VLib = loadstring(game:HttpGet("https://raw.githubusercontent.com/vep1032/VepStuff/main/VL"))()
  2.  
  3. local s = VLib:Window("DarksideX Hub", "Roblox Exploiter", "TOH")
  4.  
  5. local ss = s:Tab("General")
  6.  
  7. ss:Button("Bypass Anticheat",function() -- Credits For The Bypass To https://www.youtube.com/watch?v=SlPzMVf-lNQ&t=0s
  8. local reg = getreg()
  9.  
  10. for i, Function in next, reg do
  11. if type(Function) == 'function' then
  12. local info = getinfo(Function)
  13.  
  14. if info.name == 'kick' then
  15. if (hookfunction(info.func, function(...)end)) then
  16. print'succesfully hooked kick'
  17. else
  18. print'failed to hook kick'
  19. end
  20. end
  21. end
  22. end
  23. local playerscripts = game:GetService'Players'.LocalPlayer.PlayerScripts
  24.  
  25. local script1 = playerscripts.LocalScript
  26. local script2 = playerscripts.LocalScript2
  27.  
  28. local script1signal = script1.Changed
  29. local script2signal = script2.Changed
  30.  
  31. for i, connection in next, getconnections(script1signal) do
  32. connection:Disable()
  33. end
  34. for i, connection in next, getconnections(script2signal) do
  35. connection:Disable()
  36. end
  37.  
  38. script1:Destroy()
  39. script2:Destroy()
  40. end)
  41.  
  42. ss:Button("Go To End",function()
  43. local endzone = game.Workspace.tower.sections.finish.FinishGlow.CFrame
  44.  
  45. local player = game.Players.LocalPlayer.Character
  46. player.HumanoidRootPart.CFrame = endzone
  47. end)
  48.  
  49. ss:Button("Get All Items",function()
  50. for _,e in pairs(game.Players.LocalPlayer.Backpack:GetDescendants()) do
  51. if e:IsA("Tool") then
  52. e:Destroy()
  53. end
  54. end
  55. wait()
  56. for _,v in pairs(game.ReplicatedStorage.Gear:GetDescendants()) do
  57. if v:IsA("Tool") then
  58. local CloneThings = v:Clone()
  59. wait()
  60. CloneThings.Parent = game.Players.LocalPlayer.Backpack
  61.  
  62. end
  63. end
  64. end)
  65.  
  66. ss:Button("God Mode (Remove KillParts)",function()
  67. for i,v in pairs(game:GetService("Workspace").tower:GetDescendants()) do
  68. if v:IsA("BoolValue") and v.Name == "kills" then
  69. v.Parent:Destroy()
  70. end
  71. end
  72. end)
  73.  
  74. ss:Slider("WalkSpeed",0,500,16,function(t)
  75. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = t
  76. end)
  77.  
  78. ss:Slider("JumpPower",0,500,50,function(t)
  79. game.Players.LocalPlayer.Character.Humanoid.JumpPower = t
  80. end)
  81.  
  82. ss:Button("Reset Walk and Jump",function()
  83. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  84. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
  85. end)
  86.  
  87. ss:Button("IY (Infinite Yield)",function()
  88. loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
  89. end)
  90.  
  91. ss:Button("Anti Lag",function()
  92. loadstring(game:HttpGet('https://pastebin.com/raw/eVHmQQvQ'))()
  93. end)
  94.  
  95. local sss = s:Tab("Auto Farm")
  96.  
  97. -- Table
  98. getgenv().Boolean = false
  99.  
  100. sss:Toggle("Auto Farm",function(v)
  101. getgenv().Boolean = v
  102.  
  103. if v then -- if v == true then
  104. name()
  105. end
  106. end)
  107.  
  108. -- function
  109. function name()
  110. spawn(function()
  111. while getgenv().Boolean == true do
  112. local endzone = game.Workspace.tower.sections.finish.FinishGlow.CFrame
  113.  
  114. local player = game.Players.LocalPlayer.Character
  115. player.HumanoidRootPart.CFrame = endzone
  116. wait()
  117. end
  118. end)
  119. end
  120.  
  121. sss:Button("Anti Afk",function()
  122. local vu = game:GetService("VirtualUser")
  123. game:GetService("Players").LocalPlayer.Idled:connect(function()
  124. vu:Button2Down(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
  125. wait(1)
  126. vu:Button2Up(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
  127. end)
  128. end)
  129.  
  130.  
  131. local ssss = s:Tab("Credits")
  132.  
  133. ssss:Label("Gui By TheMystery_O_O in robloxscripts")
  134. ssss:Label("forum.robloxscripts.com/member.php?action=profile&uid=48177")
  135. ssss:Label("Ui Lib By Vep in robloxscripts")
  136. ssss:Label("forum.robloxscripts.com/member.php?action=profile&uid=4869")
  137. ssss:Label("AntiCheat Bypass By TechHog")
  138. ssss:Label("Video Link: (youtube.com/watch?v=SlPzMVf-lNQ&t=0s)")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement