Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
- local Window = Library.CreateLib("Prison Life", "Sentinel")
- local plr = game.Players.LocalPlayer
- local char = plr.Character
- -- Main
- local Main = Window:NewTab("Main")
- local MainSection = Main:NewSection("Main")
- MainSection:NewDropdown("Gives a Gun/Guns", "Gives you Gun/Guns", {"M9", "Remington 870", "AK-47"}, function(v)
- local A_1 = game:GetService("Workspace")["Prison_ITEMS"].giver[v].ITEMPICKUP
- local Event = game:GetService("Workspace").Remote.ItemHandler
- Event:InvokeServer(A_1)
- end)
- MainSection:NewDropdown("Mod Gun", "Makes gun op", {"M9", "Remington 870", "AK-47"}, function(v)
- local module = nil
- if game:GetService("Players").LocalPlayer.Backpack:FindFirstChild(v) then
- module = require(game:GetService("Players").LocalPlayer.Backpack[v].GunStates)
- elseif game:GetService("Players").LocalPlayer.Character:FindFirstChild(v) then
- module = require(game:GetService("Players").LocalPlayer.Character[v].GunStates)
- end
- if module ~= nil then
- module["MaxAmmo"] = math.huge
- module["CurrentAmmo"] = math.huge
- module["StoredAmmo"] = math.huge
- module["FireRate"] = 0.000001
- module["Spread"] = 0
- module["Range"] = math.huge
- module["Bullets"] = 10
- module["ReloadTime"] = 0.000001
- module["AutoFire"] = true
- end
- end)
- -- LocalPlayer
- local LocalPlayer = Window:NewTab("LocalPlayer")
- local LocalSection = LocalPlayer:NewSection("LocalPlayer")
- LocalSection:NewSlider("WalkSpeed", "Changes WalkSpeed", 250, 16, function(v) -- 500 (MaxValue) | 0 (MinValue)
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = v
- end)
- LocalSection:NewSlider("JumpPower", "Changes JumpPower", 250, 50, function(v) -- 500 (MaxValue) | 0 (MinValue)
- game.Players.LocalPlayer.Character.Humanoid.JumpPower = v
- end)
- -- Teleport
- local Teleport = Window:NewTab("Teleport")
- local TeleportSection = Teleport:NewSection("Teleport")
- TeleportSection:NewButton("Teleport To WareHouse", "Teleports to WareHouse", function()
- char.HumanoidRootPart.CFrame = CFrame.new(-884.21344, 112.121124, 2056.89917, -1, 0, 0, 0, 1, 0, 0, 0, -1)
- end)
- TeleportSection:NewButton("Teleport To Prison", "Teleports to Prison", function()
- char.HumanoidRootPart.CFrame = CFrame.new(805.599792, 96.3000031, 2394.69849, 1, 0, 0, 0, 1, 0, 0, 0, 1)
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement