LynXS_

Untitled

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