Advertisement
hacimiks

vape ui lib

Apr 7th, 2024 (edited)
758
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.77 KB | None | 0 0
  1. local lib = loadstring(game:HttpGet"https://raw.githubusercontent.com/dawid-scripts/UI-Libs/main/Vape.txt")()
  2.  
  3. local win = lib:Window("Aoki's UI | Natural Disaster", Color3.fromRGB(44, 120, 224), Enum.KeyCode.V)
  4.  
  5.  
  6. local tab1 = win:Tab("Main")
  7.  
  8.      tab1:Toggle("Auto Win", false, function(bool)
  9.             _G.autowinfarm = bool;
  10.               while wait(.1) do
  11.                     if _G.autowinfarm == true and  game.Players.LocalPlayer.Character and                     game.Players.LocalPlayer.Character:FindFirstChild("HumanoidRootPart") then
  12.                 game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-236, 180, 360, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  13.             end
  14.         end
  15.     end)
  16.  
  17.     tab1:Button("Show Next Disaster (/console)", function()
  18.             warn(game.Players.LocalPlayer.Character.SurvivalTag.Value)
  19.     end)
  20.  
  21. local tab2 = win:Tab("Miscellaneous")
  22.  
  23.     tab2:Button("Headless (Client)", function()
  24.             loadstring(game:HttpGet"https://pastebin.com/raw/um5UETpy")()
  25.         end)
  26.  
  27.     tab2:Button("Fly V3", function()
  28.             loadstring(game:HttpGet"https://raw.githubusercontent.com/XNEOFF/FlyGuiV3/main/FlyGuiV3.txt")()
  29.         end)
  30.  
  31.     tab2:Button("Keyboard V3", function()
  32.             loadstring(game:HttpGet"https://raw.githubusercontent.com/advxzivhsjjdhxhsidifvsh/mobkeyboard/main/main.txt")()
  33.         end)
  34.  
  35. local tab3 = win:Tab("Settings")
  36.  
  37.     tab3:Bind("Keybind",Enum.KeyCode.V, function(Enabled)
  38.             local CloseBind = Enum.KeyCode.V
  39.         end)
  40.  
  41.     tab3:Slider("Walk Speed",0,200,16, function(Value)
  42.             game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = Value
  43.         end)
  44.  
  45.     tab3:Slider("Jump Height",0,200,50, function(Value)
  46.             game.Players.LocalPlayer.Character.Humanoid.JumpPower = Value
  47.         end)
  48.    
  49.     tab3:Button("Exit Gui", function()
  50.             lib:Destroy()
  51.         end)
  52.  
  53.    
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement