-- Budokai Z local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))() local Window = Library.CreateLib("Budokai Z") local Tab = Window:NewTab("Info") local Section = Tab:NewSection("Made By rotten lök") Section:NewKeybind("Toggle Keybind", "Toggle for UI", Enum.KeyCode.RightShift, function() Library:ToggleUI() end) local Main = Window:NewTab("Main") local noStunSection = Main:NewSection("No stun") noStunSection:NewButton("No Stun", "Re-execute when respawned", function() local fullyStunned = game:GetService("Workspace").SpawnedCharacters.DAVIDBAKIRCISLAYER.Core.FullyStunned local mt = getrawmetatable(game) local oldmt = mt.__index setreadonly(mt, false) mt.__index = newcclosure(function(table, index) if table == fullyStunned and index == "Value" then return false; end return oldmt(table, index) end) setreadonly(mt, true) local stunThrottled = game:GetService("Workspace").SpawnedCharacters.DAVIDBAKIRCISLAYER.Core.StunThrottled local mt = getrawmetatable(game) local oldmt = mt.__index setreadonly(mt, false) mt.__index = newcclosure(function(table, index) if table == stunThrottled and index == "Value" then return false; end return oldmt(table, index) end) setreadonly(mt, true) end) local attackSpeedAndFlySpeedSection = Main:NewSection("Attack Speed and Fly Speed") attackSpeedAndFlySpeedSection:NewTextBox("Attack Speed", "Re-execute when respawned", function(v) local attackSpeed = game:GetService("Workspace").SpawnedCharacters.DAVIDBAKIRCISLAYER.Core.AttackSpeed local mt = getrawmetatable(game) local oldmt = mt.__index setreadonly(mt, false) mt.__index = newcclosure(function(table, index) if table == attackSpeed and index == "Value" then return v; end return oldmt(table, index) end) setreadonly(mt, true) end) attackSpeedAndFlySpeedSection:NewTextBox("Fly Speed", "Re-execute when respawned", function(v) local flySpeed = game:GetService("Workspace").SpawnedCharacters.DAVIDBAKIRCISLAYER.Core.SpeedBoost local mt = getrawmetatable(game) local oldmt = mt.__index setreadonly(mt, false) mt.__index = newcclosure(function(table, index) if table == flySpeed and index == "Value" then return v; end return oldmt(table, index) end) setreadonly(mt, true) end)