local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))() local Window = Library.CreateLib("Pikachu Hub", "Sentinel") if game.PlaceId == 8534845015 then local Main = Window:NewTab("Main") local MainSection = Main:NewSection("Main") MainSection:NewButton("Item Notifier","Not Out yet but its the item notifier", function() print("Clicked") end) local Misc = Window:NewTab("Misc") local MiscSection = Misc:NewSection("Misc") MiscSection:NewSlider("WalkSpeed", "SliderInfo", 500, 16, function(s) -- 500 (MaxValue) | 0 (MinValue) game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s end) MiscSection:NewSlider("JumpPower", "SliderInfo", 350, 50, function(s) -- 500 (MaxValue) | 0 (MinValue) game.Players.LocalPlayer.Character.Humanoid.JumpPower = s end) MiscSection:NewButton("Reset Your SuperHuman Powers", "Not Out yet but its the item notifier", function() game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16 game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50 end) MiscSection:NewButton("Esp Player", "Observation Haki111!111", function() local esp_settings = { ---- table for esp settings textsize = 8, colour = 255,255,255 } local gui = Instance.new("BillboardGui") local esp = Instance.new("TextLabel",gui) ---- new instances to make the billboard gui and the textlabel gui.Name = "Cracked esp"; ---- properties of the esp gui.ResetOnSpawn = false gui.AlwaysOnTop = true; gui.LightInfluence = 0; gui.Size = UDim2.new(1.75, 0, 1.75, 0); esp.BackgroundColor3 = Color3.fromRGB(255, 255, 255); esp.Text = "" esp.Size = UDim2.new(0.0001, 0.00001, 0.0001, 0.00001); esp.BorderSizePixel = 4; esp.BorderColor3 = Color3.new(esp_settings.colour) esp.BorderSizePixel = 0 esp.Font = "GothamSemibold" esp.TextSize = esp_settings.textsize esp.TextColor3 = Color3.fromRGB(esp_settings.colour) -- text colour game:GetService("RunService").RenderStepped:Connect(function() ---- loops faster than a while loop :) for i,v in pairs (game:GetService("Players"):GetPlayers()) do if v ~= game:GetService("Players").LocalPlayer and v.Character.Head:FindFirstChild("Cracked esp")==nil then -- craeting checks for team check, local player etc esp.Text = "{"..v.Name.."}" gui:Clone().Parent = v.Character.Head end end end) end) MiscSection:NewToggle("Autofarm Boxes", "{Not Out yet}", function(state) if state then print("Toggle On") else print("Toggle Off") end end) MiscSection:NewButton("Admin","Infinite Yield", function() loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))() end) local Settings = Window:NewTab("Settings") local SettingsSection = Settings:NewSection("Settings") SettingsSection:NewColorPicker("RGB", "Rainbow", Color3.fromRGB(256,134,654), function(color) print(Color) -- Second argument is the default color end) local colors = { SchemeColor = Color3.fromRGB(0,255,255), Background = Color3.fromRGB(0, 0, 0), Header = Color3.fromRGB(0, 0, 0), TextColor = Color3.fromRGB(255,255,255), ElementColor = Color3.fromRGB(20, 20, 20) } local Window = Library.CreateLib("Pikachu Hub", colors) end local Versal = Window:NewTab("Versal") local VersalSection = Versal:NewSection("Versal") VersalSection:NewLabel("If you close Then Re Execute the script")