-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnil
More file actions
8350 lines (7525 loc) · 306 KB
/
nil
File metadata and controls
8350 lines (7525 loc) · 306 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
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
task.wait(1)
game:GetService("Players").LocalPlayer.PlayerGui.Announcement.Frame.Visible = true
game:GetService("Players").LocalPlayer.PlayerGui.Announcement.Frame.TextLabel.BackgroundTransparency = 0.5
game:GetService("Players").LocalPlayer.PlayerGui.Announcement.Frame.TextLabel.TextScaled = true
game:GetService("Players").LocalPlayer.PlayerGui.Announcement.Frame.TextLabel.Active = true
game:GetService("Players").LocalPlayer.PlayerGui.Announcement.Frame.TextLabel.Text = "Saluna Notify: Loading Script, Please Wait..."
game:GetService("Players").LocalPlayer.PlayerGui.Announcement.Frame.TextLabel.TextColor3 = Color3.fromRGB(0, 255, 127)
game:GetService("Players").LocalPlayer.PlayerGui.Announcement.Frame.TextLabel.FontFace = Font.fromName("Merriweather")
game:GetService("Players").LocalPlayer.PlayerGui.Announcement.Frame.TextLabel.FontFace.Bold = true
game:GetService("Players").LocalPlayer.PlayerGui.Announcement.Frame.TextLabel.Visible = true
Fruittaoew = {}
Mobsszz = {}
Values = {}
Valuess = {}
Values2 = {}
Valuess2 = {}
Valuablez = {}
Valuablezz2 = {}
Rarefruit = {
"Candy Fruit",
"Chilly Fruit",
"Flare Fruit",
"Gas Fruit",
"Gravity Fruit",
"Hollow Fruit",
"Light Fruit",
"Magma Fruit",
"Ope Fruit",
"Plasma Fruit",
"Rumble Fruit",
"Sand Fruit",
"Smoke Fruit",
"Snow Fruit",
"Venom Fruit",
"Dark Fruit",
"Phoenix Fruit",
"Quake Fruit",
"Vampire Fruit"
}
MeleeTTT = {
"Melee",
"Table Kick",
"Black Leg",
"Seastone Cestus",
"Aqua Staff"
}
SniperTTT = {
"Slingshot",
"Stars",
"Crossbow",
"Flintlock",
"Cannon Ball"
}
SwordTTT = {
"Dagger",
"Wakizashi",
"Tachi",
"Katana",
"Flail",
"Krizma",
"Kogatana",
"Yoru",
"Golden Fish",
"Ultra Great Sword",
"Masamune",
"Candy Cane Yoru",
"Divine Axe",
"Kanshou and Byakuya",
"Scissor Blade",
"Lightning Sword",
"Meteorite Sword"
}
UtilityTTT = {
"Wood Rod",
"Sturdy Rod",
"Super Rod",
"Zombie Head",
"Tea Cup",
"Santa Bag",
"Tea Kettle"
}
everyClipboard = toclipboard
function toClipboard(txt)
if everyClipboard then
everyClipboard(tostring(txt))
end
end
function storedf()
if game.Workspace.UserData["User_"..tostring(game.Players.LocalPlayer.UserId)].Data.StoredDF1Unlocked.Value == true and workspace.UserData["User_"..tostring(game.Players.LocalPlayer.UserId)].Data.StoredDF1.Value == "None" and game:GetService("Players").LocalPlayer.PlayerGui.Storage.Frame.StoredDF1.Button.Text == "Store" then
local args = {
[1] = "StoredDF1"
}
game:GetService("Workspace").UserData["User_"..game.Players.LocalPlayer.UserId].StoredDFRequest:FireServer(unpack(args))
elseif game.Workspace.UserData["User_"..tostring(game.Players.LocalPlayer.UserId)].Data.StoredDF2Unlocked.Value == true and workspace.UserData["User_"..tostring(game.Players.LocalPlayer.UserId)].Data.StoredDF2.Value == "None" and game:GetService("Players").LocalPlayer.PlayerGui.Storage.Frame.StoredDF2.Button.Text == "Store" then
local args = {
[1] = "StoredDF2"
}
game:GetService("Workspace").UserData["User_"..game.Players.LocalPlayer.UserId].StoredDFRequest:FireServer(unpack(args))
elseif game.Workspace.UserData["User_"..tostring(game.Players.LocalPlayer.UserId)].Data.StoredDF3Unlocked.Value == true and workspace.UserData["User_"..tostring(game.Players.LocalPlayer.UserId)].Data.StoredDF3.Value == "None" and game:GetService("Players").LocalPlayer.PlayerGui.Storage.Frame.StoredDF3.Button.Text == "Store" then
local args = {
[1] = "StoredDF3"
}
game:GetService("Workspace").UserData["User_"..game.Players.LocalPlayer.UserId].StoredDFRequest:FireServer(unpack(args))
elseif game.Workspace.UserData["User_"..tostring(game.Players.LocalPlayer.UserId)].Data.StoredDF4Unlocked.Value == true and workspace.UserData["User_"..tostring(game.Players.LocalPlayer.UserId)].Data.StoredDF4.Value == "None" and game:GetService("Players").LocalPlayer.PlayerGui.Storage.Frame.StoredDF4.Button.Text == "Store" then
local args = {
[1] = "StoredDF4"
}
game:GetService("Workspace").UserData["User_"..game.Players.LocalPlayer.UserId].StoredDFRequest:FireServer(unpack(args))
elseif game.Workspace.UserData["User_"..tostring(game.Players.LocalPlayer.UserId)].Data.StoredDF5Unlocked.Value == true and workspace.UserData["User_"..tostring(game.Players.LocalPlayer.UserId)].Data.StoredDF5.Value == "None" and game:GetService("Players").LocalPlayer.PlayerGui.Storage.Frame.StoredDF5.Button.Text == "Store" then
local args = {
[1] = "StoredDF5"
}
game:GetService("Workspace").UserData["User_"..game.Players.LocalPlayer.UserId].StoredDFRequest:FireServer(unpack(args))
elseif game.Workspace.UserData["User_"..tostring(game.Players.LocalPlayer.UserId)].Data.StoredDF6Unlocked.Value == true and workspace.UserData["User_"..tostring(game.Players.LocalPlayer.UserId)].Data.StoredDF6.Value == "None" and game:GetService("Players").LocalPlayer.PlayerGui.Storage.Frame.StoredDF6.Button.Text == "Store" then
local args = {
[1] = "StoredDF6"
}
game:GetService("Workspace").UserData["User_"..game.Players.LocalPlayer.UserId].StoredDFRequest:FireServer(unpack(args))
elseif game.Workspace.UserData["User_"..tostring(game.Players.LocalPlayer.UserId)].Data.StoredDF7Unlocked.Value == true and workspace.UserData["User_"..tostring(game.Players.LocalPlayer.UserId)].Data.StoredDF7.Value == "None" and game:GetService("Players").LocalPlayer.PlayerGui.Storage.Frame.StoredDF7.Button.Text == "Store" then
local args = {
[1] = "StoredDF7"
}
game:GetService("Workspace").UserData["User_"..game.Players.LocalPlayer.UserId].StoredDFRequest:FireServer(unpack(args))
elseif game.Workspace.UserData["User_"..tostring(game.Players.LocalPlayer.UserId)].Data.StoredDF8Unlocked.Value == true and workspace.UserData["User_"..tostring(game.Players.LocalPlayer.UserId)].Data.StoredDF8.Value == "None" and game:GetService("Players").LocalPlayer.PlayerGui.Storage.Frame.StoredDF8.Button.Text == "Store" then
local args = {
[1] = "StoredDF8"
}
game:GetService("Workspace").UserData["User_"..game.Players.LocalPlayer.UserId].StoredDFRequest:FireServer(unpack(args))
elseif game.Workspace.UserData["User_"..tostring(game.Players.LocalPlayer.UserId)].Data.StoredDF9Unlocked.Value == true and workspace.UserData["User_"..tostring(game.Players.LocalPlayer.UserId)].Data.StoredDF9.Value == "None" and game:GetService("Players").LocalPlayer.PlayerGui.Storage.Frame.StoredDF9.Button.Text == "Store" then
local args = {
[1] = "StoredDF9"
}
game:GetService("Workspace").UserData["User_"..game.Players.LocalPlayer.UserId].StoredDFRequest:FireServer(unpack(args))
elseif game.Workspace.UserData["User_"..tostring(game.Players.LocalPlayer.UserId)].Data.StoredDF10Unlocked.Value == true and workspace.UserData["User_"..tostring(game.Players.LocalPlayer.UserId)].Data.StoredDF10.Value == "None" and game:GetService("Players").LocalPlayer.PlayerGui.Storage.Frame.StoredDF10.Button.Text == "Store" then
local args = {
[1] = "StoredDF10"
}
game:GetService("Workspace").UserData["User_"..game.Players.LocalPlayer.UserId].StoredDFRequest:FireServer(unpack(args))
elseif game.Workspace.UserData["User_"..tostring(game.Players.LocalPlayer.UserId)].Data.StoredDF11Unlocked.Value == true and workspace.UserData["User_"..tostring(game.Players.LocalPlayer.UserId)].Data.StoredDF11.Value == "None" and game:GetService("Players").LocalPlayer.PlayerGui.Storage.Frame.StoredDF11.Button.Text == "Store" then
local args = {
[1] = "StoredDF11"
}
game:GetService("Workspace").UserData["User_"..game.Players.LocalPlayer.UserId].StoredDFRequest:FireServer(unpack(args))
elseif game.Workspace.UserData["User_"..tostring(game.Players.LocalPlayer.UserId)].Data.StoredDF12Unlocked.Value == true and workspace.UserData["User_"..tostring(game.Players.LocalPlayer.UserId)].Data.StoredDF12.Value == "None" and game:GetService("Players").LocalPlayer.PlayerGui.Storage.Frame.StoredDF12.Button.Text == "Store" then
local args = {
[1] = "StoredDF12"
}
game:GetService("Workspace").UserData["User_"..game.Players.LocalPlayer.UserId].StoredDFRequest:FireServer(unpack(args))
end
end
function amongus()
for i,v in pairs(game:GetService("Workspace").Barrels:GetDescendants()) do
if v:IsA("ClickDetector") then
fireclickdetector(v)
end
end
for i,v in pairs(game:GetService("Workspace").Island8.Kitchen:GetDescendants()) do
if v:IsA("ClickDetector") then
fireclickdetector(v)
end
end
end
function onhaki()
local args = {
[1] = "On",
[2] = game:GetService("Workspace").UserData["User_"..game.Players.LocalPlayer.UserId].Data.HakiLevel.Value
}
workspace.UserData["User_"..game.Players.LocalPlayer.UserId].III:FireServer(unpack(args))
end
function offhaki()
local args = {
[1] = "Off",
[2] = game:GetService("Workspace").UserData["User_"..game.Players.LocalPlayer.UserId].Data.HakiLevel.Value
}
workspace.UserData["User_"..game.Players.LocalPlayer.UserId].III:FireServer(unpack(args))
end
task.wait(0)
if game.placeId == 3237168 or game.placeId == 8569358381 then
Pedo = {
1135910299, -- Havelic
520944, -- Oblivic
43247021, -- BowTiedPony
2350183594, -- icydragonwingsis
835620275, -- Silvers_Rayleig
137621, -- mariobros38
295337577, -- ModeratorDaMarcuses
1338963426, -- happypandamagic2
1276541545, -- VanitasThePlague
587649463, -- happypandamagic
245586741, -- Tiptop98
174941504, -- FoxKingFab
136099207,-- CudlessTheCat
94825741, -- NATSUDRAGN331
358051152, -- VortexFragmented
529455640, -- vlonedd
281482099, -- Quixotize
355207559, -- Elianmc1s
5084487, -- Americanflag
928623624, -- TrashPanda2361
30049170, -- Farquanetta
474452017 -- Bige0n
}
for _, v in pairs(game:GetService("Players"):GetPlayers()) do
for _, v1 in pairs(Pedo) do
if v.UserId == v1 then
game:GetService("Players").LocalPlayer:Kick("Admin or Staff is in the server")
task.wait()
local url = "https://discord.com/api/webhooks/1268351413751120002/YX_I7VpV7ECm8bAE8cjyhyBUix9GjZMO4QLmZhdjAEn2HPORUc4L5cEA99sHiNKpMS1r"
local data = {
["content"] = "@everyone",
["embeds"] = {
{
["title"] = " Saluna Notify",
["description"] = "\n Admin or Staff: " .. v.Name .. "\nIs Online" .. "\nGameID: " .. game.PlaceId .. "\nJobID: " .. game.JobId,
["type"] = "rich",
["color"] = tonumber(0xff8200),
}
}
}
local newdata = game:GetService("HttpService"):JSONEncode(data)
local headers = {
["content-type"] = "application/json"
}
request = http_request or request or HttpPost or syn.request
local abcdef = {Url = url, Body = newdata, Method = "POST", Headers = headers}
request(abcdef)
end
end
end
game:GetService("Players").PlayerAdded:Connect(function(r)
for _, v in pairs(Pedo) do
if r.UserId == v then
game:GetService("Players").LocalPlayer:Kick("Admin or Staff has joined the server")
task.wait()
local url = "https://discord.com/api/webhooks/1268351413751120002/YX_I7VpV7ECm8bAE8cjyhyBUix9GjZMO4QLmZhdjAEn2HPORUc4L5cEA99sHiNKpMS1r"
local data = {
["content"] = "@everyone",
["embeds"] = {
{
["title"] = " Saluna Notify",
["description"] = "\n Admin or Staff: " .. r.Name .. "\nIs Online" .. "\nGameID: " .. game.PlaceId .. "\nJobID: " .. game.JobId,
["type"] = "rich",
["color"] = tonumber(0xff8200),
}
}
}
local newdata = game:GetService("HttpService"):JSONEncode(data)
local headers = {
["content-type"] = "application/json"
}
request = http_request or request or HttpPost or syn.request
local abcdef = {Url = url, Body = newdata, Method = "POST", Headers = headers}
request(abcdef)
end
end
end)
_G.asdwqelist = false
listedaxw = loadstring(game:HttpGet('https://raw.githubusercontent.com/Iamcutehehe/hehehe/main/whitelist.lua'))()
for _, v1 in pairs(listedaxw) do
gethwid = game:GetService("RbxAnalyticsService"):GetClientId()
if gethwid == v1 then
_G.asdwqelist = true
end
end
userlistedzxwc = loadstring(game:HttpGet('https://raw.githubusercontent.com/Department123zxc/hello/main/world2.lua'))()
for _, v2 in pairs(userlistedzxwc) do
if game.Players.LocalPlayer.UserId == v2 then
_G.asdwqelist = true
end
end
anticamp = loadstring(game:HttpGet("https://raw.githubusercontent.com/Iamcutehehe/hehehe/main/golden.lua"))()
if _G.asdwqelist then
do
for i, v in pairs(game:GetService("Workspace").Island8:GetDescendants()) do
if v.Name == "condimemay" then
v.Name = "Seat"
end
end
end
game:GetService("Workspace").Island8.Table.Chair.Seat.Name = "condimemay"
_G.chaircframeh = game:GetService("Workspace").Island8.Table.Chair.condimemay.CFrame
game:GetService("Players").LocalPlayer.PlayerGui.Menu.Frame.C.Frame.Nametag.TextColor3 = Color3.fromRGB(0, 255, 127)
game:GetService("Players").LocalPlayer.PlayerGui.Menu.Frame.C.Frame.Nametag.Text = "Saluna"
game:GetService("Players").LocalPlayer.PlayerGui.Menu.Frame.C.Frame.Header.Text = "PROTECTED BY:"
local vu = game:GetService("VirtualUser")
game:GetService("Players").LocalPlayer.Idled:connect(function()
vu:Button2Down(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
wait(1)
vu:Button2Up(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
end)
do
fishingplace = game:GetService("Workspace"):FindFirstChild("fishingplace")
if fishingplace then
fishingplace:Destroy()
end
end
fishingplace = Instance.new("Part",game.Workspace)
fishingplace.Name = "fishingplace"
fishingplace.Size = Vector3.new(2,1,2)
fishingplace.Position = Vector3.new((math.random(15000, 20000)),208,(math.random(15000, 20000)))
fishingplace.Anchored = true
do
safezonedestroyspace = game:GetService("Workspace"):FindFirstChild("SafeZoneOuterSpacePart")
if safezonedestroyspace then
safezonedestroyspace:Destroy()
end
end
if game.CoreGui:FindFirstChild("BBB") then
game.CoreGui:FindFirstChild("BBB"):Destroy()
end
SafeZoneOuterSpace = Instance.new("Part",game.Workspace)
SafeZoneOuterSpace.Name = "SafeZoneOuterSpacePart"
SafeZoneOuterSpace.Size = Vector3.new(200,3,200)
SafeZoneOuterSpace.Position = Vector3.new((math.random(-100000, -50000)), 10000, (math.random(-100000, -50000)))
SafeZoneOuterSpace.Anchored = true
local mta = getrawmetatable(game)
local namecall = mta.__namecall
aaxc = hookmetamethod(game, "__namecall", function(self, ...)
local args = {...}
local method = getnamecallmethod()
if method == "FireServer" or method == "InvokeServer" then
if self.Name == "RemoteEvent" and args[3] == "StopCharging" and _G.auto100rate then
args[6] = 300
return aaxc(self, unpack(args))
end
end
return aaxc(self, ...)
end)
Fluent = loadstring(game:HttpGet("https://github.com/dawid-scripts/Fluent/releases/latest/download/main.lua"))()
SaveManager = loadstring(game:HttpGet("https://raw.githubusercontent.com/Iamcutehehe/UI_Interface/main/Configuration.lua"))()
InterfaceManager = loadstring(game:HttpGet("https://raw.githubusercontent.com/Iamcutehehe/UI_Interface/main/Fluent.lua"))()
Window = Fluent:CreateWindow({
Title = "SALUNA VIP ♥",
SubTitle = " Made by Saluna",
TabWidth = 100,
Size = UDim2.fromOffset(475, 340),
Acrylic = true, -- The blur may be detectable, setting this to false disables blur entirely
Theme = "Darker",
MinimizeKey = Enum.KeyCode.F2 -- Used when theres no MinimizeKeybind
})
Tabs = {
Info = Window:AddTab({ Title = "About", Icon = "rbxassetid://4871684504" }),
Farm = Window:AddTab({ Title = "Farming", Icon = "rbxassetid://16397066979" }),
Fruit = Window:AddTab({ Title = "Fruit & Sam", Icon = "rbxassetid://13492316250" }),
Robbing = Window:AddTab({ Title = "Robbing", Icon = "rbxassetid://6947202399" }),
Player = Window:AddTab({ Title = "Player", Icon = "rbxassetid://16149111731" }),
Teleport = Window:AddTab({ Title = "Teleport", Icon = "rbxassetid://6723742952" }),
Main = Window:AddTab({ Title = "Stats", Icon = "rbxassetid://8587689304" }),
Haki = Window:AddTab({ Title = "Haki", Icon = "rbxassetid://6523858394" }),
Weapon = Window:AddTab({ Title = "Weapon", Icon = "rbxassetid://7485051715" }),
Affinity = Window:AddTab({ Title = "Affinity", Icon = "rbxassetid://13321880274" }),
Expertise = Window:AddTab({ Title = "Expertise", Icon = "rbxassetid://16181361436" }),
PVP = Window:AddTab({ Title = "PVP", Icon = "rbxassetid://2294529381" }),
Skill = Window:AddTab({ Title = "Skill", Icon = "rbxassetid://18518485889" }),
Mobs = Window:AddTab({ Title = "Mobs", Icon = "rbxassetid://13957749947" }),
Boss = Window:AddTab({ Title = "Boss", Icon = "rbxassetid://12487510294" }),
Gems = Window:AddTab({ Title = "Gems (Risky)", Icon = "rbxassetid://6788518051" }),
Automatic = Window:AddTab({ Title = "Automatic", Icon = "rbxassetid://11860859170" }),
Misc = Window:AddTab({ Title = "Misc", Icon = "rbxassetid://16181364687" }),
Shop = Window:AddTab({ Title = "Shop", Icon = "rbxassetid://11385419674" }),
Server = Window:AddTab({ Title = "Server", Icon = "rbxassetid://7539983773" }),
Webhook = Window:AddTab({ Title = "Webhook", Icon = "rbxassetid://14769727847" }),
Settings = Window:AddTab({ Title = "Settings", Icon = "settings" }),
nonet = Window:AddTab({ Title = " ", Icon = "" })
}
Options = Fluent.Options
game.CoreGui:FindFirstChild("ScreenGui").Name = "SalunaFluent"
Tabs.Boss:AddSection(" -----Kaizu Boss-----")
Tabs.Boss:AddSection(" --Teleport--")
Tabs.Boss:AddButton({
Title = "Teleport To Kaizu Island",
Description = "TP To Island",
Callback = function()
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1575.16821, 215.999954, 9946.87207, 0.980506063, -4.32691003e-08, 0.196488753, 3.53463392e-08, 1, 4.38284715e-08, -0.196488753, -3.60289221e-08, 0.980506063)
end
})
Tabs.Boss:AddButton({
Title = "Teleport To Kaizu",
Description = "TP To Kaizu Boss",
Callback = function()
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.IslandKai:WaitForChild("Kaizu"):FindFirstChild("HumanoidRootPart").CFrame
end
})
Tabs.Boss:AddSection(" --View--")
Tabs.Boss:AddButton({
Title = "View Kaizu",
Description = "View Kaizu Boss",
Callback = function()
game.Workspace.Camera.CameraSubject = game.Workspace.IslandKai:WaitForChild("Kaizu"):FindFirstChild("Humanoid")
end
})
Tabs.Boss:AddButton({
Title = "Fix Cam",
Description = "Reset Camera",
Callback = function()
workspace.CurrentCamera:remove()
wait(.1)
repeat wait() until game.Players.LocalPlayer.Character ~= nil
workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character:FindFirstChildWhichIsA('Humanoid')
workspace.CurrentCamera.CameraType = "Custom"
game.Players.LocalPlayer.CameraMinZoomDistance = 0.5
game.Players.LocalPlayer.CameraMaxZoomDistance = 400
game.Players.LocalPlayer.CameraMode = "Classic"
game.Players.LocalPlayer.Character.Head.Anchored = false
end
})
Tabs.Boss:AddSection(" --Bring--")
qweqwezxg = Tabs.Boss:AddSlider("qweqwezxgg", {
Title = "Bring Distance",
Description = "Adjust bring distance",
Default = 10,
Min = -20,
Max = 20,
Rounding = 0,
Callback = function(wedsfctt)
kaizubringdis = tonumber(wedsfctt)*(-1)
end
})
wekpoxzmkl = Tabs.Boss:AddToggle("wekpoxzmkltoggle", {Title = "Auto Bring Kaizu", Default = false })
wekpoxzmkl:OnChanged(function()
if Options.wekpoxzmkltoggle.Value == true then
_G.bringkaizuz = true
while _G.bringkaizuz do wait()
pcall(function()
game.Workspace.IslandKai:WaitForChild("Kaizu").HumanoidRootPart.CanCollide = false
game.Workspace.IslandKai:WaitForChild("Kaizu").HumanoidRootPart.Size = Vector3.new(5, 5, 5)
game.Workspace.IslandKai:WaitForChild("Kaizu"):FindFirstChild("HumanoidRootPart").Anchored = true
game.Workspace.IslandKai:WaitForChild("Kaizu"):FindFirstChild("HumanoidRootPart").CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(0,0,mobbringdis)
game.Workspace.IslandKai:WaitForChild("Kaizu").HumanoidRootPart.Color = Color3.fromRGB(0, 255, 127)
game.Workspace.IslandKai:WaitForChild("Kaizu").HumanoidRootPart.Transparency = 0.9
end)
end
game.Workspace.IslandKai:WaitForChild("Kaizu"):FindFirstChild("HumanoidRootPart").Anchored = false
game.Workspace.IslandKai:WaitForChild("Kaizu").HumanoidRootPart.Transparency = 1
game.Workspace.IslandKai:WaitForChild("Kaizu").HumanoidRootPart.CanCollide = true
else
_G.bringkaizuz = false
end
end)
Tabs.Boss:AddSection(" --Kill--")
Tabs.Boss:AddButton({
Title = "1-Shot Kaizu",
Description = "Kill Kaizu With A Click",
Callback = function()
game.Workspace.IslandKai:WaitForChild("Kaizu"):FindFirstChild("HumanoidRootPart").Anchored = false
game.Workspace.IslandKai:WaitForChild("Kaizu").HumanoidRootPart.CanCollide = true
game.Workspace.IslandKai:WaitForChild("Kaizu"):FindFirstChild("Humanoid").Health = 0
end
})
Tabs.Webhook:AddSection(" -----Webhook-----")
Tabs.Webhook:AddParagraph({
Title = "Fruit + Login Webhook",
Content = [[Webhook Will Be Sent To Saluna's Discord Server.
Come join us.
https://discord.gg/ecpbhm8G3w
]]
})
Tabs.Robbing:AddSection(" --Fruit Robbing--")
Tabs.Robbing:AddParagraph({
Title = "NOTE",
Content = "Only Quake-Robbing can use with Random Teleport"
})
fruitzmpa = Tabs.Robbing:AddDropdown("fruitzmpa", {
Title = "Fruit Targeting (Normal)",
Description = "Choose fruits for \"Normal Fruits\" Robbing.",
Values = {" ","Dark Fruit", "Phoenix Fruit", "Quake Fruit", "Vampire Fruit", "Magma Fruit", "Light Fruit", "Rumble Fruit", "Flare Fruit", "Chilly Fruit", "Gas Fruit", "Candy Fruit", "Snow Fruit", "Smoke Fruit", "Sand Fruit", "Venom Fruit", "Plasma Fruit", "Ope Fruit", "Hollow Fruit","Gravity Fruit"},
Multi = true,
Default = {},
})
fruitzmpa:OnChanged(function(fruitvamzue)
table.clear(Fruittaoew)
task.wait()
for fruitvamzue, State in next, fruitvamzue do
table.insert(Fruittaoew, fruitvamzue)
end
print(table.concat(Fruittaoew, ","))
end)
robdrop = Tabs.Robbing:AddDropdown("robdrop", {
Title = "Robbing Method",
Values = {"Quake","Magma","Flare"},
Multi = false,
Default = "Quake",
})
robdrop:OnChanged(function(dropzxmcc)
_G.robmethod = dropzxmcc
end)
robfr = Tabs.Robbing:AddToggle("robfrtoggle", {Title = "Auto Rob Rare/Ultra Fruits", Default = false })
robfr:OnChanged(function()
if Options.robfrtoggle.Value == true then
_G.startrop = true
else
_G.startrop = false
end
end)
robfraura = Tabs.Robbing:AddToggle("robfrauratoggle", {Title = "Auto Rob Aura Fruits", Default = false })
robfraura:OnChanged(function()
if Options.robfrauratoggle.Value == true then
_G.startropaura = true
else
_G.startropaura = false
end
end)
bringfruit = Tabs.Robbing:AddToggle("bringfruittoggle", {Title = "Auto Bring Fruit", Default = false })
bringfruit:OnChanged(function()
if Options.bringfruittoggle.Value == true then
getgenv().pickkk = true
else
getgenv().pickkk = false
end
while getgenv().pickkk do wait(0.1)
pcall(function()
repeat task.wait()
for i,v in pairs(game:GetService("Workspace").Trees.Tree:GetDescendants()) do
if v:IsA("ClickDetector") then
fireclickdetector(v)
end
end
until not getgenv().pickkk
end)
end
end)
Tabs.Info:AddSection(" --Developer/Owner--")
Tabs.Info:AddParagraph({
Title = "Saluna Hub",
Content = "This script is belong to Saluna aka Irenkiss Trần. \nFacebook: IrenkissWantPeace \nDiscord: AZ-BrAg#6921 \nI hope you'll have a nice experience using this script!"
})
Tabs.Info:AddSection(" --Information--")
Tabs.Info:AddParagraph({
Title = "User Information",
Content = "Current HWID: "..game:GetService("RbxAnalyticsService"):GetClientId() .."\nUser Name: "..game.Players.LocalPlayer.Character.Name .."\nUser ID: "..tostring(game.Players.LocalPlayer.UserId)
})
Asset = game:GetService("MarketplaceService"):GetProductInfo(game.PlaceId)
Tabs.Info:AddParagraph({
Title = "Server Information",
Content = "Place Name: " ..Asset.Name .."\nPlace ID: " ..game.PlaceId .. "\nServer JobID: ".. game.JobId .."\nMax Players: "..game.Players.MaxPlayers
})
Tabs.Info:AddSection(" --Discord--")
Tabs.Info:AddParagraph({
Title = "Discord Information",
Content = "Discord Invite Link: https://discord.gg/ecpbhm8G3w"
})
Tabs.Info:AddButton({
Title = "Discord Saluna Hub",
Description = "Copy Discord Invite Link",
Callback = function()
toClipboard("https://discord.gg/ecpbhm8G3w")
end
})
Tabs.Gems:AddSection(" --Dupe Gems--")
Tabs.Gems:AddParagraph({
Title = "Warning When Dupe Gems: ",
Content = [[Operation:
When you got a bound slot in first page (1st to 12nd),
You will get refund 3k gems per 1 bound slot.
When you reset stats, The refund function will reset too.
Thus, when you reset stats and rejoin, you will get refund again.]]
})
Tabs.Gems:AddButton({
Title = "Dupe Gems Script",
Description = "Copy Script To ClipBoard",
Callback = function()
toClipboard("loadstring(game:HttpGet('https://raw.githubusercontent.com/Iamcutehehe/hehehe/main/ultimate'))()")
end
})
Tabs.Gems:AddSection(" --Exchange Gems To Beries--")
Tabs.Gems:AddParagraph({
Title = "Warning When Exchange: ",
Content = "Operation: Fast Reroll And Claim Challenge12 \n(500 Gems = 100.000 Beries) \nBe careful with your affinities!"
})
wqettt = Tabs.Gems:AddDropdown("bentauga11", {
Title = "Select Fruit To Exchange",
Values = {"DFT1", "DFT2"},
Multi = false,
Default = "",
})
wqettt:OnChanged(function(koedpwqbb)
_G.fruitexchange = koedpwqbb
end)
exchangett = Tabs.Gems:AddToggle("exchangetttoggle", {Title = "Auto Exchange", Default = false })
exchangett:OnChanged(function()
if Options.exchangetttoggle.Value == true then
_G.exchangegem = true
while _G.exchangegem do task.wait()
pcall(function()
if game.Players[""..tostring(game.Players.LocalPlayer)].PlayerGui.Challenges.Frame.Frame.ChallengesFrame.ScrollingFrame["Challenge_12"].Claim.AutoButtonColor == true then
workspace.UserData["User_".. tostring(game.Players.LocalPlayer.UserId)].ChallengesRemote:FireServer("Claim","Challenge12")
end
repeat wait()
until game.Players[""..tostring(game.Players.LocalPlayer)].PlayerGui.Challenges.Frame.Frame.ChallengesFrame.ScrollingFrame["Challenge_12"].Claim.AutoButtonColor == false
for i = 1,50 do
local args = {
[1] = _G.fruitexchange,
[2] = false,
[3] = false,
[4] = false,
[5] = false,
[6] = "Gems"
}
workspace:WaitForChild("Merchants"):WaitForChild("AffinityMerchant"):WaitForChild("Clickable"):WaitForChild("Retum"):FireServer(unpack(args))
end
repeat wait()
until game.Players[""..tostring(game.Players.LocalPlayer)].PlayerGui.Challenges.Frame.Frame.ChallengesFrame.ScrollingFrame["Challenge_12"].Claim.AutoButtonColor == true
end)
end
else
_G.exchangegem = false
end
end)
BBB = Instance.new("ScreenGui")
BBB.Name = "BBB"
BBB.Parent = game.CoreGui
hideUI = Instance.new("ImageButton")
hideUI.Name = "hideUI"
hideUI.Parent = game.CoreGui.BBB
hideUI.BackgroundColor3 = Color3.fromRGB(0, 255, 127)
hideUI.BackgroundTransparency = 1
hideUI.ClipsDescendants = true
hideUI.Position = UDim2.new(0.02, 1, 0.155, 1)
hideUI.Size = UDim2.new(0, 50, 0, 50)
hideUI.Image = ""
hideUI.MouseButton1Up:Connect(function()
game:GetService("VirtualInputManager"):SendKeyEvent(true,"F2",false,game.Players.LocalPlayer.Character.HumanoidRootPart)
wait(0.1)
game:GetService("VirtualInputManager"):SendKeyEvent(false,"F2",false,game.Players.LocalPlayer.Character.HumanoidRootPart)
end)
hideUICorner = Instance.new("UICorner")
hideUICorner.Parent = game.CoreGui.BBB.hideUI
hideUICorner.CornerRadius = UDim.new(1,0)
UIS = game:GetService('UserInputService')
frame = game.CoreGui.BBB.hideUI
dragToggle = nil
dragSpeed = 0.05
dragStart = nil
startPos = nil
function updateInput(input)
delta = input.Position - dragStart
position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X,
startPos.Y.Scale, startPos.Y.Offset + delta.Y)
game:GetService('TweenService'):Create(frame, TweenInfo.new(dragSpeed), {Position = position}):Play()
end
frame.InputBegan:Connect(function(input)
if (input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch) then
dragToggle = true
dragStart = input.Position
startPos = frame.Position
input.Changed:Connect(function()
if input.UserInputState == Enum.UserInputState.End then
dragToggle = false
end
end)
end
end)
UIS.InputChanged:Connect(function(input)
if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then
if dragToggle then
updateInput(input)
end
end
end)
Tabs.Misc:AddSection(" -----Hide/Show Image-----")
asdzxima = Tabs.Misc:AddDropdown("asdzxima", {
Title = "Choose Display Image",
Values = {" ","Random","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"},
Multi = false,
Default = "Random",
})
_G.imageUrls = {
"http://www.roblox.com/asset/?id=9434974330", --1
"http://www.roblox.com/asset/?id=18809926638", --2
"http://www.roblox.com/asset/?id=14208692008", --3
"http://www.roblox.com/asset/?id=16607424856", --4
"http://www.roblox.com/asset/?id=13703042399", --5
"http://www.roblox.com/asset/?id=15992747200", --6
"http://www.roblox.com/asset/?id=16039945586", --7
"http://www.roblox.com/asset/?id=9124649710", --8
"http://www.roblox.com/asset/?id=5594451067", --9
"http://www.roblox.com/asset/?id=17836568522", --10
"http://www.roblox.com/asset/?id=7028310152", --11
"http://www.roblox.com/asset/?id=7505699541", --12
"http://www.roblox.com/asset/?id=18470271790", --13
"http://www.roblox.com/asset/?id=6404803553", --14
"http://www.roblox.com/asset/?id=6717696974", --15
"http://www.roblox.com/asset/?id=18470282120", --16
"http://www.roblox.com/asset/?id=18463157903", --17
"http://www.roblox.com/asset/?id=8032194497", --18
"http://www.roblox.com/asset/?id=15332983254", --19
"http://www.roblox.com/asset/?id=11041446512", --20
"http://www.roblox.com/asset/?id=600803939", --21
"http://www.roblox.com/asset/?id=903318290", --22
"http://www.roblox.com/asset/?id=10842366977", --23
"http://www.roblox.com/asset/?id=13448937007", --24
"http://www.roblox.com/asset/?id=12810822812", --25
"http://www.roblox.com/asset/?id=16105197154", --26
"http://www.roblox.com/asset/?id=16053681504", --27
"http://www.roblox.com/asset/?id=15890986090", --28
"http://www.roblox.com/asset/?id=16173517892", --29
"http://www.roblox.com/asset/?id=7617067045", --30
"http://www.roblox.com/asset/?id=6859342076", --31
"http://www.roblox.com/asset/?id=14613789931", --32
"http://www.roblox.com/asset/?id=15399456436", --33
"http://www.roblox.com/asset/?id=12744741181", --34
"http://www.roblox.com/asset/?id=15392784585", --35
"http://www.roblox.com/asset/?id=13836053875", --36
"http://www.roblox.com/asset/?id=7853514116", --37
"http://www.roblox.com/asset/?id=6942501524", --38
"http://www.roblox.com/asset/?id=6522457335", --39
"http://www.roblox.com/asset/?id=15288241266", --40
"http://www.roblox.com/asset/?id=18602648450", --41
"http://www.roblox.com/asset/?id=13999153827", --42
"http://www.roblox.com/asset/?id=12550364500", --43
"http://www.roblox.com/asset/?id=15755889896" --44
}
asdzxima:OnChanged(function(heheimage)
if heheimage == "Random" then
local randomIndex = math.random(1, #_G.imageUrls)
game.CoreGui.BBB.hideUI.Image = _G.imageUrls[randomIndex]
else
game.CoreGui.BBB.hideUI.Image = _G.imageUrls[tonumber(heheimage)]
end
end)
Tabs.Misc:AddSection(" --FE Scripts--")
Tabs.Misc:AddButton({
Title = "Infinite Yield",
Description = "Open Infinite Yield Script",
Callback = function()
loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
end
})
Tabs.Misc:AddButton({
Title = "Remote Spy",
Description = "Open Remote Spy Script",
Callback = function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/infyiff/backup/main/SimpleSpyV3/main.lua"))()
end
})
Tabs.Misc:AddSection(" --Old Scripts--")
Tabs.Misc:AddButton({
Title = "Saluna Old",
Description = "Open Saluna Old Script",
Callback = function()
loadstring(game:HttpGet("https://bitbucket.org/hehehezz/hellowz/raw/6f5eb318bb1640c549df25cafbedc4fb868ea87a/zxww"))()
end
})
Tabs.Misc:AddButton({
Title = "Nothing Hub",
Description = "Open Nothing Hub Script",
Callback = function()
loadstring(game:HttpGet("https://bitbucket.org/hehehezz/hellowz/raw/af0a0174fdaeb8c720eac056eff0d9e74d5087e6/chhickendiu"))()
end
})
Tabs.Misc:AddSection(" -----Boost-----")
Tabs.Misc:AddButton({
Title = "Low-Graphic Mode",
Description = "Use to reduce lag",
Callback = function()
Window:Dialog({
Title = "Low-Graphic Mode",
Content = "Do you want to use?",
Buttons = {
{
Title = "OK",
Callback = function()
workspace:FindFirstChildOfClass('Terrain').WaterWaveSize = 0
workspace:FindFirstChildOfClass('Terrain').WaterWaveSpeed = 0
workspace:FindFirstChildOfClass('Terrain').WaterReflectance = 0
workspace:FindFirstChildOfClass('Terrain').WaterTransparency = 0
game:GetService("Lighting").GlobalShadows = false
game:GetService("Lighting").FogEnd = 9e9
settings().Rendering.QualityLevel = 1
for i,v in pairs(game:GetDescendants()) do
if v:IsA("Part") or v:IsA("UnionOperation") or v:IsA("MeshPart") or v:IsA("CornerWedgePart") or v:IsA("TrussPart") then
v.Material = "Plastic"
v.Reflectance = 0
elseif v:IsA("Decal") then
v.Transparency = 1
elseif v:IsA("ParticleEmitter") or v:IsA("Trail") then
v.Lifetime = NumberRange.new(0)
elseif v:IsA("Explosion") then
v.BlastPressure = 1
v.BlastRadius = 1
end
end
for i,v in pairs(game:GetService("Lighting"):GetDescendants()) do
if v:IsA("BlurEffect") or v:IsA("SunRaysEffect") or v:IsA("ColorCorrectionEffect") or v:IsA("BloomEffect") or v:IsA("DepthOfFieldEffect") then
v.Enabled = false
end
end
workspace.DescendantAdded:Connect(function(child)
coroutine.wrap(function()
if child:IsA('ForceField') then
game:GetService('RunService').Heartbeat:Wait()
child:Destroy()
elseif child:IsA('Sparkles') then
game:GetService('RunService').Heartbeat:Wait()
child:Destroy()
elseif child:IsA('Smoke') or child:IsA('Fire') then
game:GetService('RunService').Heartbeat:Wait()
child:Destroy()
end
end)()
end) end
},
{
Title = "Cancel",
Callback = function()
end
}
}
})
end
})
offrender = Tabs.Misc:AddToggle("offrendertoggle", {Title = "Off 3D-Render", Default = false })
offrender:OnChanged(function()
if Options.offrendertoggle.Value == true then
game:GetService("RunService"):Set3dRenderingEnabled(false)
else
game:GetService("RunService"):Set3dRenderingEnabled(true)
end
end)
Tabs.Misc:AddSection(" --Makes Server Lag--")
miscquake = Tabs.Misc:AddToggle("miscquaketoggle", {Title = "Quake Makes Lag", Default = false })
miscquake:OnChanged(function()
if Options.miscquaketoggle.Value == true then
_G.quakelagmisc = true
while _G.quakelagmisc do wait(0.1)
pcall(function()
repeat
local args = {
[1] = getsenv(game:GetService("Players").LocalPlayer.Character.Powers.Quake).VTCebvc,
[2] = "QuakePower1",
[3] = "StopCharging",
[4] = workspace:WaitForChild("IslandTown"):WaitForChild("Runic"):WaitForChild("Union"),
[5] = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame,
[6] = 100,
[7] = Vector3.new(150.66384887695312, 230.749755859375, 4937.19677734375)
}
game:GetService("Players").LocalPlayer.Character.Powers.Quake.RemoteEvent:FireServer(unpack(args))
task.wait(0.06)
until _G.quakelagmisc == false
end)
end
else
_G.quakelagmisc = false
end
end)
Tabs.Player:AddSection(" --About Player--")
plrts = Tabs.Player:AddInput("plrts", {
Title = "Choose Player:",
Default = "",
Placeholder = "Insert Here",
Numeric = false, -- Only allows numbers
Finished = true, -- Only calls callback when you press enter
Callback = function()
end
})
plrts:OnChanged(function()
task.wait()
_G.SelectedKillPlayer = ""
_G.plrlow = string.lower(tostring(plrts.Value))
_G.plrnum = string.len(_G.plrlow)
task.wait()
if plrts.Value == "" or plrts.Value == nil then
_G.SelectedKillPlayer = ""
else
for i,e in pairs(game.Players:GetChildren()) do
_G.anh = tostring(e.Name)
_G.plrchoose = string.lower(string.sub(_G.anh,1,_G.plrnum))
if _G.plrlow == _G.plrchoose then
_G.SelectedKillPlayer = _G.anh
end
end
end
end)
targetallpcho = Tabs.Player:AddToggle("targetallpchotoggle", {Title = "Target All Spawned Player", Default = false })
targetallpcho:OnChanged(function()
if Options.targetallpchotoggle.Value == true then
getgenv().targeting = true
else
getgenv().targeting = false
end
while getgenv().targeting do wait(0.1)
pcall(function()
for i,v in pairs(game.Players:GetChildren()) do
if v.Name ~= game.Players.LocalPlayer.Name then
for i,c in pairs(game.Workspace:GetChildren()) do
if getgenv().targeting == true and c:IsA("Model") and c.Name == v.Name and c.HumanoidRootPart.Position.Y < 211000 and c.Name ~= "azpro2k7" then
repeat wait()
_G.SelectedKillPlayer = c.Name
until not getgenv().targeting or not game.Players:FindFirstChild(_G.SelectedKillPlayer) or game.Players:FindFirstChild(_G.SelectedKillPlayer).Character.Humanoid.Health == 0
end
end
end
end
_G.SelectedKillPlayer = ""
end)
end
end)
Tabs.Player:AddSection(" --Players' Stuff--")
viewplr = Tabs.Player:AddToggle("viewplrtoggle", {Title = "View Chosen Player", Default = false })