-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVerts Free Anti-Log.lua
250 lines (250 loc) · 7.73 KB
/
Verts Free Anti-Log.lua
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
local TweenService = game:GetService("TweenService")
local UI = game:GetObjects("rbxassetid://7471025278")[1]
UI.Parent = game["CoreGui"]
local Main = UI["Main"]
local NotifyFrame = UI.Notifaction
local AntiArea = Main["AntiLogArea"]
local MiscArea = Main["MiscArea"]
local Input = AntiArea["Input"]
local AntiLayout = AntiArea["Layout"]
local Play = AntiLayout["Play"]
local Sync = AntiLayout["Sync"]
local MiscLayout = MiscArea["Layout"]
local Amount = MiscLayout["Amount"]
local TimePos = MiscLayout["TimePos"]
local DupeB = MiscLayout["Dupe"]
local Close = Main["Close"]
local Player = game.Players.LocalPlayer
function notify(arg)
if arg then
NotifyFrame.Description.Text = arg
else
NotifyFrame.Description.Text = "Blank Notifaction"
end
NotifyFrame:TweenPosition(UDim2.new(0, 0, .825, 0), "Out", "Linear", .5)
wait(2.5)
NotifyFrame:TweenPosition(UDim2.new(-2, 0, .825, 0), "Out", "Linear", 2.5)
end
function Dupe(Amount)
local DropT = {}
stopDupe = false
local Pos = Player.Character.HumanoidRootPart.CFrame
wait(.1)
Player.Character:MoveTo(Vector3.new(0, 1e7, 0))
wait(.15)
Player.Character.HumanoidRootPart.Anchored = true
for i = 1, Amount do
if stopDupe then
break
end
Player.Character:MoveTo(Vector3.new(0, 1e7, 0))
wait(.15)
for i, v in pairs(Player.Backpack:GetChildren()) do
if v:IsA("Tool") then
v.Parent = Player.Character
wait(.1)
v.Parent = workspace
table.insert(DropT, v)
end
end
Player.Character:BreakJoints()
Player.CharacterAdded:wait()
Player.Character:MoveTo(Vector3.new(Pos))
wait(.1)
if stopDupe then
break
end
end
for i, v in pairs(DropT) do
firetouchinterest(v.Handle, Player.Character.HumanoidRootPart, 0)
repeat
wait()
until v.Parent == Player.Character
end
Player.Character.HumanoidRootPart.CFrame = Pos
end
function Format(Int)
return string.format("%02i", Int)
end
function getVersion(id)
return tonumber(string.match(game:HttpGetAsync("http://www.roblox.com/studio/plugins/info?assetId=" .. tostring(tonumber(id))), "value=\"(%d+)\""))
end
function confuzzle(text)
if type(text) == "number" then
text = string.format("0x%X", text)
end
return (string.gsub(text, ".", function(symbol)
return string.format(({"%%%x", "%%%X"})[math.random(2)], string.byte(string[({"upper", "lower"})[math.random(2)]](symbol)))
end))
end
function genId(ToConvert)
local function E(id, bool)
return tostring(("&" .. confuzzle("assetversionid") .. (bool and "=\n\r" or "\n\r=") .. confuzzle(id) or ""))
end
local IdStorage = {E(getVersion(ToConvert), true), E(359218057), E(363537554), E(307950810), E(307918992)}
local function X()
return tostring(table.remove(IdStorage, math.random(#IdStorage, #IdStorage)))
end
local RetId = string.rep("\n=ƒ=ƒ=ƒ=ƒ=ƒ=ƒ\n" .. X() .. "\n=ƒ=ƒ=ƒ=ƒ=ƒ=ƒ\n" .. X() .. "\n=ƒ=ƒ=ƒ=ƒ=ƒ=ƒ\n", 4)
while #IdStorage > 0 do
RetId = RetId .. X()
end
return tostring(RetId)
end
Main["Active"] = true
Main["Draggable"] = true
NotifyFrame.Description["TextWrapped"] = true
Close["MouseButton1Down"]:connect(function()
UI:Remove()
end)
Input.FocusLost:connect(function()
if not tonumber(Input.Text) then
notify("Invalid Audio ID provided")
end
end)
Amount.FocusLost:connect(function()
if not tonumber(Amount.Text) then
notify("Invalid dupe amount")
end
end)
DupeB.MouseButton1Down:connect(function()
notify("Duping " .. tonumber(Amount.Text) .. " Tools")
Dupe(tonumber(Amount.Text))
wait()
Amount.Text = ""
end)
Play.MouseButton1Down:connect(function()
if not tonumber(Input.Text) then
notify("Invalid Audio ID provided")
return
end
for i, v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
v.Parent = game.Players.LocalPlayer.Character
end
wait()
local Bait = confuzzle("142376088")
local ID = genId(Input.Text)
ID = string.gsub(ID, "%X%x", function(symbol)
return symbol .. string.rep(" ", 2)
end)
Bait = string.gsub(Bait, "%x%x", function(symbol)
return symbol .. string.rep(" ", 2)
end)
h = "&\n?\n <verts>\n " .. confuzzle(Bait) .. "\n </>\n <string>\n " .. Player.Name .. " <- cool kid\n </>\n <lol nigger>\n </>\n?"
ID = "0\n?\n \n\n\n\n [ verts ? discord.gg/uv9D4XGRtP ]" .. ID .. h
for i, v in next, Player.Character:GetDescendants() do
if v:IsA("RemoteEvent") then
v:FireServer("PlaySong", ID)
end
end
wait(1)
Input.Text = ""
end)
Sync.MouseButton1Down:connect(function()
for i, v in pairs(game.Players.LocalPlayer.Character:GetDescendants()) do
if v:IsA("Sound") then
v.TimePosition = 0
end
end
notify("Synced all boomboxes")
end)
TimePos.FocusLost:connect(function()
for i, v in pairs(game.Players.LocalPlayer.Character:GetDescendants()) do
if v:IsA("Sound") then
v.TimePosition = tonumber(TimePos.Text)
end
end
notify("Synced all boomboxes to \"" .. tonumber(TimePos.Text) .. "\"")
wait(.5)
TimePos.Text = ""
end)
for i, v in pairs(UI:GetDescendants()) do
if v.Name == "Circle" then
v.BackgroundColor3 = Color3.fromRGB(136, 96, 255)
end
end
for i, v in pairs(UI:GetDescendants()) do
if v:IsA("TextBox") then
v.ClipsDescendants = true
local ColorR = v.BackgroundColor3.R * 255
local ColorG = v.BackgroundColor3.G * 255
local ColorB = v.BackgroundColor3.B * 255
local HoverIn = TweenService:Create(v, TweenInfo.new(.17, Enum.EasingStyle.Linear, Enum.EasingDirection.In), {
BackgroundColor3 = Color3.fromRGB(ColorR + 25, ColorG + 25, ColorB + 25)
})
local HoverOut = TweenService:Create(v, TweenInfo.new(.35, Enum.EasingStyle.Exponential, Enum.EasingDirection.Out), {
BackgroundColor3 = Color3.fromRGB(ColorR, ColorG, ColorB)
})
v.MouseEnter:Connect(function()
HoverIn:play()
end)
v.MouseLeave:Connect(function()
HoverOut:play()
end)
local Circle = v.Circle
v.MouseEnter:connect(function(X, Y)
v.FocusLost:connect(function()
local Clone = Circle:Clone()
Clone.Parent = v
Clone.Position = UDim2.new(0, X - v.AbsolutePosition.X, 0, Y - v.AbsolutePosition.Y - 36)
Clone.Visible = true
TweenService:Create(Clone, TweenInfo.new(.3, Enum.EasingStyle.Linear, Enum.EasingDirection.Out), {
BackgroundTransparency = 1,
Size = UDim2.new(1.5, 0, 1.5, 0)
}):play()
wait(.4)
Clone:remove()
v.MouseLeave:connect(function()
X = nil
Y = nil
end)
end)
end)
end
end
for i, v in pairs(UI:GetDescendants()) do
if v:IsA("TextButton") then
local ColorR = v.BackgroundColor3.R * 255
local ColorG = v.BackgroundColor3.G * 255
local ColorB = v.BackgroundColor3.B * 255
local HoverIn = TweenService:Create(v, TweenInfo.new(.17, Enum.EasingStyle.Linear, Enum.EasingDirection.In), {
BackgroundColor3 = Color3.fromRGB(ColorR + 25, ColorG + 25, ColorB + 25)
})
local HoverOut = TweenService:Create(v, TweenInfo.new(.35, Enum.EasingStyle.Exponential, Enum.EasingDirection.Out), {
BackgroundColor3 = Color3.fromRGB(ColorR, ColorG, ColorB)
})
v.MouseEnter:Connect(function()
HoverIn:play()
end)
v.MouseLeave:Connect(function()
HoverOut:play()
end)
local Circle = v.Circle
v.MouseButton1Down:connect(function(X, Y)
local Clone = Circle:Clone()
Clone.Parent = v
Clone.Position = UDim2.new(0, X - v.AbsolutePosition.X, 0, Y - v.AbsolutePosition.Y - 36)
Clone.Visible = true
TweenService:Create(Clone, TweenInfo.new(.3, Enum.EasingStyle.Linear, Enum.EasingDirection.Out), {
BackgroundTransparency = 1,
Size = UDim2.new(1.5, 0, 1.5, 0)
}):play()
wait(.4)
Clone:remove()
end)
end
end
for i, v in pairs(UI:GetDescendants()) do
if v:IsA("TextBox") then
v.Changed:connect(function(x)
if x == "Text" then
TweenService:Create(v, TweenInfo.new(.3, Enum.EasingStyle.Linear, Enum.EasingDirection.Out), {
TextColor3 = Color3.fromRGB(136, 96, 255)
}):play()
end
if v.Text == "" then
v.TextColor3 = Color3.fromRGB(255, 255, 255)
end
end)
end
end