local Library loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))() local Window = Library.CreateLib("TITLE", "Midnight") If game.PlaceID == 79546208627805 then -- Main local Main = Window:NewTab("Main") local MainSection = Main:NewSection("Player Settings") MainSection:NewButton("Fly", "This allows you to fly over map", function() loadstring(game:HttpGet("https://pastebin.com/raw/yyqdhe0K"))() print("Clicked") end) MainSection:NewToggle("Speed Stamina", "This allows you to run fast", function(state) if state then game.Players.LocalPlayer.Character.Humanoid.Walkspeed = 120 print("Toggle On") else game.Players.LocalPlayer.Character.Humanoid.Walkspeed = 16 print("Toggle Off") end end)