local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))() local Window = Library.CreateLib("Oreo hub", "Ocean") -- MAIN local Main = Window:NewTab("Main") local MainSection = Main:NewSection("Main") -- SCRIPTS MainSection:NewButton("Synapse x", "My most popular script", function() loadstring(game:HttpGet("https://raw.githubusercontent.com/AZYsGithub/chillz-s-scripts/main/Synapse-X-Remake.lua"))() end) MainSection:NewButton("Btools", "The real btools that may lag your game out on mobile", function() loadstring(game:HttpGet("https://raw.githubusercontent.com/iimateiYT/Scripts/main/F3X.lua"))() end) --Player local Player = Window:NewTab("Player") local PlayerSection = Player:NewSection("Player") PlayerSection:NewSlider("Walkspeed", "Walkspeed", 500, 10, function(s) -- 500 (MaxValue) | 0 (MinValue) game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s end) PlayerSection:NewSlider("Jumppower", "Jump", 500, 0, function(s) -- 500 (MaxValue) | 0 (MinValue) game.Players.LocalPlayer.Character.Humanoid.JumpPower = s end) PlayerSection:NewButton("Reset J/S", "Resets speed and jump power", function() game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16 game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50 end) --Other local Other = Window:NewTab("Other") local OtherSection = Other:NewSection("Other") OtherSection:NewButton("Avatar unlocker Brookhaven", "Unlocks ", function() loadstring(game:HttpGet('https://raw.githubusercontent.com/IceMael7/AvatarUnlocker/main/IceHub'))() end) OtherSection:NewButton("Old dex explorer", "", function() loadstring(game:HttpGet("https://raw.githubusercontent.com/peyton2465/Dex/master/out.lua"))() end) OtherSection:NewButton("MS DOORS", "A script that has god mode for doors", function() loadstring(game:HttpGet(("https://raw.githubusercontent.com/mstudio45/MSDOORS/main/MSDOORS.lua"),true))() end) OtherSection:NewButton("Random textures", "random texture for random stuff every one min", function() loadstring(game:HttpGet(("https://raw.githubusercontent.com/mstudio45/MSDOORS/main/MSDOORS.lua"),true))() end) OtherSection:NewButton("object morpher", "May work for other games (doors is the game)", function() loadstring(game:HttpGet("https://raw.githubusercontent.com/MrNeRD0/Doors-Hack/main/BeEverything.lua"))() end)