forked from CreatedHeroISMyFavoriteHero/VapeV4ForRoblox
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNewMainScript.lua
More file actions
1958 lines (1926 loc) · 78.4 KB
/
NewMainScript.lua
File metadata and controls
1958 lines (1926 loc) · 78.4 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
repeat task.wait() until game:IsLoaded()
local injected = true
local oldrainbow = false
local customdir = (shared.VapePrivate and "vapeprivate/" or "vape/")
local betterisfile = function(file)
local suc, res = pcall(function() return readfile(file) end)
return suc and res ~= nil
end
local shown = false
local function displayPopup(text, func)
local setthreadidentityfunc = syn and syn.set_thread_identity or set_thread_identity or setidentity or setthreadidentity
local getthreadidentityfunc = syn and syn.get_thread_identity or get_thread_identity or getidentity or getthreadidentity
local oldidentity
if setthreadidentityfunc then
oldidentity = getthreadidentityfunc()
setthreadidentityfunc(8)
end
local ErrorPrompt = getrenv().require(game:GetService("CoreGui").RobloxGui.Modules.ErrorPrompt)
local prompt = ErrorPrompt.new("Default")
prompt._hideErrorCode = true
local gui = Instance.new("ScreenGui", game:GetService("CoreGui"))
prompt:setParent(gui)
prompt:setErrorTitle("Vape")
prompt:updateButtons({{
Text = "OK",
Callback = function()
prompt:_close()
if func then func() end
end,
Primary = true
}}, 'Default')
prompt:_open(text)
if oldidentity then
setthreadidentityfunc(oldidentity)
end
end
local function GetURL(scripturl)
if shared.VapeDeveloper then
if not betterisfile("vape/"..scripturl) then
displayPopup("File not found : vape/"..scripturl.." : "..res)
error("File not found : vape/"..scripturl)
end
return readfile("vape/"..scripturl)
else
local suc, res
task.delay(15, function()
if res == nil and (not shown) then
shown = true
displayPopup("The connection to github is taking a while, Please be patient.")
end
end)
suc, res = pcall(function() return game:HttpGet("https://raw.githubusercontent.com/7GrandDadPGN/VapeV4ForRoblox/main/"..scripturl, true) end)
if not suc then
displayPopup("Failed to connect to github : vape/"..scripturl.." : "..res)
error(res)
end
return res
end
end
local getasset = getsynasset or getcustomasset or function(location) return "rbxasset://"..location end
local queueteleport = syn and syn.queue_on_teleport or queue_on_teleport or function() end
local requestfunc = syn and syn.request or http and http.request or http_request or fluxus and fluxus.request or request or function(tab)
if tab.Method == "GET" then
return {
Body = game:HttpGet(tab.Url, true),
Headers = {},
StatusCode = 200
}
else
return {
Body = "bad exploit",
Headers = {},
StatusCode = 404
}
end
end
local function checkassetversion()
local suc, res = pcall(function() return GetURL("assetsversion.dat", true) end)
if suc then return res else return nil end
end
if not (getasset and requestfunc and queueteleport) then
print("Vape is not supported with your exploit.")
return
end
if shared.VapeExecuted then
error("Vape Already Injected")
return
else
shared.VapeExecuted = true
end
local redownload = false
if isfolder(customdir:gsub("/", "")) == false then
makefolder(customdir:gsub("/", ""))
end
if isfolder("vape") == false then
makefolder("vape")
end
if not betterisfile("vape/assetsversion.dat") then
writefile("vape/assetsversion.dat", "1")
end
if isfolder(customdir.."CustomModules") == false then
makefolder(customdir.."CustomModules")
end
if isfolder(customdir.."Profiles") == false then
makefolder(customdir.."Profiles")
end
if not betterisfile("vape/language.dat") then
writefile("vape/language.dat", "en-us")
end
if isfolder("vape/assets") == false then
makefolder("vape/assets")
end
task.spawn(function()
local assetver = checkassetversion()
if assetver and assetver > readfile("vape/assetsversion.dat") then
redownload = true
if isfolder("vape/assets") and shared.VapeDeveloper == nil then
if delfolder then
delfolder("vape/assets")
makefolder("vape/assets")
end
end
writefile("vape/assetsversion.dat", assetver)
end
end)
local GuiLibrary = loadstring(GetURL("NewGuiLibrary.lua"))()
local translations = shared.VapeTranslation or {}
local translatedlogo = false
local checkpublicreponum = 0
local checkpublicrepo
checkpublicrepo = function(id)
local suc, req = pcall(function() return requestfunc({
Url = "https://raw.githubusercontent.com/7GrandDadPGN/VapeV4ForRoblox/main/CustomModules/"..id..".lua",
Method = "GET"
}) end)
if not suc then
checkpublicreponum = checkpublicreponum + 1
spawn(function()
local textlabel = Instance.new("TextLabel")
textlabel.Size = UDim2.new(1, 0, 0, 36)
textlabel.Text = "Loading CustomModule Failed!, Attempts : "..checkpublicreponum
textlabel.BackgroundTransparency = 1
textlabel.TextStrokeTransparency = 0
textlabel.TextSize = 30
textlabel.Font = Enum.Font.SourceSans
textlabel.TextColor3 = Color3.new(1, 1, 1)
textlabel.Position = UDim2.new(0, 0, 0, -36)
textlabel.Parent = GuiLibrary["MainGui"]
task.wait(2)
textlabel:Remove()
end)
task.wait(2)
return checkpublicrepo(id)
end
if req.StatusCode == 200 then
return req.Body
end
return nil
end
local function getcustomassetfunc(path)
if not betterisfile(path) then
task.spawn(function()
local textlabel = Instance.new("TextLabel")
textlabel.Size = UDim2.new(1, 0, 0, 36)
textlabel.Text = "Downloading "..path
textlabel.BackgroundTransparency = 1
textlabel.TextStrokeTransparency = 0
textlabel.TextSize = 30
textlabel.Font = Enum.Font.SourceSans
textlabel.TextColor3 = Color3.new(1, 1, 1)
textlabel.Position = UDim2.new(0, 0, 0, -36)
textlabel.Parent = GuiLibrary["MainGui"]
repeat task.wait() until betterisfile(path)
textlabel:Remove()
end)
local req = requestfunc({
Url = "https://raw.githubusercontent.com/7GrandDadPGN/VapeV4ForRoblox/main/"..path:gsub("vape/assets", "assets"),
Method = "GET"
})
writefile(path, req.Body)
end
return getasset(path)
end
shared.GuiLibrary = GuiLibrary
local workspace = game:GetService("Workspace")
local cam = workspace.CurrentCamera
local selfdestructsave = coroutine.create(function()
while task.wait(10) do
if GuiLibrary and injected then
if not injected then return end
GuiLibrary["SaveSettings"]()
else
break
end
end
end)
task.spawn(function()
local image = Instance.new("ImageLabel")
image.Image = getcustomassetfunc("vape/assets/CombatIcon.png")
image.Position = UDim2.new(0, 0, 0, 0)
image.BackgroundTransparency = 1
image.Size = UDim2.new(0, 100, 0, 100)
image.ImageTransparency = 0.999
image.Parent = GuiLibrary["MainGui"]
task.spawn(function()
for i = 1, 150 do
task.wait(0.1)
if image.ContentImageSize ~= Vector2.zero then
image:Destroy()
break
end
end
if image then
if image.ContentImageSize == Vector2.zero and (not shown) and (not redownload) and (not betterisfile("vape/assets/check3.txt")) then
shown = true
displayPopup("Vape has detected that you have a skill issue and cannot load assets, Consider getting a better executor.", function()
writefile("vape/assets/check3.txt", "")
end)
end
end
end)
end)
local GUI = GuiLibrary.CreateMainWindow()
local Combat = GuiLibrary.CreateWindow({
["Name"] = "Combat",
["Icon"] = "vape/assets/CombatIcon.png",
["IconSize"] = 15
})
local Blatant = GuiLibrary.CreateWindow({
["Name"] = "Blatant",
["Icon"] = "vape/assets/BlatantIcon.png",
["IconSize"] = 16
})
local Render = GuiLibrary.CreateWindow({
["Name"] = "Render",
["Icon"] = "vape/assets/RenderIcon.png",
["IconSize"] = 17
})
local Utility = GuiLibrary.CreateWindow({
["Name"] = "Utility",
["Icon"] = "vape/assets/UtilityIcon.png",
["IconSize"] = 17
})
local World = GuiLibrary.CreateWindow({
["Name"] = "World",
["Icon"] = "vape/assets/WorldIcon.png",
["IconSize"] = 16
})
local Friends = GuiLibrary.CreateWindow2({
["Name"] = "Friends",
["Icon"] = "vape/assets/FriendsIcon.png",
["IconSize"] = 17
})
local Profiles = GuiLibrary.CreateWindow2({
["Name"] = "Profiles",
["Icon"] = "vape/assets/ProfilesIcon.png",
["IconSize"] = 19
})
GUI.CreateDivider()
GUI.CreateButton({
["Name"] = "Combat",
["Function"] = function(callback) Combat.SetVisible(callback) end,
["Icon"] = "vape/assets/CombatIcon.png",
["IconSize"] = 15
})
GUI.CreateButton({
["Name"] = "Blatant",
["Function"] = function(callback) Blatant.SetVisible(callback) end,
["Icon"] = "vape/assets/BlatantIcon.png",
["IconSize"] = 16
})
GUI.CreateButton({
["Name"] = "Render",
["Function"] = function(callback) Render.SetVisible(callback) end,
["Icon"] = "vape/assets/RenderIcon.png",
["IconSize"] = 17
})
GUI.CreateButton({
["Name"] = "Utility",
["Function"] = function(callback) Utility.SetVisible(callback) end,
["Icon"] = "vape/assets/UtilityIcon.png",
["IconSize"] = 17
})
GUI.CreateButton({
["Name"] = "World",
["Function"] = function(callback) World.SetVisible(callback) end,
["Icon"] = "vape/assets/WorldIcon.png",
["IconSize"] = 16
})
GUI.CreateDivider("MISC")
GUI.CreateButton({
["Name"] = "Friends",
["Function"] = function(callback) Friends.SetVisible(callback) end,
})
GUI.CreateButton({
["Name"] = "Profiles",
["Function"] = function(callback) Profiles.SetVisible(callback) end,
})
local FriendsTextList = {["RefreshValues"] = function() end, ["ObjectListEnabled"] = {}}
local FriendsColor = {["Value"] = 0.44}
local friendscreatetab = {
["Name"] = "FriendsList",
["TempText"] = "Username [Alias]",
["Color"] = Color3.fromRGB(5, 133, 104)
}
FriendsTextList = Friends.CreateCircleTextList(friendscreatetab)
FriendsTextList.FriendRefresh = Instance.new("BindableEvent")
FriendsTextList.FriendColorRefresh = Instance.new("BindableEvent")
local oldfriendref = FriendsTextList["RefreshValues"]
FriendsTextList["RefreshValues"] = function(...)
FriendsTextList.FriendRefresh:Fire()
return oldfriendref(...)
end
Friends.CreateToggle({
["Name"] = "Use Friends",
["Function"] = function(callback)
FriendsTextList.FriendRefresh:Fire()
end,
["Default"] = true
})
Friends.CreateToggle({
["Name"] = "Use Alias",
["Function"] = function(callback) end,
["Default"] = true,
})
Friends.CreateToggle({
["Name"] = "Spoof alias",
["Function"] = function(callback) end,
})
local friendrecolor = Friends.CreateToggle({
["Name"] = "Recolor visuals",
["Function"] = function(callback) FriendsTextList.FriendColorRefresh:Fire() end,
["Default"] = true
})
local friendsscrollingframe
FriendsColor = Friends.CreateColorSlider({
["Name"] = "Friends Color",
["Function"] = function(h, s, v)
local col = Color3.fromHSV(h, s, v)
local addcirc = FriendsTextList["Object"]:FindFirstChild("AddButton", true)
if addcirc then
addcirc.ImageColor3 = col
end
friendsscrollingframe = friendsscrollingframe or FriendsTextList["ScrollingObject"] and FriendsTextList["ScrollingObject"]:FindFirstChild("ScrollingFrame")
if friendsscrollingframe then
for i,v in pairs(friendsscrollingframe:GetChildren()) do
local friendcirc = v:FindFirstChild("FriendCircle")
local itemtext = v:FindFirstChild("ItemText")
if friendcirc and itemtext then
friendcirc.BackgroundColor3 = itemtext.TextColor3 == Color3.fromRGB(160, 160, 160) and col or friendcirc.BackgroundColor3
end
end
end
friendscreatetab["Color"] = col
if friendrecolor.Enabled then
FriendsTextList.FriendColorRefresh:Fire()
end
end
})
local ProfilesTextList = {["RefreshValues"] = function() end}
local profilesloaded = false
ProfilesTextList = Profiles.CreateTextList({
["Name"] = "ProfilesList",
["TempText"] = "Type name",
["NoSave"] = true,
["AddFunction"] = function(user)
GuiLibrary["Profiles"][user] = {["Keybind"] = "", ["Selected"] = false}
local profiles = {}
for i,v in pairs(GuiLibrary["Profiles"]) do
table.insert(profiles, i)
end
table.sort(profiles, function(a, b) return b == "default" and true or a:lower() < b:lower() end)
ProfilesTextList["RefreshValues"](profiles)
end,
["RemoveFunction"] = function(num, obj)
if obj ~= "default" and obj ~= GuiLibrary["CurrentProfile"] then
pcall(function() delfile(customdir.."Profiles/"..obj..(shared.CustomSaveVape or game.PlaceId)..".vapeprofile.txt") end)
GuiLibrary["Profiles"][obj] = nil
else
table.insert(ProfilesTextList["ObjectList"], obj)
ProfilesTextList["RefreshValues"](ProfilesTextList["ObjectList"])
end
end,
["CustomFunction"] = function(obj, profilename)
if GuiLibrary["Profiles"][profilename] == nil then
GuiLibrary["Profiles"][profilename] = {["Keybind"] = ""}
end
obj.MouseButton1Click:Connect(function()
GuiLibrary["SwitchProfile"](profilename)
end)
local newsize = UDim2.new(0, 20, 0, 21)
local bindbkg = Instance.new("TextButton")
bindbkg.Text = ""
bindbkg.AutoButtonColor = false
bindbkg.Size = UDim2.new(0, 20, 0, 21)
bindbkg.Position = UDim2.new(1, -50, 0, 6)
bindbkg.BorderSizePixel = 0
bindbkg.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
bindbkg.BackgroundTransparency = 0.95
bindbkg.Visible = GuiLibrary["Profiles"][profilename]["Keybind"] ~= ""
bindbkg.Parent = obj
local bindimg = Instance.new("ImageLabel")
bindimg.Image = getcustomassetfunc("vape/assets/KeybindIcon.png")
bindimg.BackgroundTransparency = 1
bindimg.Size = UDim2.new(0, 12, 0, 12)
bindimg.Position = UDim2.new(0, 4, 0, 5)
bindimg.ImageTransparency = 0.2
bindimg.Active = false
bindimg.Visible = (GuiLibrary["Profiles"][profilename]["Keybind"] == "")
bindimg.Parent = bindbkg
local bindtext = Instance.new("TextLabel")
bindtext.Active = false
bindtext.BackgroundTransparency = 1
bindtext.TextSize = 16
bindtext.Parent = bindbkg
bindtext.Font = Enum.Font.SourceSans
bindtext.Size = UDim2.new(1, 0, 1, 0)
bindtext.TextColor3 = Color3.fromRGB(85, 85, 85)
bindtext.Visible = (GuiLibrary["Profiles"][profilename]["Keybind"] ~= "")
local bindtext2 = Instance.new("TextLabel")
bindtext2.Text = "PRESS A KEY TO BIND"
bindtext2.Size = UDim2.new(0, 150, 0, 33)
bindtext2.Font = Enum.Font.SourceSans
bindtext2.TextSize = 17
bindtext2.TextColor3 = Color3.fromRGB(201, 201, 201)
bindtext2.BackgroundColor3 = Color3.fromRGB(37, 37, 37)
bindtext2.BorderSizePixel = 0
bindtext2.Visible = false
bindtext2.Parent = obj
local bindround = Instance.new("UICorner")
bindround.CornerRadius = UDim.new(0, 4)
bindround.Parent = bindbkg
bindbkg.MouseButton1Click:Connect(function()
if GuiLibrary["KeybindCaptured"] == false then
GuiLibrary["KeybindCaptured"] = true
spawn(function()
bindtext2.Visible = true
repeat task.wait() until GuiLibrary["PressedKeybindKey"] ~= ""
local key = (GuiLibrary["PressedKeybindKey"] == GuiLibrary["Profiles"][profilename]["Keybind"] and "" or GuiLibrary["PressedKeybindKey"])
if key == "" then
GuiLibrary["Profiles"][profilename]["Keybind"] = key
newsize = UDim2.new(0, 20, 0, 21)
bindbkg.Size = newsize
bindbkg.Visible = true
bindbkg.Position = UDim2.new(1, -(30 + newsize.X.Offset), 0, 6)
bindimg.Visible = true
bindtext.Visible = false
bindtext.Text = key
else
local textsize = game:GetService("TextService"):GetTextSize(key, 16, bindtext.Font, Vector2.new(99999, 99999))
newsize = UDim2.new(0, 13 + textsize.X, 0, 21)
GuiLibrary["Profiles"][profilename]["Keybind"] = key
bindbkg.Visible = true
bindbkg.Size = newsize
bindbkg.Position = UDim2.new(1, -(30 + newsize.X.Offset), 0, 6)
bindimg.Visible = false
bindtext.Visible = true
bindtext.Text = key
end
GuiLibrary["PressedKeybindKey"] = ""
GuiLibrary["KeybindCaptured"] = false
bindtext2.Visible = false
end)
end
end)
bindbkg.MouseEnter:Connect(function()
bindimg.Image = getcustomassetfunc("vape/assets/PencilIcon.png")
bindimg.Visible = true
bindtext.Visible = false
bindbkg.Size = UDim2.new(0, 20, 0, 21)
bindbkg.Position = UDim2.new(1, -50, 0, 6)
end)
bindbkg.MouseLeave:Connect(function()
bindimg.Image = getcustomassetfunc("vape/assets/KeybindIcon.png")
if GuiLibrary["Profiles"][profilename]["Keybind"] ~= "" then
bindimg.Visible = false
bindtext.Visible = true
bindbkg.Size = newsize
bindbkg.Position = UDim2.new(1, -(30 + newsize.X.Offset), 0, 6)
end
end)
obj.MouseEnter:Connect(function()
bindbkg.Visible = true
end)
obj.MouseLeave:Connect(function()
bindbkg.Visible = GuiLibrary["Profiles"][profilename] and GuiLibrary["Profiles"][profilename]["Keybind"] ~= ""
end)
if GuiLibrary["Profiles"][profilename]["Keybind"] ~= "" then
bindtext.Text = GuiLibrary["Profiles"][profilename]["Keybind"]
local textsize = game:GetService("TextService"):GetTextSize(GuiLibrary["Profiles"][profilename]["Keybind"], 16, bindtext.Font, Vector2.new(99999, 99999))
newsize = UDim2.new(0, 13 + textsize.X, 0, 21)
bindbkg.Size = newsize
bindbkg.Position = UDim2.new(1, -(30 + newsize.X.Offset), 0, 6)
end
if profilename == GuiLibrary["CurrentProfile"] then
obj.BackgroundColor3 = Color3.fromHSV(GuiLibrary["ObjectsThatCanBeSaved"]["Gui ColorSliderColor"]["Api"]["Hue"], GuiLibrary["ObjectsThatCanBeSaved"]["Gui ColorSliderColor"]["Api"]["Sat"], GuiLibrary["ObjectsThatCanBeSaved"]["Gui ColorSliderColor"]["Api"]["Value"])
obj.ImageButton.BackgroundColor3 = Color3.fromHSV(GuiLibrary["ObjectsThatCanBeSaved"]["Gui ColorSliderColor"]["Api"]["Hue"], GuiLibrary["ObjectsThatCanBeSaved"]["Gui ColorSliderColor"]["Api"]["Sat"], GuiLibrary["ObjectsThatCanBeSaved"]["Gui ColorSliderColor"]["Api"]["Value"])
obj.ItemText.TextColor3 = Color3.new(1, 1, 1)
obj.ItemText.TextStrokeTransparency = 0.75
bindbkg.BackgroundTransparency = 0.9
bindtext.TextColor3 = Color3.fromRGB(214, 214, 214)
end
end
})
local OnlineProfilesButton = Instance.new("TextButton")
OnlineProfilesButton.Name = "OnlineProfilesButton"
OnlineProfilesButton.LayoutOrder = 1
OnlineProfilesButton.AutoButtonColor = false
OnlineProfilesButton.Size = UDim2.new(0, 45, 0, 29)
OnlineProfilesButton.BackgroundColor3 = Color3.fromRGB(26, 25, 26)
OnlineProfilesButton.Active = false
OnlineProfilesButton.Text = ""
OnlineProfilesButton.ZIndex = 1
OnlineProfilesButton.Font = Enum.Font.SourceSans
OnlineProfilesButton.TextXAlignment = Enum.TextXAlignment.Left
OnlineProfilesButton.Position = UDim2.new(0, 166, 0, 6)
OnlineProfilesButton.Parent = ProfilesTextList["Object"]
local OnlineProfilesButtonBKG = Instance.new("UIStroke")
OnlineProfilesButtonBKG.Color = Color3.fromRGB(38, 37, 38)
OnlineProfilesButtonBKG.Thickness = 1
OnlineProfilesButtonBKG.ApplyStrokeMode = Enum.ApplyStrokeMode.Border
OnlineProfilesButtonBKG.Parent = OnlineProfilesButton
local OnlineProfilesButtonImage = Instance.new("ImageLabel")
OnlineProfilesButtonImage.BackgroundTransparency = 1
OnlineProfilesButtonImage.Position = UDim2.new(0, 14, 0, 7)
OnlineProfilesButtonImage.Size = UDim2.new(0, 17, 0, 16)
OnlineProfilesButtonImage.Image = getcustomassetfunc("vape/assets/OnlineProfilesButton.png")
OnlineProfilesButtonImage.ImageColor3 = Color3.fromRGB(121, 121, 121)
OnlineProfilesButtonImage.ZIndex = 1
OnlineProfilesButtonImage.Active = false
OnlineProfilesButtonImage.Parent = OnlineProfilesButton
local OnlineProfilesbuttonround1 = Instance.new("UICorner")
OnlineProfilesbuttonround1.CornerRadius = UDim.new(0, 5)
OnlineProfilesbuttonround1.Parent = OnlineProfilesButton
local OnlineProfilesbuttonround2 = Instance.new("UICorner")
OnlineProfilesbuttonround2.CornerRadius = UDim.new(0, 5)
OnlineProfilesbuttonround2.Parent = OnlineProfilesButtonBKG
local OnlineProfilesFrame = Instance.new("Frame")
OnlineProfilesFrame.Size = UDim2.new(0, 660, 0, 445)
OnlineProfilesFrame.Position = UDim2.new(0.5, -330, 0.5, -223)
OnlineProfilesFrame.BackgroundColor3 = Color3.fromRGB(26, 25, 26)
OnlineProfilesFrame.Parent = GuiLibrary["MainGui"].ScaledGui.OnlineProfiles
local OnlineProfilesExitButton = Instance.new("ImageButton")
OnlineProfilesExitButton.Name = "OnlineProfilesExitButton"
OnlineProfilesExitButton.ImageColor3 = Color3.fromRGB(121, 121, 121)
OnlineProfilesExitButton.Size = UDim2.new(0, 24, 0, 24)
OnlineProfilesExitButton.AutoButtonColor = false
OnlineProfilesExitButton.Image = getcustomassetfunc("vape/assets/ExitIcon1.png")
OnlineProfilesExitButton.Visible = true
OnlineProfilesExitButton.Position = UDim2.new(1, -31, 0, 8)
OnlineProfilesExitButton.BackgroundColor3 = Color3.fromRGB(26, 25, 26)
OnlineProfilesExitButton.Parent = OnlineProfilesFrame
local OnlineProfilesExitButtonround = Instance.new("UICorner")
OnlineProfilesExitButtonround.CornerRadius = UDim.new(0, 16)
OnlineProfilesExitButtonround.Parent = OnlineProfilesExitButton
OnlineProfilesExitButton.MouseEnter:Connect(function()
game:GetService("TweenService"):Create(OnlineProfilesExitButton, TweenInfo.new(0.1, Enum.EasingStyle.Quad, Enum.EasingDirection.InOut), {BackgroundColor3 = Color3.fromRGB(60, 60, 60), ImageColor3 = Color3.fromRGB(255, 255, 255)}):Play()
end)
OnlineProfilesExitButton.MouseLeave:Connect(function()
game:GetService("TweenService"):Create(OnlineProfilesExitButton, TweenInfo.new(0.1, Enum.EasingStyle.Quad, Enum.EasingDirection.InOut), {BackgroundColor3 = Color3.fromRGB(26, 25, 26), ImageColor3 = Color3.fromRGB(121, 121, 121)}):Play()
end)
local OnlineProfilesFrameShadow = Instance.new("ImageLabel")
OnlineProfilesFrameShadow.AnchorPoint = Vector2.new(0.5, 0.5)
OnlineProfilesFrameShadow.Position = UDim2.new(0.5, 0, 0.5, 0)
OnlineProfilesFrameShadow.Image = getcustomassetfunc("vape/assets/WindowBlur.png")
OnlineProfilesFrameShadow.BackgroundTransparency = 1
OnlineProfilesFrameShadow.ZIndex = -1
OnlineProfilesFrameShadow.Size = UDim2.new(1, 6, 1, 6)
OnlineProfilesFrameShadow.ImageColor3 = Color3.new(0, 0, 0)
OnlineProfilesFrameShadow.ScaleType = Enum.ScaleType.Slice
OnlineProfilesFrameShadow.SliceCenter = Rect.new(10, 10, 118, 118)
OnlineProfilesFrameShadow.Parent = OnlineProfilesFrame
local OnlineProfilesFrameIcon = Instance.new("ImageLabel")
OnlineProfilesFrameIcon.Size = UDim2.new(0, 19, 0, 16)
OnlineProfilesFrameIcon.Image = getcustomassetfunc("vape/assets/ProfilesIcon.png")
OnlineProfilesFrameIcon.Name = "WindowIcon"
OnlineProfilesFrameIcon.BackgroundTransparency = 1
OnlineProfilesFrameIcon.Position = UDim2.new(0, 10, 0, 13)
OnlineProfilesFrameIcon.ImageColor3 = Color3.fromRGB(200, 200, 200)
OnlineProfilesFrameIcon.Parent = OnlineProfilesFrame
local OnlineProfilesFrameText = Instance.new("TextLabel")
OnlineProfilesFrameText.Size = UDim2.new(0, 155, 0, 41)
OnlineProfilesFrameText.BackgroundTransparency = 1
OnlineProfilesFrameText.Name = "WindowTitle"
OnlineProfilesFrameText.Position = UDim2.new(0, 36, 0, 0)
OnlineProfilesFrameText.TextXAlignment = Enum.TextXAlignment.Left
OnlineProfilesFrameText.Font = Enum.Font.SourceSans
OnlineProfilesFrameText.TextSize = 17
OnlineProfilesFrameText.Text = "Public Profiles"
OnlineProfilesFrameText.TextColor3 = Color3.fromRGB(201, 201, 201)
OnlineProfilesFrameText.Parent = OnlineProfilesFrame
local OnlineProfilesFrameText2 = Instance.new("TextLabel")
OnlineProfilesFrameText2.TextSize = 15
OnlineProfilesFrameText2.TextColor3 = Color3.fromRGB(85, 84, 85)
OnlineProfilesFrameText2.Text = "YOUR PROFILES"
OnlineProfilesFrameText2.Font = Enum.Font.SourceSans
OnlineProfilesFrameText2.BackgroundTransparency = 1
OnlineProfilesFrameText2.TextXAlignment = Enum.TextXAlignment.Left
OnlineProfilesFrameText2.TextYAlignment = Enum.TextYAlignment.Top
OnlineProfilesFrameText2.Size = UDim2.new(1, 0, 0, 20)
OnlineProfilesFrameText2.Position = UDim2.new(0, 10, 0, 48)
OnlineProfilesFrameText2.Parent = OnlineProfilesFrame
local OnlineProfilesFrameText3 = Instance.new("TextLabel")
OnlineProfilesFrameText3.TextSize = 15
OnlineProfilesFrameText3.TextColor3 = Color3.fromRGB(85, 84, 85)
OnlineProfilesFrameText3.Text = "PUBLIC PROFILES"
OnlineProfilesFrameText3.Font = Enum.Font.SourceSans
OnlineProfilesFrameText3.BackgroundTransparency = 1
OnlineProfilesFrameText3.TextXAlignment = Enum.TextXAlignment.Left
OnlineProfilesFrameText3.TextYAlignment = Enum.TextYAlignment.Top
OnlineProfilesFrameText3.Size = UDim2.new(1, 0, 0, 20)
OnlineProfilesFrameText3.Position = UDim2.new(0, 231, 0, 48)
OnlineProfilesFrameText3.Parent = OnlineProfilesFrame
local OnlineProfilesBorder1 = Instance.new("Frame")
OnlineProfilesBorder1.BackgroundColor3 = Color3.fromRGB(40, 39, 40)
OnlineProfilesBorder1.BorderSizePixel = 0
OnlineProfilesBorder1.Size = UDim2.new(1, 0, 0, 1)
OnlineProfilesBorder1.Position = UDim2.new(0, 0, 0, 41)
OnlineProfilesBorder1.Parent = OnlineProfilesFrame
local OnlineProfilesBorder2 = Instance.new("Frame")
OnlineProfilesBorder2.BackgroundColor3 = Color3.fromRGB(40, 39, 40)
OnlineProfilesBorder2.BorderSizePixel = 0
OnlineProfilesBorder2.Size = UDim2.new(0, 1, 1, -41)
OnlineProfilesBorder2.Position = UDim2.new(0, 220, 0, 41)
OnlineProfilesBorder2.Parent = OnlineProfilesFrame
local OnlineProfilesList = Instance.new("ScrollingFrame")
OnlineProfilesList.BackgroundTransparency = 1
OnlineProfilesList.Size = UDim2.new(0, 408, 0, 319)
OnlineProfilesList.Position = UDim2.new(0, 230, 0, 122)
OnlineProfilesList.CanvasSize = UDim2.new(0, 408, 0, 319)
OnlineProfilesList.Parent = OnlineProfilesFrame
local OnlineProfilesListGrid = Instance.new("UIGridLayout")
OnlineProfilesListGrid.CellSize = UDim2.new(0, 134, 0, 144)
OnlineProfilesListGrid.CellPadding = UDim2.new(0, 4, 0, 4)
OnlineProfilesListGrid.Parent = OnlineProfilesList
local OnlineProfilesFrameCorner = Instance.new("UICorner")
OnlineProfilesFrameCorner.CornerRadius = UDim.new(0, 4)
OnlineProfilesFrameCorner.Parent = OnlineProfilesFrame
local function grabdata(url)
local success, result = pcall(function()
return game:GetService("HttpService"):JSONDecode(game:HttpGet(url, true))
end)
return success and result or {}
end
OnlineProfilesButton.MouseButton1Click:Connect(function()
GuiLibrary["MainGui"].ScaledGui.OnlineProfiles.Visible = true
GuiLibrary["MainGui"].ScaledGui.ClickGui.Visible = false
if profilesloaded == false then
local onlineprofiles = {}
local saveplaceid = tostring(shared.CustomSaveVape or game.PlaceId)
for i,v in pairs(grabdata("https://raw.githubusercontent.com/7GrandDadPGN/VapeProfiles/main/Profiles/"..saveplaceid.."/profilelist.txt")) do
onlineprofiles[i] = v
end
for i2,v2 in pairs(onlineprofiles) do
local profileurl = "https://raw.githubusercontent.com/7GrandDadPGN/VapeProfiles/main/Profiles/"..saveplaceid.."/"..v2.OnlineProfileName
local profilebox = Instance.new("Frame")
profilebox.BackgroundColor3 = Color3.fromRGB(31, 30, 31)
profilebox.Parent = OnlineProfilesList
local profiletext = Instance.new("TextLabel")
profiletext.TextSize = 15
profiletext.TextColor3 = Color3.fromRGB(137, 136, 137)
profiletext.Size = UDim2.new(0, 100, 0, 20)
profiletext.Position = UDim2.new(0, 18, 0, 25)
profiletext.Font = Enum.Font.SourceSans
profiletext.TextXAlignment = Enum.TextXAlignment.Left
profiletext.TextYAlignment = Enum.TextYAlignment.Top
profiletext.BackgroundTransparency = 1
profiletext.Text = i2
profiletext.Parent = profilebox
local profiledownload = Instance.new("TextButton")
profiledownload.BackgroundColor3 = Color3.fromRGB(31, 30, 31)
profiledownload.Size = UDim2.new(0, 69, 0, 31)
profiledownload.Font = Enum.Font.SourceSans
profiledownload.TextColor3 = Color3.fromRGB(200, 200, 200)
profiledownload.TextSize = 15
profiledownload.AutoButtonColor = false
profiledownload.Text = "DOWNLOAD"
profiledownload.Position = UDim2.new(0, 14, 0, 96)
profiledownload.Visible = false
profiledownload.Parent = profilebox
profiledownload.ZIndex = 2
local profiledownloadbkg = Instance.new("Frame")
profiledownloadbkg.Size = UDim2.new(0, 71, 0, 33)
profiledownloadbkg.BackgroundColor3 = Color3.fromRGB(42, 41, 42)
profiledownloadbkg.Position = UDim2.new(0, 13, 0, 95)
profiledownloadbkg.ZIndex = 1
profiledownloadbkg.Visible = false
profiledownloadbkg.Parent = profilebox
profilebox.MouseEnter:Connect(function()
profiletext.TextColor3 = Color3.fromRGB(200, 200, 200)
profiledownload.Visible = true
profiledownloadbkg.Visible = true
end)
profilebox.MouseLeave:Connect(function()
profiletext.TextColor3 = Color3.fromRGB(137, 136, 137)
profiledownload.Visible = false
profiledownloadbkg.Visible = false
end)
profiledownload.MouseEnter:Connect(function()
profiledownload.BackgroundColor3 = Color3.fromRGB(5, 134, 105)
end)
profiledownload.MouseLeave:Connect(function()
profiledownload.BackgroundColor3 = Color3.fromRGB(31, 30, 31)
end)
profiledownload.MouseButton1Click:Connect(function()
writefile(customdir.."Profiles/"..v2["ProfileName"]..saveplaceid..".vapeprofile.txt", game:HttpGet(profileurl, true))
GuiLibrary["Profiles"][v2["ProfileName"]] = {["Keybind"] = "", ["Selected"] = false}
local profiles = {}
for i,v in pairs(GuiLibrary["Profiles"]) do
table.insert(profiles, i)
end
table.sort(profiles, function(a, b) return b == "default" and true or a:lower() < b:lower() end)
ProfilesTextList["RefreshValues"](profiles)
end)
local profileround = Instance.new("UICorner")
profileround.CornerRadius = UDim.new(0, 4)
profileround.Parent = profilebox
local profileround2 = Instance.new("UICorner")
profileround2.CornerRadius = UDim.new(0, 4)
profileround2.Parent = profiledownload
local profileround3 = Instance.new("UICorner")
profileround3.CornerRadius = UDim.new(0, 4)
profileround3.Parent = profiledownloadbkg
end
profilesloaded = true
end
end)
OnlineProfilesExitButton.MouseButton1Click:Connect(function()
GuiLibrary["MainGui"].ScaledGui.OnlineProfiles.Visible = false
GuiLibrary["MainGui"].ScaledGui.ClickGui.Visible = true
end)
GUI.CreateDivider()
local TextGui = GuiLibrary.CreateCustomWindow({
["Name"] = "Text GUI",
["Icon"] = "vape/assets/TextGUIIcon1.png",
["IconSize"] = 21
})
local TextGuiCircleObject = {["CircleList"] = {}}
GUI.CreateCustomToggle({
["Name"] = "Text GUI",
["Icon"] = "vape/assets/TextGUIIcon3.png",
["Function"] = function(callback) TextGui.SetVisible(callback) end,
["Priority"] = 2
})
local rainbowval = ColorSequence.new({ColorSequenceKeypoint.new(0, Color3.fromHSV(0, 0, 1)), ColorSequenceKeypoint.new(1, Color3.fromHSV(0, 0, 1))})
local rainbowval2 = ColorSequence.new({ColorSequenceKeypoint.new(0, Color3.fromHSV(0, 0, 0.42)), ColorSequenceKeypoint.new(1, Color3.fromHSV(0, 0, 0.42))})
local rainbowval3 = ColorSequence.new({ColorSequenceKeypoint.new(0, Color3.fromHSV(0, 0, 1)), ColorSequenceKeypoint.new(1, Color3.fromHSV(0, 0, 1))})
local guicolorslider = {["RainbowValue"] = false}
local textguiscaleslider = {["Value"] = 10}
local textguimode = {["Value"] = "Normal"}
local fontitems = {"SourceSans"}
local fontitems2 = {"GothamBold"}
local textguiframe = Instance.new("Frame")
textguiframe.BackgroundTransparency = 1
textguiframe.Size = UDim2.new(1, 0, 1, 0)
textguiframe.Parent = TextGui.GetCustomChildren()
local onething = Instance.new("ImageLabel")
onething.Parent = textguiframe
onething.Name = "Logo"
onething.Size = UDim2.new(0, 100, 0, 27)
onething.Position = UDim2.new(1, -140, 0, 3)
onething.BackgroundColor3 = Color3.new(0, 0, 0)
onething.BorderSizePixel = 0
onething.BackgroundTransparency = 1
onething.Visible = false
onething.Image = getcustomassetfunc(translatedlogo and "vape/translations/"..GuiLibrary["Language"].."/VapeLogo3.png" or "vape/assets/VapeLogo3.png")
local onething2 = Instance.new("ImageLabel")
onething2.Parent = onething
onething2.Size = UDim2.new(0, 41, 0, 24)
onething2.Name = "Logo2"
onething2.Position = UDim2.new(1, 0, 0, 1)
onething2.BorderSizePixel = 0
onething2.BackgroundColor3 = Color3.new(0, 0, 0)
onething2.BackgroundTransparency = 1
onething2.Image = getcustomassetfunc("vape/assets/VapeLogo4.png")
local onething3 = onething:Clone()
onething3.ImageColor3 = Color3.new(0, 0, 0)
onething3.ImageTransparency = 0.5
onething3.ZIndex = 0
onething3.Position = UDim2.new(0, 1, 0, 1)
onething3.Visible = false
onething3.Parent = onething
onething3.Logo2.ImageColor3 = Color3.new(0, 0, 0)
onething3.Logo2.ZIndex = 0
onething3.Logo2.ImageTransparency = 0.5
local onethinggrad = Instance.new("UIGradient")
onethinggrad.Rotation = 90
onethinggrad.Parent = onething
local onethinggrad2 = Instance.new("UIGradient")
onethinggrad2.Rotation = 90
onethinggrad2.Parent = onething2
local onetext = Instance.new("TextLabel")
onetext.Parent = textguiframe
onetext.Size = UDim2.new(1, 0, 1, 0)
onetext.Position = UDim2.new(1, -154, 0, 35)
onetext.TextColor3 = Color3.new(1, 1, 1)
onetext.RichText = true
onetext.BackgroundTransparency = 1
onetext.TextXAlignment = Enum.TextXAlignment.Left
onetext.TextYAlignment = Enum.TextYAlignment.Top
onetext.BorderSizePixel = 0
onetext.BackgroundColor3 = Color3.new(0, 0, 0)
onetext.Font = Enum.Font.SourceSans
onetext.Text = ""
onetext.TextSize = 23
local onetext2 = Instance.new("TextLabel")
onetext2.Name = "ExtraText"
onetext2.Parent = onetext
onetext2.Size = UDim2.new(1, 0, 1, 0)
onetext2.Position = UDim2.new(0, 1, 0, 1)
onetext2.BorderSizePixel = 0
onetext2.Visible = false
onetext2.ZIndex = 0
onetext2.Text = ""
onetext2.BackgroundTransparency = 1
onetext2.TextTransparency = 0.5
onetext2.TextXAlignment = Enum.TextXAlignment.Left
onetext2.TextYAlignment = Enum.TextYAlignment.Top
onetext2.TextColor3 = Color3.new(0, 0, 0)
onetext2.Font = Enum.Font.SourceSans
onetext2.TextSize = 23
local onecustomtext = Instance.new("TextLabel")
onecustomtext.TextSize = 30
onecustomtext.Font = Enum.Font.GothamBold
onecustomtext.Size = UDim2.new(1, 0, 1, 0)
onecustomtext.BackgroundTransparency = 1
onecustomtext.Position = UDim2.new(0, 0, 0, 35)
onecustomtext.TextXAlignment = Enum.TextXAlignment.Left
onecustomtext.TextYAlignment = Enum.TextYAlignment.Top
onecustomtext.Text = ""
onecustomtext.Parent = textguiframe
local onecustomtext2 = onecustomtext:Clone()
onecustomtext2.ZIndex = -1
onecustomtext2.Size = UDim2.new(1, 0, 1, 0)
onecustomtext2.TextTransparency = 0.5
onecustomtext2.TextColor3 = Color3.new(0, 0, 0)
onecustomtext2.Position = UDim2.new(0, 1, 0, 1)
onecustomtext2.Parent = onecustomtext
onecustomtext:GetPropertyChangedSignal("TextXAlignment"):Connect(function()
onecustomtext2.TextXAlignment = onecustomtext.TextXAlignment
end)
local onebackground = Instance.new("Frame")
onebackground.BackgroundTransparency = 1
onebackground.BorderSizePixel = 0
onebackground.BackgroundColor3 = Color3.new(0, 0, 0)
onebackground.Size = UDim2.new(1, 0, 1, 0)
onebackground.Visible = false
onebackground.Parent = textguiframe
onebackground.ZIndex = 0
local onebackgroundsort = Instance.new("UIListLayout")
onebackgroundsort.FillDirection = Enum.FillDirection.Vertical
onebackgroundsort.SortOrder = Enum.SortOrder.LayoutOrder
onebackgroundsort.Padding = UDim.new(0, 0)
onebackgroundsort.Parent = onebackground
local onescale = Instance.new("UIScale")
onescale.Parent = textguiframe
local textguirenderbkg = {["Enabled"] = false}
local textguimodeconnections = {}
local textguimodeobjects = {Logo = {}, Labels = {}, ShadowLabels = {}, Backgrounds = {}}
local function refreshbars(textlists)
for i,v in pairs(onebackground:GetChildren()) do
if v:IsA("Frame") then
v:Remove()
end
end
for i2,v2 in pairs(textlists) do
local newstr = v2:gsub(":", " ")
local textsize = game:GetService("TextService"):GetTextSize(newstr, onetext.TextSize, onetext.Font, Vector2.new(1000000, 1000000))
local frame = Instance.new("Frame")
frame.BorderSizePixel = 0
frame.BackgroundTransparency = 0.62
frame.BackgroundColor3 = Color3.new(0,0,0)
frame.Visible = true
frame.ZIndex = 0
frame.LayoutOrder = i2
frame.Size = UDim2.new(0, textsize.X + 8, 0, textsize.Y)
frame.Parent = onebackground
local colorframe = Instance.new("Frame")
colorframe.Size = UDim2.new(0, 2, 1, 0)
colorframe.Position = (onebackgroundsort.HorizontalAlignment == Enum.HorizontalAlignment.Left and UDim2.new(0, 0, 0, 0) or UDim2.new(1, -2, 0, 0))
colorframe.BorderSizePixel = 0
colorframe.Name = "ColorFrame"
colorframe.Parent = frame
local extraframe = Instance.new("Frame")
extraframe.BorderSizePixel = 0
extraframe.BackgroundTransparency = 0.96
extraframe.BackgroundColor3 = Color3.new(0, 0, 0)
extraframe.ZIndex = 0
extraframe.Size = UDim2.new(1, 0, 0, 2)
extraframe.Position = UDim2.new(0, 0, 1, -1)
extraframe.Parent = frame
end
end
onething.Visible = true onetext.Position = UDim2.new(0, 0, 0, 41)
local sortingmethod = "Alphabetical"
local textwithoutthing = ""
local function getSpaces(str)
local strSize = game:GetService("TextService"):GetTextSize(str, onetext.TextSize, onetext.TextSize, Vector2.new(10000, 10000))
return math.ceil(strSize.X / 3)
end
local function UpdateHud()
local scaledgui = GuiLibrary["MainGui"]:FindFirstChild("ScaledGui")
if scaledgui and scaledgui.Visible then
local text = ""
local text2 = ""
local tableofmodules = {}
local first = true
for i,v in pairs(GuiLibrary["ObjectsThatCanBeSaved"]) do
if v["Type"] == "OptionsButton" and v["Api"]["Name"] ~= "Text GUI" then
if v["Api"]["Enabled"] then
local blacklisted = table.find(TextGuiCircleObject["CircleList"]["ObjectList"], v["Api"]["Name"]) and TextGuiCircleObject["CircleList"]["ObjectListEnabled"][table.find(TextGuiCircleObject["CircleList"]["ObjectList"], v["Api"]["Name"])]
if not blacklisted then
table.insert(tableofmodules, {["Text"] = v["Api"]["Name"], ["ExtraText"] = v["Api"]["GetExtraText"]})
end
end
end
end
if sortingmethod == "Alphabetical" then
table.sort(tableofmodules, function(a, b) return a["Text"]:lower() < b["Text"]:lower() end)
else
table.sort(tableofmodules, function(a, b)
local textsize1 = (translations[a["Text"]] ~= nil and translations[a["Text"]] or a["Text"])..(a["ExtraText"]() ~= "" and " "..a["ExtraText"]() or "")
local textsize2 = (translations[b["Text"]] ~= nil and translations[b["Text"]] or b["Text"])..(b["ExtraText"]() ~= "" and " "..b["ExtraText"]() or "")
textsize1 = game:GetService("TextService"):GetTextSize(textsize1, onetext.TextSize, onetext.Font, Vector2.new(1000000, 1000000))
textsize2 = game:GetService("TextService"):GetTextSize(textsize2, onetext.TextSize, onetext.Font, Vector2.new(1000000, 1000000))
return textsize1.X > textsize2.X
end)
end
local textlists = {}
for i2,v2 in pairs(tableofmodules) do
if first then
text = (translations[v2["Text"]] ~= nil and translations[v2["Text"]] or v2["Text"])..(v2["ExtraText"]() ~= "" and ":"..v2["ExtraText"]() or "")
first = false
else
text = text..'\n'..(translations[v2["Text"]] ~= nil and translations[v2["Text"]] or v2["Text"])..(v2["ExtraText"]() ~= "" and ":"..v2["ExtraText"]() or "")
end
table.insert(textlists, (translations[v2["Text"]] ~= nil and translations[v2["Text"]] or v2["Text"])..(v2["ExtraText"]() ~= "" and ":"..v2["ExtraText"]() or ""))
end
textwithoutthing = text
onetext.Text = text
onetext2.Text = text:gsub(":", " ")
local newsize = game:GetService("TextService"):GetTextSize(text, onetext.TextSize, onetext.Font, Vector2.new(1000000, 1000000))
if text == "" then
newsize = Vector2.new(0, 0)
end
onetext.Size = UDim2.new(0, 154, 0, newsize.Y)
if TextGui.GetCustomChildren().Parent then
if (TextGui.GetCustomChildren().Parent.Position.X.Offset + TextGui.GetCustomChildren().Parent.Size.X.Offset / 2) >= (cam.ViewportSize.X / 2) then
onetext.TextXAlignment = Enum.TextXAlignment.Right
onetext2.TextXAlignment = Enum.TextXAlignment.Right
onetext2.Position = UDim2.new(0, 1, 0, 1)
onething.Position = UDim2.new(1, -142, 0, 8)
onetext.Position = UDim2.new(1, -154, 0, (onething.Visible and (textguirenderbkg["Enabled"] and 41 or 35) or 5) + (onecustomtext.Visible and 25 or 0))
onecustomtext.Position = UDim2.new(0, 0, 0, onething.Visible and 35 or 0)
onecustomtext.TextXAlignment = Enum.TextXAlignment.Right
onebackgroundsort.HorizontalAlignment = Enum.HorizontalAlignment.Right
onebackground.Position = onetext.Position + UDim2.new(0, -60, 0, 2)
else
onetext.TextXAlignment = Enum.TextXAlignment.Left
onetext2.TextXAlignment = Enum.TextXAlignment.Left
onetext2.Position = UDim2.new(0, 5, 0, 1)
onething.Position = UDim2.new(0, 2, 0, 8)
onetext.Position = UDim2.new(0, 6, 0, (onething.Visible and (textguirenderbkg["Enabled"] and 41 or 35) or 5) + (onecustomtext.Visible and 25 or 0))
onecustomtext.TextXAlignment = Enum.TextXAlignment.Left
onebackgroundsort.HorizontalAlignment = Enum.HorizontalAlignment.Left
onebackground.Position = onetext.Position + UDim2.new(0, -1, 0, 2)
end
end
if textguimode["Value"] == "Drawing" then
for i,v in pairs(textguimodeobjects.Labels) do
v.Visible = false
v:Remove()
textguimodeobjects.Labels[i] = nil
end
for i,v in pairs(textguimodeobjects.ShadowLabels) do
v.Visible = false
v:Remove()
textguimodeobjects.ShadowLabels[i] = nil
end
for i,v in pairs(textlists) do
local textdraw = Drawing.new("Text")
textdraw.Text = v:gsub(":", " ")
textdraw.Size = 23 * onescale.Scale