-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathClient.lua
More file actions
64 lines (60 loc) · 1.38 KB
/
Client.lua
File metadata and controls
64 lines (60 loc) · 1.38 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
local remTable = {
game:GetService("JointsService"):FindFirstChildOfClass("RemoteFunction"),
game:GetService("JointsService"):FindFirstChildOfClass("RemoteEvent"),
}
function generateRandomString(len: number?)
len = len or 8
local generated = ""
for i = 1, len do
local a = "`1234567890!@#$%^&*()-=qwrtyuiop[]{}asdfghjkl;:'\"zxcvbm,<.>/?QWERTYUIOPAASDFGHJKLZXCVBNM"
generated = generated .. a:sub(math.random(1, #a), math.random(1, #a))
end
return generated
end
task.spawn(function()
while wait(0.01) do
script.Name = generateRandomString(50)
for _, v in pairs(remTable) do
pcall(function()
v.Name = generateRandomString(50)
end)
end
end
end)
task.spawn(function()
while wait(0.05) do
for _, v in pairs(remTable) do
if v ~= nil then
local a = v:Clone()
a.Parent = game:GetService("JointsService")
spawn(function()
while wait(0.05) do
if a ~= nil then
a.Name = generateRandomString(50)
end
end
end)
spawn(function()
wait(0.25)
a:Destroy()
end)
end
end
end
end)
task.spawn(function()
while wait(0.05) do
for _, rem in pairs(remTable) do
if rem ~= nil and (rem:FindFirstChild(" ") ~= nil) then
rem.Name = generateRandomString(50)
pcall(function()
if rem:IsA("RemoteEvent") then
rem:FireServer("auth")
else
rem:InvokeServer("auth")
end
end)
end
end
end
end)