Skip to content

Instantly share code, notes, and snippets.

View RavenSharpCoding's full-sized avatar
🖥️
Coding

Sharp Coder RavenSharpCoding

🖥️
Coding
  • Sharpest Coding
  • U.S.A
View GitHub Profile
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("Prison Life", "Sentinel")
-- MAIN
local Main = Window:NewTab("Main")
local MainSection = Main:NewSection("Main")
MainSection:NewDropdown("Give Gun", "Gives the localplayer a gun", {"M9", "Remington 870", "AK-47"}, function(v)
local A_1 = game:GetService("Workspace")["Prison_ITEMS"].giver[v].ITEMPICKUP
@RavenSharpCoding
RavenSharpCoding / UI-Lib Full
Created November 7, 2021 02:16
UI-Lib Full
local library = {}
function library:CreateWindow(OkText)
local Design = Instance.new("ScreenGui")
local TopMain = Instance.new("Frame")
local Container = Instance.new("Frame")
local UIGridLayout = Instance.new("UIGridLayout")
local Title = Instance.new("TextLabel")
Design.Name = "Design"