Advertisement
oktosamurai

kavo ui

Apr 6th, 2022
2,023
0
Never
2
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.86 KB | None | 0 0
  1. if game.PlaceId == 155615604 then
  2.     local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  3.     local Window = Library.CreateLib("Prison Life", "Sentinel")
  4.  
  5.     -- MAIN
  6.     local Main = Window:NewTab("Main")
  7.     local MainSection = Main:NewSection("Main")
  8.  
  9.     MainSection:NewDropdown("Give Gun", "Gives the localplayer a gun", {"M9", "Remington 870", "AK-47"}, function(v)
  10.         local A_1 = game:GetService("Workspace")["Prison_ITEMS"].giver[v].ITEMPICKUP
  11.         local Event = game:GetService("Workspace").Remote.ItemHandler
  12.         Event:InvokeServer(A_1)
  13.     end)
  14.  
  15.     MainSection:NewDropdown("Gun Mod", "Makes the gun op", {"M9", "Remington 870", "AK-47"}, function(v)
  16.         local module = nil
  17.         if game:GetService("Players").LocalPlayer.Backpack:FindFirstChild(v) then
  18.             module = require(game:GetService("Players").LocalPlayer.Backpack[v].GunStates)
  19.         elseif game:GetService("Players").LocalPlayer.Character:FindFirstChild(v) then
  20.             module = require(game:GetService("Players").LocalPlayer.Character[v].GunStates)
  21.         end
  22.         if module ~= nil then
  23.             module["MaxAmmo"] = math.huge
  24.             module["CurrentAmmo"] = math.huge
  25.             module["StoredAmmo"] = math.huge
  26.             module["FireRate"] = 0.000001
  27.             module["Spread"] = 0
  28.             module["Range"] = math.huge
  29.             module["Bullets"] = 10
  30.             module["ReloadTime"] = 0.000001
  31.             module["AutoFire"] = true
  32.         end
  33.     end)
  34.  
  35.     -- PLAYER
  36.     local Player = Window:NewTab("Player")
  37.     local PlayerSection = Player:NewSection("Player")
  38.  
  39.     PlayerSection:NewSlider("Walkspeed", "Changes the walkspeed", 250, 16, function(v)
  40.         game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = v
  41.     end)
  42.  
  43.     PlayerSection:NewSlider("Jumppower", "Changes the jumppower", 250, 50, function(v)
  44.         game.Players.LocalPlayer.Character.Humanoid.JumpPower = v
  45.     end)
  46. elseif game.PlaceId == 3956818381 then
  47.     local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  48.     local Window = Library.CreateLib("Ninja Legends", "Sentinel")
  49.  
  50.     -- MAIN
  51.     local Main = Window:NewTab("Main")
  52.     local MainSection = Main:NewSection("Main")
  53.  
  54.     MainSection:NewToggle("Auto Swing", "Make your player autoswing", function(v)
  55.         getgenv().autoswing = v
  56.         while true do
  57.             if not getgenv().autoswing then return end
  58.             for _,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  59.                 if v:FindFirstChild("ninjitsuGain") then
  60.                     game.Players.LocalPlayer.Character.Humanoid:EquipTool(v)
  61.                     break
  62.                 end
  63.             end
  64.             local A_1 = "swingKatana"
  65.             local Event = game:GetService("Players").LocalPlayer.ninjaEvent
  66.             Event:FireServer(A_1)
  67.             wait(0.1)
  68.         end
  69.     end)
  70.  
  71.     MainSection:NewToggle("Auto Sell", "Makes your player autosell", function(v)
  72.         getgenv().autosell = v
  73.         while true do
  74.             if getgenv().autoswing == false then return end
  75.             game:GetService("Workspace").sellAreaCircles["sellAreaCircle16"].circleInner.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  76.             wait(0.1)
  77.             game:GetService("Workspace").sellAreaCircles["sellAreaCircle16"].circleInner.CFrame = CFrame.new(0,0,0)
  78.             wait(0.1)
  79.         end
  80.     end)
  81.  
  82.     MainSection:NewButton("Unlock all islands", "Unlocks all islands", function()
  83.         local oldcframe = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  84.         for _,v in pairs(game:GetService("Workspace").islandUnlockParts:GetChildren()) do
  85.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
  86.             wait(0.1)
  87.         end
  88.         wait(0.1)
  89.         game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = oldcframe
  90.     end)
  91.    
  92.     MainSection:NewToggle("Auto buy all swords", "Auto buys all swords", function(v)
  93.         getgenv().buyswords = v
  94.         while true do
  95.             if not getgenv().buyswords then return end
  96.             local A_1 = "buyAllSwords"
  97.             local A_2 = "Inner Peace Island"
  98.             local Event = game:GetService("Players").LocalPlayer.ninjaEvent
  99.             Event:FireServer(A_1, A_2)
  100.             wait(0.5)
  101.         end
  102.     end)
  103.  
  104.     MainSection:NewToggle("Auto buy all belts", "Auto buys all belts", function(v)
  105.         getgenv().buybelts = v
  106.         while true do
  107.             if not getgenv().buybelts then return end
  108.             local A_1 = "buyAllBelts"
  109.             local A_2 = "Inner Peace Island"
  110.             local Event = game:GetService("Players").LocalPlayer.ninjaEvent
  111.             Event:FireServer(A_1, A_2)
  112.             wait(0.5)
  113.         end
  114.     end)
  115. end
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement