-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathdupecandyidklol.lua
More file actions
103 lines (93 loc) · 3.1 KB
/
Copy pathdupecandyidklol.lua
File metadata and controls
103 lines (93 loc) · 3.1 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
local p = game:GetService("Players").LocalPlayer
local pg = p:WaitForChild("PlayerGui")
local RunService = game:GetService("RunService")
local CurrentCamera = workspace.CurrentCamera
local a = Instance.new("ScreenGui")
a.Parent = pg
a.DisplayOrder = 111
a.ResetOnSpawn = false
local b = Instance.new("Frame")
b.Size = UDim2.new(0,300,0,180)
b.Position = UDim2.new(0.5,0,0.5,0)
b.AnchorPoint = Vector2.new(0.5,0.5)
b.BackgroundColor3 = Color3.fromRGB(255,255,255)
b.BorderSizePixel = 0
b.Active = true
b.Draggable = true
b.Parent = a
local c = Instance.new("UICorner")
c.CornerRadius = UDim.new(0,16)
c.Parent = b
local d = Instance.new("UIGradient")
d.Color = ColorSequence.new{
ColorSequenceKeypoint.new(0,Color3.fromRGB(0,128,255)),
ColorSequenceKeypoint.new(1,Color3.fromRGB(255,140,0))
}
d.Rotation = 45
d.Parent = b
local e = Instance.new("Frame")
e.Size = UDim2.new(1,-10,1,-10)
e.Position = UDim2.new(0,5,0,5)
e.BackgroundColor3 = Color3.fromRGB(30,30,30)
e.BorderSizePixel = 0
e.Parent = b
local f = Instance.new("UICorner")
f.CornerRadius = UDim.new(0,14)
f.Parent = e
local g = Instance.new("TextLabel")
g.Size = UDim2.new(1,-20,0,30)
g.Position = UDim2.new(0,10,0,10)
g.BackgroundTransparency = 1
g.Text = "Foxname | Notification"
g.Font = Enum.Font.GothamBold
g.TextSize = 20
g.TextColor3 = Color3.fromRGB(255,255,255)
g.TextXAlignment = Enum.TextXAlignment.Left
g.Parent = e
local centerMsg = Instance.new("TextLabel")
centerMsg.Size = UDim2.new(1,-20,0,60)
centerMsg.Position = UDim2.new(0,10,0,55)
centerMsg.BackgroundTransparency = 1
centerMsg.Text = "The script has been patched, join Discord for more notification "
centerMsg.Font = Enum.Font.GothamBold
centerMsg.TextSize = 16
centerMsg.TextColor3 = Color3.fromRGB(200,200,200)
centerMsg.TextWrapped = true
centerMsg.TextYAlignment = Enum.TextYAlignment.Center
centerMsg.TextXAlignment = (CurrentCamera and CurrentCamera.ViewportSize.X>600) and Enum.TextXAlignment.Left or Enum.TextXAlignment.Center
centerMsg.Parent = e
local j = Instance.new("TextButton")
j.Size = UDim2.new(0.48,-5,0,28)
j.Position = UDim2.new(0,10,1,-38)
j.BackgroundColor3 = Color3.fromRGB(0,128,255)
j.Text = "Copy Discord"
j.Font = Enum.Font.GothamBold
j.TextSize = 14
j.TextColor3 = Color3.fromRGB(255,255,255)
j.Parent = e
local jc = Instance.new("UICorner")
jc.CornerRadius = UDim.new(0,8)
jc.Parent = j
j.MouseButton1Click:Connect(function()
pcall(function() setclipboard("https://discord.gg/foxname") end)
end)
local k = Instance.new("TextButton")
k.Size = UDim2.new(0.48,-5,0,28)
k.Position = UDim2.new(0.52,0,1,-38)
k.BackgroundColor3 = Color3.fromRGB(255,140,0)
k.Text = "Donate"
k.Font = Enum.Font.GothamBold
k.TextSize = 14
k.TextColor3 = Color3.fromRGB(255,255,255)
k.Parent = e
local kc = Instance.new("UICorner")
kc.CornerRadius = UDim.new(0,8)
kc.Parent = k
k.MouseButton1Click:Connect(function()
pcall(function()
setclipboard("https://direct-link.net/1344347/iaXZcb4V6GjT")
setclipboard("https://link-hub.net/1344347/sNxKdBZn4wxj")
setclipboard("https://link-hub.net/1344347/P6MNdBTa7Seh")
setclipboard("https://link-hub.net/1344347/RJRf4xTOGe3o")
end)
end)