forked from seanscripted/seansutilities
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathseansutilitiesV2
More file actions
31 lines (25 loc) · 1.01 KB
/
seansutilitiesV2
File metadata and controls
31 lines (25 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
local httpService = game:GetService("HttpService")
local CheckVersion = httpService:GetAsync("https://pastebin.com/raw/9AR4Zc2j")
local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
local Window = Library.CreateLib("Sean's Utilities", "Midnight")
local Tab = Window:NewTab("Info")
local Info = Tab:NewSection("Welcome back, "..game.Players.LocalPlayer.Name)
local UIEdit = Window:NewTab("UI Options")
local EditUI = UIEdit:NewSection("Customize UI")
function makenotif(text)
game.StarterGui:SetCore("SendNotification", {
Title = "Sean's Utilities";
Text = text;
Duration = 15;
})
end
if string.find(CheckVersion, "V0.1") == nil then
end
local PremiumLabel = Info:NewLabel("PREMIUM: False")
Info:NewButton("Support Server", "Join for support and news", function()
makenotif("Server link has been copied!")
setclipboard("hi")
end)
if LocalPlayer.Name == "floppinera" then
PremiumLabel:UpdateLabel("PREMIUM = TRUE")
end