Guest User

Budokai Z

a guest
Mar 17th, 2023
1,283
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.40 KB | None | 0 0
  1. -- Budokai Z
  2.  
  3. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  4.  
  5. local Window = Library.CreateLib("Budokai Z")
  6.  
  7. local Tab = Window:NewTab("Info")
  8.  
  9. local Section = Tab:NewSection("Made By rotten lök")
  10.  
  11. Section:NewKeybind("Toggle Keybind", "Toggle for UI", Enum.KeyCode.RightShift, function()
  12. Library:ToggleUI()
  13. end)
  14.  
  15. local Main = Window:NewTab("Main")
  16.  
  17. local noStunSection = Main:NewSection("No stun")
  18.  
  19. noStunSection:NewButton("No Stun", "Re-execute when respawned", function()
  20. local fullyStunned = game:GetService("Workspace").SpawnedCharacters.DAVIDBAKIRCISLAYER.Core.FullyStunned
  21. local mt = getrawmetatable(game)
  22. local oldmt = mt.__index
  23. setreadonly(mt, false)
  24.  
  25. mt.__index = newcclosure(function(table, index)
  26. if table == fullyStunned and index == "Value" then
  27. return false;
  28. end
  29. return oldmt(table, index)
  30. end)
  31. setreadonly(mt, true)
  32.  
  33. local stunThrottled = game:GetService("Workspace").SpawnedCharacters.DAVIDBAKIRCISLAYER.Core.StunThrottled
  34. local mt = getrawmetatable(game)
  35. local oldmt = mt.__index
  36. setreadonly(mt, false)
  37.  
  38. mt.__index = newcclosure(function(table, index)
  39. if table == stunThrottled and index == "Value" then
  40. return false;
  41. end
  42. return oldmt(table, index)
  43. end)
  44. setreadonly(mt, true)
  45. end)
  46.  
  47. local attackSpeedAndFlySpeedSection = Main:NewSection("Attack Speed and Fly Speed")
  48.  
  49. attackSpeedAndFlySpeedSection:NewTextBox("Attack Speed", "Re-execute when respawned", function(v)
  50. local attackSpeed = game:GetService("Workspace").SpawnedCharacters.DAVIDBAKIRCISLAYER.Core.AttackSpeed
  51. local mt = getrawmetatable(game)
  52. local oldmt = mt.__index
  53. setreadonly(mt, false)
  54.  
  55. mt.__index = newcclosure(function(table, index)
  56. if table == attackSpeed and index == "Value" then
  57. return v;
  58. end
  59. return oldmt(table, index)
  60. end)
  61. setreadonly(mt, true)
  62. end)
  63.  
  64. attackSpeedAndFlySpeedSection:NewTextBox("Fly Speed", "Re-execute when respawned", function(v)
  65. local flySpeed = game:GetService("Workspace").SpawnedCharacters.DAVIDBAKIRCISLAYER.Core.SpeedBoost
  66. local mt = getrawmetatable(game)
  67. local oldmt = mt.__index
  68. setreadonly(mt, false)
  69.  
  70. mt.__index = newcclosure(function(table, index)
  71. if table == flySpeed and index == "Value" then
  72. return v;
  73. end
  74. return oldmt(table, index)
  75. end)
  76. setreadonly(mt, true)
  77. end)
Advertisement
Comments
Add Comment
Please, Sign In to add comment