1 | -- kustom notifier |
2 | function Notify(titletxt, text, time) |
3 | local GUI = Instance.new("ScreenGui") |
4 | local Main = Instance.new("Frame", GUI) |
5 | local title = Instance.new("TextLabel", Main) |
6 | local message = Instance.new("TextLabel", Main) |
7 | GUI.Name = "NotificationOof" |
8 | GUI.Parent = game.CoreGui |
9 | Main.Name = "MainFrame" |
10 | Main.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863) |
11 | Main.BorderSizePixel = 0 |
12 | Main.Position = UDim2.new(1, 5, 0, 50) |
13 | Main.Size = UDim2.new(0, 330, 0, 100) |
14 | |
15 | title.BackgroundColor3 = Color3.new(0, 0, 0) |
16 | title.BackgroundTransparency = 0.89999997615814 |
17 | title.Size = UDim2.new(1, 0, 0, 30) |
18 | title.Font = Enum.Font.SourceSansSemibold |
19 | title.Text = titletxt |
20 | title.TextColor3 = Color3.new(1, 1, 1) |
21 | title.TextSize = 17 |
22 | |
23 | message.BackgroundColor3 = Color3.new(0, 0, 0) |
24 | message.BackgroundTransparency = 1 |
25 | message.Position = UDim2.new(0, 0, 0, 30) |
26 | message.Size = UDim2.new(1, 0, 1, -30) |
27 | message.Font = Enum.Font.SourceSans |
28 | message.Text = text |
29 | message.TextColor3 = Color3.new(1, 1, 1) |
30 | message.TextSize = 16 |
31 | |
32 | wait(0.1) |
33 | Main:TweenPosition(UDim2.new(1, -330, 0, 50), "Out", "Sine", 0.5) |
34 | wait(time) |
35 | Main:TweenPosition(UDim2.new(1, 5, 0, 50), "Out", "Sine", 0.5) |
36 | wait(0.6) |
37 | GUI:Destroy(); |
38 | end |
39 | --end-- |
40 | Notify("🤡fake boot🦵🏽", "haahahahaha troll these niggaz", 5) |