--// UI Library local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/shlexware/Javelin-UI-Library/main/source.lua"))() local Window = Library:CreateWindow("Custom Sample Hub", "Ocean") --// MAIN TAB local Main = Window:NewTab("Main") local MainSection = Main:NewSection("Main") MainSection:NewButton("Back/Front Flip - Makes you do Gymnastics", function() loadstring(game:HttpGet("https://pastebin.com/raw/DHk6BLKJ"))() end) MainSection:NewToggle("Super-Human - Go fast and jump high", function(state) if state then game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 120 game.Players.LocalPlayer.Character.Humanoid.JumpPower = 120 else game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16 game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50 end end) MainSection:NewButton("Infinite Yield - FE Admin Commands", function() loadstring(game:HttpGet("https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source", true))() end) --// PLAYER TAB local Player = Window:NewTab("Player") local PlayerSection = Player:NewSection("Player") PlayerSection:NewSlider("Walkspeed", "SPEED!!", 500, 16, function(s) game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s end) PlayerSection:NewSlider("JumpPower", "JUMP HIGH!!", 350, 50, function(s) game.Players.LocalPlayer.Character.Humanoid.JumpPower = s end) PlayerSection:NewButton("Reset W/S/JP - Resets to all defaults", function() game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50 game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16 end) --// OTHER TAB local Other = Window:NewTab("Other") local OtherSection = Other:NewSection("Other") OtherSection:NewButton("Chat Spoofer - Lets you chat for other people", function() loadstring(game:HttpGet("https://pastebin.com/raw/jdfBHKL9", true))() end) OtherSection:NewButton("Bypassed Fly - Blind Mode", function() loadstring(game:HttpGet("https://raw.githubusercontent.com/Nicuse/RobloxScripts/main/BypassedFly.lua"))() end)