-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSlow.lua
More file actions
756 lines (642 loc) · 23 KB
/
Copy pathSlow.lua
File metadata and controls
756 lines (642 loc) · 23 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
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
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
local lib = {}
function lib:Gui(title)
local DarkLib = Instance.new("ScreenGui")
local Main = Instance.new("Frame")
local TabSide = Instance.new("ScrollingFrame")
local UICorner = Instance.new("UICorner")
local UIListLayout_1 = Instance.new("UIListLayout")
local UICorner_3 = Instance.new("UICorner")
local UICorner_5 = Instance.new("UICorner")
local SectionSide = Instance.new("Frame")
local close = Instance.new("ImageButton")
local SectionCorner = Instance.new("UICorner")
local Title = Instance.new("TextLabel")
DarkLib.Name = "DarkLib"
DarkLib.Parent = game.CoreGui
DarkLib.ResetOnSpawn = false
game:GetService("UserInputService").InputBegan:Connect(function(key, gameProcessedEvent)
if key.KeyCode == Enum.KeyCode.LeftAlt then
if DarkLib.Enabled then
DarkLib.Enabled = false
else
DarkLib.Enabled = true
end
end
end)
Main.Name = "Main"
Main.Parent = DarkLib
Main.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
Main.Position = UDim2.new(0.367263854, 0, 0.263959408, 0)
Main.Size = UDim2.new(0, 382, 0, 219)
local Drag = Main
local CoreGui = game:GetService("CoreGui")
local Tween = game:GetService("TweenService")
local UserInputService = game:GetService("UserInputService")
local dragging
local dragInput
local dragStart
local startPos
local function update(input)
local delta = input.Position - dragStart
local dragTime = 0.06
local SmoothDrag = {}
SmoothDrag.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y)
local dragSmoothFunction = Tween:Create(Drag, TweenInfo.new(dragTime, Enum.EasingStyle.Sine, Enum.EasingDirection.InOut), SmoothDrag)
dragSmoothFunction:Play()
end
Drag.InputBegan:Connect(function(input)
if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then
dragging = true
dragStart = input.Position
startPos = Drag.Position
input.Changed:Connect(function()
if input.UserInputState == Enum.UserInputState.End then
dragging = false
end
end)
end
end)
Drag.InputChanged:Connect(function(input)
if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then
dragInput = input
end
end)
UserInputService.InputChanged:Connect(function(input)
if input == dragInput and dragging and Drag.Size then
update(input)
end
end)
TabSide.Name = "TabSide"
TabSide.Parent = Main
TabSide.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
TabSide.BorderSizePixel = 0
TabSide.Position = UDim2.new(0.021, 0,0.038, 0)
TabSide.Size = UDim2.new(0, 92,0, 203)
TabSide.ScrollingDirection = Enum.ScrollingDirection.Y
TabSide.ScrollBarThickness = 5
TabSide.ScrollBarImageColor3 = Color3.fromRGB(255, 255, 255)
TabSide.ClipsDescendants = true
UICorner.Parent = TabSide
UICorner.CornerRadius = UDim.new(0, 8)
UIListLayout_1.Parent = TabSide
UIListLayout_1.SortOrder = Enum.SortOrder.LayoutOrder
UIListLayout_1.Padding = UDim.new(0, 10)
UIListLayout_1.VerticalAlignment = Enum.VerticalAlignment.Center
UIListLayout_1.Changed:Connect(function()
TabSide.CanvasSize = UDim2.new(0, 0, 0, UIListLayout_1.AbsoluteContentSize.Y)
end)
SectionSide.Name = "SectionSide"
SectionSide.Parent = Main
SectionSide.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
SectionSide.Position = UDim2.new(0.29842931, 0, 0.146118715, 0)
SectionSide.Size = UDim2.new(0, 255, 0, 173)
SectionSide.ClipsDescendants = true
SectionSide.Visible = true
SectionCorner.Parent = SectionSide
SectionCorner.CornerRadius = UDim.new(0, 8)
UICorner_5.Parent = Main
close.Name = "close"
close.Parent = Main
close.BackgroundTransparency = 1.000
close.Position = UDim2.new(0.934554935, 0, -0.00228309631, 0)
close.Size = UDim2.new(0, 25, 0, 25)
close.ZIndex = 2
close.Image = "rbxassetid://3926305904"
close.ImageRectOffset = Vector2.new(284, 4)
close.ImageRectSize = Vector2.new(24, 24)
close.MouseButton1Click:Connect(function()
DarkLib:Destroy()
end)
Title.Name = "Title"
Title.Parent = Main
Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Title.BackgroundTransparency = 1.000
Title.BorderSizePixel = 0
Title.Position = UDim2.new(0, 90, 0, 0)
Title.Size = UDim2.new(0, 200, 0, 46)
Title.Font = Enum.Font.FredokaOne
Title.TextColor3 = Color3.fromRGB(255, 255, 255)
Title.TextScaled = false
Title.TextSize = 30.000
Title.TextWrapped = true
Title.Text = title
local Tabs = {}
function Tabs:Tab(name)
local TextButton = Instance.new("TextButton")
local UICorner_2 = Instance.new("UICorner")
TextButton.Parent = TabSide
TextButton.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
TextButton.Position = UDim2.new(0, 0, 0.0821917802, 0)
TextButton.Size = UDim2.new(0, 70, 0, 30)
TextButton.Font = Enum.Font.Highway
TextButton.TextColor3 = Color3.fromRGB(255, 255, 255)
TextButton.TextScaled = true
TextButton.TextSize = 14.000
TextButton.TextWrapped = true
TextButton.Text = name
TextButton.Name = name
UICorner_2.Parent = TextButton
UICorner_2.CornerRadius = UDim.new(0, 8)
local Sections = {}
function Sections:Section(name)
local Page = Instance.new("ScrollingFrame")
local UIListLayout = Instance.new("UIListLayout")
Page.Name = name
Page.Parent = SectionSide
Page.Active = true
Page.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
Page.BorderSizePixel = 0
Page.Position = UDim2.new(0.0470588244, 0, 0.10404624, 0)
Page.Size = UDim2.new(0, 237, 0, 145)
Page.ScrollingDirection = Enum.ScrollingDirection.Y
Page.ScrollBarThickness = 5
Page.ScrollBarImageColor3 = Color3.fromRGB(255, 255, 255)
UIListLayout.Parent = Page
UIListLayout.SortOrder = Enum.SortOrder.LayoutOrder
UIListLayout.Padding = UDim.new(0, 10)
UIListLayout.Changed:Connect(function()
Page.CanvasSize = UDim2.new(0, 0, 0, UIListLayout.AbsoluteContentSize.Y)
end)
TextButton.MouseButton1Click:Connect(function()
for i,v in next, SectionSide:GetChildren() do
if v:IsA("ScrollingFrame") then
v.Visible = false
end
end
Page.Visible = true
end)
local Elements = {}
function Elements:Toggle(name, callback)
local ToggleElement = Instance.new("Frame")
local UICorner = Instance.new("UICorner")
local ToggleState = Instance.new("TextLabel")
local Click = Instance.new("TextButton")
ToggleElement.Name = name
ToggleElement.Parent = Page
ToggleElement.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
ToggleElement.Size = UDim2.new(0, 220, 0, 30)
UICorner.Parent = ToggleElement
ToggleState.Name = "ToggleState"
ToggleState.Parent = ToggleElement
ToggleState.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
ToggleState.BackgroundTransparency = 1.000
ToggleState.BorderSizePixel = 0
ToggleState.Size = UDim2.new(0, 46, 0, 30)
ToggleState.Font = Enum.Font.FredokaOne
ToggleState.Text = ""
ToggleState.TextColor3 = Color3.fromRGB(255, 255, 255)
ToggleState.TextScaled = true
ToggleState.TextSize = 14.000
ToggleState.TextWrapped = true
Click.Name = "Click"
Click.Parent = ToggleElement
Click.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Click.BackgroundTransparency = 1.000
Click.BorderSizePixel = 0
Click.Size = UDim2.new(0, 220, 0, 30)
Click.Font = Enum.Font.Highway
Click.Text = name
Click.TextColor3 = Color3.fromRGB(255, 255, 255)
Click.TextScaled = true
Click.TextSize = 14.000
Click.TextWrapped = true
local toggle = false
local debounce = false
Click.MouseButton1Click:Connect(function()
if debounce == false then
if toggle == false then
debounce = true
ToggleState.Text = "X"
wait(0.25)
debounce = false
toggle = true
pcall(callback, toggle)
elseif toggle == true then
debounce = true
ToggleState.Text = ""
wait(0.25)
debounce = false
toggle = false
pcall(callback, toggle)
end
end
end)
end
function Elements:Label(name)
local TextLabel = Instance.new("TextLabel")
TextLabel.Parent = Page
TextLabel.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
TextLabel.BackgroundTransparency = 1
TextLabel.Position = UDim2.new(0, 0, 0.0821917802, 0)
TextLabel.Size = UDim2.new(0, 220, 0, 30)
TextLabel.Font = Enum.Font.Highway
TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
TextLabel.TextScaled = true
TextLabel.TextSize = 14.000
TextLabel.TextWrapped = true
TextLabel.Text = name
TextLabel.Name = name
end
function Elements:Button(name, callback)
local TextButton_2 = Instance.new("TextButton")
local UICorner_4 = Instance.new("UICorner")
callback = callback or function() end
TextButton_2.Parent = Page
TextButton_2.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
TextButton_2.Position = UDim2.new(0, 0, 0.0821917802, 0)
TextButton_2.Size = UDim2.new(0, 220, 0, 30)
TextButton_2.Font = Enum.Font.Highway
TextButton_2.TextColor3 = Color3.fromRGB(255, 255, 255)
TextButton_2.TextScaled = true
TextButton_2.TextSize = 14.000
TextButton_2.TextWrapped = true
TextButton_2.Text = name
TextButton_2.Name = name
TextButton_2.MouseButton1Click:Connect(function()
callback()
end)
UICorner_4.Parent = TextButton_2
end
return Elements
end
return Sections
end
return Tabs
end
local Library = lib:Gui("Slow-Drink")
local AutoFarmTab = Library:Tab("SlowDrink")
local AutoFarm = AutoFarmTab:Section("SlowDrink")
local LocalPlayerTab = Library:Tab("LocalPlayer")
local LocalPlayer = LocalPlayerTab:Section("LocalPlayer")
local TeleportTab = Library:Tab("Teleport")
local Teleport = TeleportTab:Section("Teleport")
local MiscTab = Library:Tab("Misc")
local Misc = MiscTab:Section("Misc")
local CreditsTab =
Library:Tab("Credits")
local Credits =
CreditsTab:Section("Credits")
function AutoEquip()
spawn(function()
while getgenv().equip == true do
wait(0.8)
if not game.Players.LocalPlayer.Backpack:FindFirstChild("Starter Drink") then
if not game.Players.LocalPlayer.Character:FindFirstChild("Starter Drink") then
game.Players.LocalPlayer.Character:BreakJoints()
end
end
if game.Players.LocalPlayer.leaderstats["Burp points"].Value == 0 then
local Players = game:GetService("Players")
local player = Players:FindFirstChildOfClass("Player")
if player and player.Character then
local humanoid = player.Character:FindFirstChildOfClass("Humanoid")
if humanoid then
local tool = Players.LocalPlayer.Backpack:FindFirstChild("Starter Drink")
if tool then
humanoid:EquipTool(tool)
end
end
end
end
if game.Players.LocalPlayer.leaderstats["Burp points"].Value >= 0 then
local Players = game:GetService("Players")
local player = Players:FindFirstChildOfClass("Player")
if player and player.Character then
local humanoid = player.Character:FindFirstChildOfClass("Humanoid")
if humanoid then
local tool = Players.LocalPlayer.Backpack:FindFirstChild("Starter Drink")
if tool then
humanoid:EquipTool(tool)
end
end
end
end
if game.Players.LocalPlayer.leaderstats["Burp points"].Value >= 150 then
local Players = game:GetService("Players")
local player = Players:FindFirstChildOfClass("Player")
if player and player.Character then
local humanoid = player.Character:FindFirstChildOfClass("Humanoid")
if humanoid then
local tool = Players.LocalPlayer.Backpack:FindFirstChild("Second Drink")
if tool then
humanoid:EquipTool(tool)
end
end
end
end
if game.Players.LocalPlayer.leaderstats["Burp points"].Value >= 600 then
local Players = game:GetService("Players")
local player = Players:FindFirstChildOfClass("Player")
if player and player.Character then
local humanoid = player.Character:FindFirstChildOfClass("Humanoid")
if humanoid then
local tool = Players.LocalPlayer.Backpack:FindFirstChild("Third Drink")
if tool then
humanoid:EquipTool(tool)
end
end
end
end
if game.Players.LocalPlayer.leaderstats["Burp points"].Value >= 1600 then
local Players = game:GetService("Players")
local player = Players:FindFirstChildOfClass("Player")
if player and player.Character then
local humanoid = player.Character:FindFirstChildOfClass("Humanoid")
if humanoid then
local tool = Players.LocalPlayer.Backpack:FindFirstChild("Fourth Drink")
if tool then
humanoid:EquipTool(tool)
end
end
end
end
if game.Players.LocalPlayer.leaderstats["Burp points"].Value >= 3500 then
local Players = game:GetService("Players")
local player = Players:FindFirstChildOfClass("Player")
if player and player.Character then
local humanoid = player.Character:FindFirstChildOfClass("Humanoid")
if humanoid then
local tool = Players.LocalPlayer.Backpack:FindFirstChild("Fifth Drink")
if tool then
humanoid:EquipTool(tool)
end
end
end
end
if game.Players.LocalPlayer.leaderstats["Burp points"].Value >= 10000 then
local Players = game:GetService("Players")
local player = Players:FindFirstChildOfClass("Player")
if player and player.Character then
local humanoid = player.Character:FindFirstChildOfClass("Humanoid")
if humanoid then
local tool = Players.LocalPlayer.Backpack:FindFirstChild("Sixth Drink")
if tool then
humanoid:EquipTool(tool)
end
end
end
end
if game.Players.LocalPlayer.leaderstats["Burp points"].Value >= 25000 then
local Players = game:GetService("Players")
local player = Players:FindFirstChildOfClass("Player")
if player and player.Character then
local humanoid = player.Character:FindFirstChildOfClass("Humanoid")
if humanoid then
local tool = Players.LocalPlayer.Backpack:FindFirstChild("Seventh Drink")
if tool then
humanoid:EquipTool(tool)
end
end
end
end
if game.Players.LocalPlayer.leaderstats["Burp points"].Value >= 60000 then
local Players = game:GetService("Players")
local player = Players:FindFirstChildOfClass("Player")
if player and player.Character then
local humanoid = player.Character:FindFirstChildOfClass("Humanoid")
if humanoid then
local tool = Players.LocalPlayer.Backpack:FindFirstChild("Eighth Drink")
if tool then
humanoid:EquipTool(tool)
end
end
end
end
if game.Players.LocalPlayer.leaderstats["Burp points"].Value >= 150000 then
local Players = game:GetService("Players")
local player = Players:FindFirstChildOfClass("Player")
if player and player.Character then
local humanoid = player.Character:FindFirstChildOfClass("Humanoid")
if humanoid then
local tool = Players.LocalPlayer.Backpack:FindFirstChild("Ninth Drink")
if tool then
humanoid:EquipTool(tool)
end
end
end
end
if game.Players.LocalPlayer.leaderstats["Burp points"].Value >= 230000 then
local Players = game:GetService("Players")
local player = Players:FindFirstChildOfClass("Player")
if player and player.Character then
local humanoid = player.Character:FindFirstChildOfClass("Humanoid")
if humanoid then
local tool = Players.LocalPlayer.Backpack:FindFirstChild("Atomic Drink")
if tool then
humanoid:EquipTool(tool)
end
end
end
end
if game.Players.LocalPlayer.leaderstats["Burp points"].Value >= 500000 then
local Players = game:GetService("Players")
local player = Players:FindFirstChildOfClass("Player")
if player and player.Character then
local humanoid = player.Character:FindFirstChildOfClass("Humanoid")
if humanoid then
local tool = Players.LocalPlayer.Backpack:FindFirstChild("Omega Burp Juice")
if tool then
humanoid:EquipTool(tool)
end
end
end
end
if game.Players.LocalPlayer.leaderstats["Burp points"].Value >= 1000000 then
local Players = game:GetService("Players")
local player = Players:FindFirstChildOfClass("Player")
if player and player.Character then
local humanoid = player.Character:FindFirstChildOfClass("Humanoid")
if humanoid then
local tool = Players.LocalPlayer.Backpack:FindFirstChild("Thunder Fizz")
if tool then
humanoid:EquipTool(tool)
end
end
end
end
if game.Players.LocalPlayer.leaderstats["Burp points"].Value >= 2000000 then
local Players = game:GetService("Players")
local player = Players:FindFirstChildOfClass("Player")
if player and player.Character then
local humanoid = player.Character:FindFirstChildOfClass("Humanoid")
if humanoid then
local tool = Players.LocalPlayer.Backpack:FindFirstChild("Garlic Juice")
if tool then
humanoid:EquipTool(tool)
end
end
end
end
if game.Players.LocalPlayer.Backpack:FindFirstChild("Garlic Juice") then
local Players = game:GetService("Players")
local player = Players:FindFirstChildOfClass("Player")
if player and player.Character then
local humanoid = player.Character:FindFirstChildOfClass("Humanoid")
if humanoid then
local tool = Players.LocalPlayer.Backpack:FindFirstChild("Garlic Juice")
if tool then
humanoid:EquipTool(tool)
end
end
end
end
end
end)
end
AutoFarm:Button("Auto Prestige", function()
while wait(1) do
game.ReplicatedStorage.RemoteEvents.PrestigeEvent:FireServer()
end
end)
AutoFarm:Toggle("Auto Equip", function(bool)
getgenv().equip = bool
if bool then
AutoEquip()
end
end)
AutoFarm:Button("Auto Collect Gem", function()
while wait() do
local gem = game.Workspace.Diamonds:WaitForChild("Diamond")
local Char = game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart")
gem.CFrame = Char.CFrame
end
end)
AutoFarm:Toggle("Slow Auto Drink", function()
while wait(3) do
game.ReplicatedStorage.RemoteEvents.DrinkEvent:FireServer("Starter Drink")
game.ReplicatedStorage.RemoteEvents.DrinkEvent:FireServer("Second Drink")
game.ReplicatedStorage.RemoteEvents.DrinkEvent:FireServer("Third Drink")
game.ReplicatedStorage.RemoteEvents.DrinkEvent:FireServer("Fourth Drink")
game.ReplicatedStorage.RemoteEvents.DrinkEvent:FireServer("Fifth Drink")
game.ReplicatedStorage.RemoteEvents.DrinkEvent:FireServer("Sixth Drink")
game.ReplicatedStorage.RemoteEvents.DrinkEvent:FireServer("Seventh Drink")
game.ReplicatedStorage.RemoteEvents.DrinkEvent:FireServer("Eighth Drink")
game.ReplicatedStorage.RemoteEvents.DrinkEvent:FireServer("Ninth Drink")
game.ReplicatedStorage.RemoteEvents.DrinkEvent:FireServer("Atomic Drink")
game.ReplicatedStorage.RemoteEvents.DrinkEvent:FireServer("Omega Burp Juice")
game.ReplicatedStorage.RemoteEvents.DrinkEvent:FireServer("Thunder Fizz")
game.ReplicatedStorage.RemoteEvents.DrinkEvent:FireServer("Garlic Juice")
end
end)
LocalPlayer:Button("Remove Fps Cap", function()
if setfpscap and type(setfpscap) == "function" then
local num = 100000 or 1e6
if num == 'none' then
return setfpscap(1e6)
elseif num > 0 then
return setfpscap(num)
end
end
end)
LocalPlayer:Button("WalkSpeed", function()
while wait() do
game.Players.LocalPlayer.Character:WaitForChild("Humanoid").WalkSpeed = 700
end
end)
LocalPlayer:Button("Inf Jump", function()
game:GetService("UserInputService").JumpRequest:connect(function()
game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
end)
end)
Teleport:Button("Safe Zone", function()
local New_CFrame = CFrame.new(-46, 48, -15)
local ts = game:GetService("TweenService")
local char = game.Players.LocalPlayer.Character
local part = char.HumanoidRootPart
local ti = TweenInfo.new(1, Enum.EasingStyle.Linear)
local tp = {CFrame = New_CFrame}
ts:Create(part, ti, tp):Play()
end)
Teleport:Button("Pet Shop", function()
local New_CFrame = CFrame.new(311, 52, 103)
local ts = game:GetService("TweenService")
local char = game.Players.LocalPlayer.Character
local part = char.HumanoidRootPart
local ti = TweenInfo.new(1, Enum.EasingStyle.Linear)
local tp = {CFrame = New_CFrame}
ts:Create(part, ti, tp):Play()
end)
Teleport:Button("Disco Island", function()
local New_CFrame = CFrame.new(63, 48, 636)
local ts = game:GetService("TweenService")
local char = game.Players.LocalPlayer.Character
local part = char.HumanoidRootPart
local ti = TweenInfo.new(1, Enum.EasingStyle.Linear)
local tp = {CFrame = New_CFrame}
ts:Create(part, ti, tp):Play()
end)
Teleport:Button("Cloud One", function()
local New_CFrame = CFrame.new(296, 566, 689)
local ts = game:GetService("TweenService")
local char = game.Players.LocalPlayer.Character
local part = char.HumanoidRootPart
local ti = TweenInfo.new(1, Enum.EasingStyle.Linear)
local tp = {CFrame = New_CFrame}
ts:Create(part, ti, tp):Play()
end)
Teleport:Button("Cloud Second", function()
local New_CFrame = CFrame.new(-1224, 557, -318)
local ts = game:GetService("TweenService")
local char = game.Players.LocalPlayer.Character
local part = char.HumanoidRootPart
local ti = TweenInfo.new(1, Enum.EasingStyle.Linear)
local tp = {CFrame = New_CFrame}
ts:Create(part, ti, tp):Play()
end)
Teleport:Button("Sky Island", function()
local New_CFrame = CFrame.new(2132, 1456, -1034)
local ts = game:GetService("TweenService")
local char = game.Players.LocalPlayer.Character
local part = char.HumanoidRootPart
local ti = TweenInfo.new(1, Enum.EasingStyle.Linear)
local tp = {CFrame = New_CFrame}
ts:Create(part, ti, tp):Play()
end)
Teleport:Button("FavSpot", function()
local New_CFrame = CFrame.new(60, 12, -72)
local ts = game:GetService("TweenService")
local char = game.Players.LocalPlayer.Character
local part = char.HumanoidRootPart
local ti = TweenInfo.new(1, Enum.EasingStyle.Linear)
local tp = {CFrame = New_CFrame}
ts:Create(part, ti, tp):Play()
end)
Teleport:Button("SafePlace", function()
local New_CFrame = CFrame.new(167, 48.18, -5357)
local ts = game:GetService("TweenService")
local char = game.Players.LocalPlayer.Character
local part = char.HumanoidRootPart
local ti = TweenInfo.new(1, Enum.EasingStyle.Linear)
local tp = {CFrame = New_CFrame}
ts:Create(part, ti, tp):Play()
end)
Misc:Button("Prestige_Bp",
function()
loadstring(game:HttpGet("https://pastebin.com/raw/CCj0zCeD"))()
end)
Misc:Button("Infinity Yield", function()
loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
end)
Misc:Button("Anti Kick", function()
local mt = getrawmetatable(game)
local old = mt.__namecall
local protect = newcclosure or protect_function
setreadonly(mt, false)
mt.__namecall = protect(function(self, ...)
local method = getnamecallmethod()
if method == "Kick" then
wait(9e9)
return
end
return old(self, ...)
end)
hookfunction(game.Players.LocalPlayer.Kick,protect(function() wait(9e9) end))
end)
Misc:Button("Anti Afk", function()
loadstring(game:HttpGet("https://pastebin.com/raw/LxuBzfGp", true))()
end)
Misc:Button("Safeplace", function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/RikoTheDemonHunter/V3/refs/heads/main/SafePlace"))()
end)
Credits:Button("Made By Rikoplayz")
Credits:Button("Discord: rikothedemonlord")