-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdoMICUP
51 lines (46 loc) · 1.78 KB
/
doMICUP
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
everyClipboard = setclipboard or toclipboard or set_clipboard or (Clipboard and Clipboard.set)
function Notify(titletxt, text, time)
local GUI = Instance.new("ScreenGui")
local Main = Instance.new("Frame", GUI)
local title = Instance.new("TextLabel", Main)
local message = Instance.new("TextLabel", Main)
GUI.Name = "NotificationOof"
GUI.Parent = game.CoreGui
Main.Name = "MainFrame"
Main.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
Main.BorderSizePixel = 0
Main.Position = UDim2.new(1, 5, 0, 50)
Main.Size = UDim2.new(0, 330, 0, 100)
title.BackgroundColor3 = Color3.new(0, 0, 0)
title.BackgroundTransparency = 0.89999997615814
title.Size = UDim2.new(1, 0, 0, 30)
title.Font = Enum.Font.SourceSansSemibold
title.Text = titletxt
title.TextColor3 = Color3.new(1, 1, 1)
title.TextSize = 17
title.TextScaled = true
message.BackgroundColor3 = Color3.new(0, 0, 0)
message.BackgroundTransparency = 1
message.Position = UDim2.new(0, 0, 0, 30)
message.Size = UDim2.new(1, 0, 1, -30)
message.Font = Enum.Font.SourceSans
message.Text = text
message.TextColor3 = Color3.new(1, 1, 1)
message.TextSize = 16
message.TextScaled = true
wait(0.1)
Main:TweenPosition(UDim2.new(1, -330, 0, 50), "Out", "Sine", 0.5)
wait(time)
Main:TweenPosition(UDim2.new(1, 5, 0, 50), "Out", "Sine", 0.5)
wait(0.6)
GUI:Destroy();
end
if everyClipboard then
everyClipboard("https://discord.gg/VJh3kkYzBn")
wait()
Notify("Alert!", "Outdated loadstring detected, join Discord for new loadstring.", 4)
wait()
Notify("Notification:", "Copied Discord invite link to your clipboard.", 5)
wait(2)
Notify("Note:", "You are now required to use the new Loadstring, exiting...", 5)
end