Rhysical

a

Sep 8th, 2023 (edited)
1,603
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.65 KB | None | 0 0
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  2.  
  3. local Window = Library.CreateLib("asnd's hub :)", "Ocean")
  4.  
  5. --[[
  6. LightTheme
  7. DarkTheme
  8. GrapeTheme
  9. BloodTheme
  10. Ocean
  11. Midnight
  12. Sentinel
  13. Synapse
  14. ]]
  15. AFKTOGGLE=false
  16.  
  17. local function loopthing()
  18.     while true do
  19.         if AFKTOGGLE then
  20.             game:GetService("VirtualUser"):ClickButton2(Vector2.new())
  21.         end
  22.         wait(0.25)  -- Check every 1 seconds
  23.     end
  24. end
  25.  
  26. coroutine.wrap(loopthing)()
  27.  
  28. -- Main Tabs
  29. local GTab = Window:NewTab("Main")
  30. local PTab = Window:NewTab("Player")
  31. local STab = Window:NewTab("Settings")
  32. --Options Section
  33.  
  34. local GSection = GTab:NewSection("Game options")
  35. GSection:NewToggle("Toggle Anti-AFK", "Toggle for Anti-AFK.", function(state)
  36.     if state then
  37.         AFKTOGGLE=true
  38.     else
  39.         AFKTOGGLE=false
  40.     end
  41. end)
  42.  
  43. GSection:NewToggle("Toggle Rendering", "Toggle for 3D Rendering.", function(state)
  44.     if state then
  45.         game:GetService("RunService"):Set3dRenderingEnabled(false)
  46.     else
  47.         game:GetService("RunService"):Set3dRenderingEnabled(true)
  48.     end
  49. end)
  50.  
  51. -- Player Section
  52.  
  53. local PSection = PTab:NewSection("Player Options")
  54. PSection:NewSlider("WalkSpeed", "Alters walkspeed.", 500, 16, function(s) -- 500 (MaxValue) | 0 (MinValue)
  55.     game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
  56. end)
  57.  
  58. PSection:NewSlider("JumpPower", "Alters jumppower.", 500, 50, function(s) -- 500 (MaxValue) | 0 (MinValue)
  59.     game.Players.LocalPlayer.Character.Humanoid.JumpPower = s
  60. end)
  61.  
  62. PSection:NewButton("Reset ws+jp", "Resets the walkspeed and jumppower.", function()
  63.     game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
  64.     game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  65. end)
  66. PSection:NewButton("Esp", "Esp thing`", function()
  67.     loadstring(game:HttpGet('https://raw.githubusercontent.com/ic3w0lf22/Unnamed-ESP/master/UnnamedESP.lua',true))()
  68. end)
  69. -- Settings Section
  70.  
  71. local SSection = STab:NewSection("Settings")
  72. SSection:NewKeybind("Hud Toggle", "Click to change keybind.", Enum.KeyCode.F, function()
  73.     Library:ToggleUI()
  74. end)
  75. SSection:NewButton("Enable alignment keys", "Enables Alignmentkeys `<` + `>`", function()
  76.     loadstring(game:HttpGet("https://pastebin.com/raw/J9PyFuyF"))()
  77. end)
  78.     game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.EmotesMenu, false)
  79. SSection:NewToggle("Toggle Emote Wheel", "Toggle for Emote wheel.", function(state)
  80.     if state then
  81.         game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.EmotesMenu, false)
  82.     else
  83.         game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.EmotesMenu, true)
  84.     end
  85. end)
Advertisement
Add Comment
Please, Sign In to add comment