Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- if game.PlaceId == 155615604 then
- local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
- local Window = Library.CreateLib("PrisonLife -- UnitedHub", "Synapse")
- --Main
- local Main = Window:NewTab("Main")
- local MainSection = Main:NewSection("Main")
- MainSection:NewDropdown("Give Gun", "Gives The Chosen Gun To LocalPlayer", {"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", "Gives The Chosen Gun An OP Feature", {"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
- end
- end)
- --Player
- local Player = Window:NewTab("Player")
- local PlayerSection = Player:NewSection("Player")
- PlayerSection:NewSlider("WalkSpeed", "Increase WalkSpeed", 250, 16, function(v)
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = v
- end)
- PlayerSection:NewSlider("JumpPower", "Increase JumpPower", 250, 50, function(v)
- game.Players.LocalPlayer.Character.Humanoid.JumpPower = v
- end)
- --Teleport
- local Teleport = Window:NewTab("Teleport")
- local TeleportSection = Teleport:NewSection("Teleport")
- TeleportSection:NewButton("CellBlock", "TP To CellBlock", function(v)
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(918.215, 99.99, 2439.11)
- end)
- TeleportSection:NewButton("PrisonYard", "TP To PrisonYard", function(v)
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(773.641, 97.9999, 2468.76)
- end)
- TeleportSection:NewButton("CriminalBase", "TP To CriminalBase", function(v)
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-893.17, 94.1271, 2114.98)
- end)
- end
Add Comment
Please, Sign In to add comment