Kavo example


SUBMITTED BY: Guest

DATE: July 17, 2023, 8:32 p.m.

FORMAT: Lua

SIZE: 580 Bytes

HITS: 342

  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  2. - Setup
  3. local Window = Library.CreateLib("TITLE HERE", "DarkTheme")
  4. - Tabs
  5. local Tab = Window:NewTab("TAB NAME HERE")
  6. - Sections
  7. local Section = Tab:NewSection("SECTION NAME HERE")
  8. Section:NewSlider("Walk-speed", "Zoom!", 125, 0, function(Value)
  9. game:GetService("Players").LocalPlayer.Walkspeed = Value
  10. end)
  11. Section:NewSlider("Jump-power", "Hi- bye…", 125, 0, function(Value)
  12. game:GetService("Players").LocalPlayer.JumpPower = Value
  13. end)

comments powered by Disqus