-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript
471 lines (438 loc) · 15.6 KB
/
script
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
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
-- thank you to: mr harun, mr krone
-- REMOVED DB.JSON
-- by GNAA, a civil rights group striving for homo-african interdependece.
BlacklistedPlayers, WhitelistedPlayers, ModsTable, kroneTable, BLSV, WLSV, MDSV, KRONE =
{},
{},
{},
{},
false,
false,
false,
false
Settings = {ServerHops = 1, Distance = 18, Globals = {"Executions", "List"}}
Blacklist, kroneUserids = {}, {4710732523, 354902977, 1757405302, 5190785314, 61171068, 796429479, 1059258776, 4781261062, 2993262894, 9665936, 2322361079, 449848812}
if (type(getgenv()[Settings["Globals"][1]]) == "number" and getgenv()[Settings["Globals"][1]] > 0) then
getgenv()[Settings["Globals"][1]] = getgenv()[Settings["Globals"][1]] + 1
end
if (not getgenv()[Settings["Globals"][2]]) then
getgenv()[Settings["Globals"][1]] = 1
getgenv()[Settings["Globals"][2]] = {}
end
if
(type(getgenv()[Settings["Globals"][1]]) == "number" and
getgenv()[Settings["Globals"][1]] >= tonumber(Settings["ServerHops"]))
then
getgenv()[Settings["Globals"][1]] = 1
getgenv()[Settings["Globals"][2]] = {}
end
local function checkBlacklist(player)
if table.find(Blacklist, player.UserId) then
table.insert(BlacklistedPlayers, player)
game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer("Blacklisted Player Detected: " .. player.DisplayName, "All")
BLSV = true
end
end
local function checkKrone(player)
if table.find(kroneUserids, player.UserId) then
table.insert(kroneTable, player)
game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(" silly goose | owner Detected: " .. player.DisplayName, "All")
KRONE = true
end
end
local function checkWhitelist(player)
end
local function checkAllPlayers()
for _, player in ipairs(game.Players:GetPlayers()) do
if player ~= LocalPlayer then
checkBlacklist(player)
checkKrone(player)
checkWhitelist(player)
end
end
end
game.Players.PlayerAdded:Connect(function(player)
if player ~= LocalPlayer then
checkBlacklist(player)
checkKrone(player)
checkWhitelist(player)
end
end)
checkAllPlayers()
coroutine.wrap(
function()
while true do
wait()
if #BlacklistedPlayers > 0 then
for _, player in ipairs(game.Players:GetPlayers()) do
if player ~= LocalPlayer and not table.find(BlacklistedPlayers, player) then
player:Destroy()
if player.Character then
player.Character:Destroy()
wait(0.1)
end
end
end
end
end
end
)()
coroutine.wrap(
function()
while true do
wait()
if #WhitelistedPlayers > 0 then
for _, player in ipairs(game.Players:GetPlayers()) do
if player ~= LocalPlayer and table.find(WhitelistedPlayers, player) then
player:Destroy()
if player.Character then
player.Character:Destroy()
wait(0.1)
end
end
end
end
end
end
)()
coroutine.wrap(
function()
while true do
wait()
if #kroneTable > 0 then
for _, player in ipairs(game.Players:GetPlayers()) do
if player ~= LocalPlayer and table.find(kroneTable, player) then
player:Destroy()
if player.Character then
player.Character:Destroy()
wait(0.1)
end
end
end
end
end
end
)()
game:GetService("Lighting").ClockTime = 0
local function ServerHop()
local success, response =
pcall(
function()
return game:GetService("HttpService"):JSONDecode(
game:HttpGet(
"https://games.roblox.com/v1/games/" .. game.PlaceId .. "/servers/Public?sortOrder=Asc&limit=100"
)
)
end
)
if success and response and response.data then
local AvailableServers = response.data
while true do
wait()
local RandomServer = AvailableServers[math.random(#AvailableServers)]
if
RandomServer.playing < RandomServer.maxPlayers - 1 and RandomServer.playing > 12 and
RandomServer.id ~= game.JobId
then
game:GetService("TeleportService"):TeleportToPlaceInstance(game.PlaceId, RandomServer.id)
end
end
else
warn("Failed to retrieve server list. Retrying...")
ServerHop()
end
end
local function hop()
while true do
local success, errorMessage = pcall(ServerHop)
if not success then
warn("Server hop error: " .. errorMessage)
end
wait()
end
end
local Players = game:GetService("Players")
local LocalPlayer = Players.LocalPlayer
local rservice = game:GetService("RunService")
animations = {
3333499508,
3695333486,
3333136415,
3338042785,
4940561610,
4940564896,
4841399916,
4641985101,
4555782893,
4265725525,
3338097973,
3333432454,
3333387824,
4406555273,
4212455378,
4049037604,
3695300085,
3695322025,
5915648917,
5915714366,
5918726674,
5917459365,
5915712534,
5915713518,
5937558680,
5918728267,
5937560570,
507776043,
507777268,
507771019
}
local randomdance = animations[math.random(1, #animations)]
local WaveAnim = Instance.new("Animation")
WaveAnim.AnimationId = "rbxassetid://" .. tostring(randomdance)
local wave
PlayWaveAnim = function()
wave = game.Players.LocalPlayer.Character:FindFirstChildOfClass("Humanoid"):LoadAnimation(WaveAnim)
wave:Play(1, 5, 1)
end
PlayWaveAnim()
if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
coroutine.wrap(
function()
while wait() do
if game.Players.LocalPlayer.CharacterAdded then
game.Players.LocalPlayer.CharacterAdded:wait()
wait(1)
PlayWaveAnim()
end
end
end
)()
end
local CF = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
local numb = 0
local Nearby = function(TP, WP)
local WC, TC = WP["Character"] or nil, TP["Character"] or nil
if WC and TC then
local WPS, TPS = WC["PrimaryPart"]["Position"] or nil, TC["PrimaryPart"]["Position"] or nil
if WPS and TPS then
return ((WPS - TPS)["magnitude"] <= Settings["Distance"])
else
return false
end
end
return false
end
local function shhhlol(TargetPlayer)
local Character = LocalPlayer.Character
local Humanoid = Character:FindFirstChildOfClass("Humanoid")
local RootPart = Humanoid.RootPart
local im = TargetPlayer.Character
local so
local sorry
local please
local stop
local it
if im:FindFirstChildOfClass("Humanoid") then
so = im:FindFirstChildOfClass("Humanoid")
end
if so and so.RootPart then
sorry = so.RootPart
end
if im:FindFirstChild("Head") then
please = im.Head
end
if im:FindFirstChildOfClass("stop") then
stop = im:FindFirstChildOfClass("stop")
end
if Accessoy and stop:FindFirstChild("it") then
it = stop.it
end
if Character and Humanoid and RootPart then
if please then
workspace.CurrentCamera.CameraSubject = please
elseif not please and it then
workspace.CurrentCamera.CameraSubject = it
else
workspace.CurrentCamera.CameraSubject = so
end
if not im:FindFirstChildWhichIsA("BasePart") then
return
end
local function mmmm(comkid, Pos, Ang)
RootPart.CFrame = CFrame.new(comkid.Position) * Pos * Ang
RootPart.RotVelocity = Vector3.new(9e8, 9e8, 9e8)
end
local function wtf(comkid)
local TimeToWait = 0.134
local Time = tick()
local Angle = 0
Att1 = Instance.new("Attachment", RootPart)
Att2 = Instance.new("Attachment", sorry)
repeat
for _, v in next, WhitelistedPlayers do
local WP = table.find(WhitelistedPlayers, tostring(v.UserId))
if WP and Nearby(Player, WP) then
return
end
end
if RootPart and so then
if comkid.Velocity.Magnitude < 30 then
mmmm(
comkid,
CFrame.new(0, 1.5, 0) + so.MoveDirection * comkid.Velocity.Magnitude / 5,
CFrame.Angles(
math.random(1, 2) == 1 and math.rad(0) or math.rad(180),
math.random(1, 2) == 1 and math.rad(0) or math.rad(180),
math.random(1, 2) == 1 and math.rad(0) or math.rad(180)
)
)
game:GetService("RunService").Heartbeat:wait()
mmmm(
comkid,
CFrame.new(0, 1.5, 0) + so.MoveDirection * comkid.Velocity.Magnitude / 1.25,
CFrame.Angles(
math.random(1, 2) == 1 and math.rad(0) or math.rad(180),
math.random(1, 2) == 1 and math.rad(0) or math.rad(180),
math.random(1, 2) == 1 and math.rad(0) or math.rad(180)
)
)
game:GetService("RunService").Heartbeat:wait()
mmmm(
comkid,
CFrame.new(0, -1.5, 0) + so.MoveDirection * comkid.Velocity.Magnitude / 1.25,
CFrame.Angles(
math.random(1, 2) == 1 and math.rad(0) or math.rad(180),
math.random(1, 2) == 1 and math.rad(0) or math.rad(180),
math.random(1, 2) == 1 and math.rad(0) or math.rad(180)
)
)
game:GetService("RunService").Heartbeat:wait()
else
mmmm(comkid, CFrame.new(0, -1.5, 0), CFrame.Angles(math.rad(0), 0, 0))
game:GetService("RunService").Heartbeat:wait()
end
else
break
end
until comkid.Velocity.Magnitude > 1000 or comkid.Parent ~= TargetPlayer.Character or
TargetPlayer.Parent ~= Players or
not TargetPlayer.Character == im or
Humanoid.Health <= 0 or
tick() > Time + TimeToWait
if game.PlaceId == 417267366 then
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(5524, 36, -17126.50)
else
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CF
end
end
workspace.FallenPartsDestroyHeight = 0 / 0
local BV = Instance.new("BodyVelocity")
BV.Parent = RootPart
BV.Velocity = Vector3.new(-9e99, 9e99, -9e99)
BV.MaxForce = Vector3.new(-9e9, 9e9, -9e9)
local BodyGyro = Instance.new("BodyGyro")
BodyGyro.CFrame = CFrame.new(LocalPlayer.Character:FindFirstChild("HumanoidRootPart").Position)
BodyGyro.D = 9e8
BodyGyro.MaxTorque = Vector3.new(-9e9, 9e9, -9e9)
BodyGyro.P = -9e9
local BodyPosition = Instance.new("BodyPosition")
BodyPosition.Position = LocalPlayer.Character:FindFirstChild("HumanoidRootPart").Position
BodyPosition.D = 9e8
BodyPosition.MaxForce = Vector3.new(-9e9, 9e9, -9e9)
BodyPosition.P = -9e9
local LineForce = Instance.new("LineForce")
LineForce.Attachment0 = Att1
LineForce.Attachment1 = Att2
LineForce.ApplyAtCenterOfMass = true
LineForce.InverseSquareLaw = true
LineForce.Magnitude = 2e7
LineForce.MaxForce = 9e9
if sorry and please then
if (sorry.CFrame.p - please.CFrame.p).Magnitude > 5 then
wtf(please)
else
wtf(sorry)
end
elseif sorry and not please then
wtf(sorry)
elseif not sorry and please then
wtf(please)
elseif not sorry and not please and stop and it then
wtf(it)
else
end
BV:Destroy()
BodyGyro:Destroy()
BodyPosition:Destroy()
LineForce:Destroy()
Att1:Destroy()
Att2:Destroy()
for _, x in next, Character:GetDescendants() do
if x:IsA("BasePart") then
x.Velocity, x.RotVelocity = Vector3.new(), Vector3.new()
end
end
Humanoid:ChangeState("GettingUp")
workspace.CurrentCamera.CameraSubject = Humanoid
end
end
rservice.Stepped:Connect(
function()
if LocalPlayer.Character and LocalPlayer.Character:FindFirstChildOfClass("Humanoid") then
if LocalPlayer.Character:FindFirstChildOfClass("Humanoid").Sit == true then
LocalPlayer.Character:FindFirstChildOfClass("Humanoid"):ChangeState("Jumping")
end
for _, z in next, LocalPlayer.Character:GetChildren() do
if z:IsA "BasePart" then
z.CanCollide = false
end
end
end
end
)
coroutine.resume(
coroutine.create(
function()
while wait() do
pcall(
function()
for _, z in pairs(Players:GetPlayers()) do
if z ~= LocalPlayer and not table.find(WhitelistedPlayers, tostring(z.UserId)) then
if
LocalPlayer.Character and LocalPlayer.Character:FindFirstChildOfClass("Humanoid") and
z and
z.Character and
z.Character:FindFirstChildOfClass("Humanoid").Sit == false
then
shhhlol(z)
wait()
end
end
end
end
)
end
end
)
)
local function Chat(msg)
game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(msg, "All")
end
task.spawn(
function()
while true do
wait(0.45)
Chat("vanadium is the only executor to bypass robloxs ac | /b6Y6dyQAHZ")
wait(0.45)
Chat("vanadium is the best executor go use it! | /b6Y6dyQAHZ")
wait(0.45)
Chat("boost 4 access to vanadium premium | /b6Y6dyQAHZ")
wait(0.45)
Chat("chattybins supports vanadium - totatly chattybins | /b6Y6dyQAHZ")
wait(0.45)
Chat("you should use vanadium, now! | /b6Y6dyQAHZ")
wait(0.45)
Chat("critical helped with the ui credits to him | /b6Y6dyQAHZ")
end
end
)