forked from EdgeIY/infiniteyield
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathverycoolcombinationofstoreandcmdbar
1806 lines (1748 loc) · 63.9 KB
/
verycoolcombinationofstoreandcmdbar
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
--[[
If you're wondering why there are no NSFW Plugins here are 2 reasons why is it removed:
1. It doesn't work anymore.
2. The Official Infinite Yield Reborn said the facebang command was the last NSFW command they'll add.
3. Are you serious? ScriptBlox?
]]
local reqenv = function() return ((getgenv and getgenv()) or shared or _G) end
local NewPrefix = reqenv()._NewPrefix or "-" -- change your prefix here :3
local LoadUrl = function(str)
return loadstring(game:HttpGet(str, true))()
end
if not reqenv().IY_LOADED then
LoadUrl("https://raw.githubusercontent.com/RyXeleron/infiniteyield-reborn/master/source")
wait(0.75)
else
LoadUrl("https://raw.githubusercontent.com/RyXeleron/infiniteyield-reborn/master/IYCMDBARALREADYEXECUTED")
end
local commandBar = Instance.new("Frame")
local arrow = Instance.new("TextLabel")
local input = Instance.new("TextBox")
local predict = Instance.new("TextLabel")
local shadow = Instance.new("ImageLabel")
commandBar.Name = "CommandBar"
commandBar.Parent = PARENT
commandBar.BackgroundColor3 = Color3.fromRGB(46, 46, 47)
commandBar.BorderSizePixel = 0
commandBar.Position = UDim2.new(0.5, -100, 1, 5)
commandBar.Size = UDim2.new(0, 200, 0, 35)
commandBar.ZIndex = 0
arrow.Name = "Arrow"
arrow.Parent = commandBar
arrow.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
arrow.BackgroundTransparency = 1.0
arrow.BorderSizePixel = 0
arrow.Size = UDim2.new(0, 25, 1, 0)
arrow.ZIndex = 0
arrow.Font = Enum.Font.GothamSemibold
arrow.Text = ">"
arrow.TextColor3 = Color3.fromRGB(220, 224, 234)
arrow.TextSize = 14
arrow.TextStrokeColor3 = Color3.fromRGB(220, 224, 234)
arrow.TextStrokeTransparency = 0.95
input.Name = "Input"
input.Parent = commandBar
input.Active = false
input.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
input.BackgroundTransparency = 1.0
input.BorderSizePixel = 0
input.Position = UDim2.new(0, 20, 0, 0)
input.Selectable = false
input.Size = UDim2.new(1, -25, 1, 0)
input.ZIndex = 5
input.Font = Enum.Font.Gotham
input.Text = ""
input.TextColor3 = Color3.fromRGB(220, 224, 234)
input.TextSize = 14
input.TextStrokeColor3 = Color3.fromRGB(220, 224, 234)
input.TextStrokeTransparency = 0.95
input.TextXAlignment = Enum.TextXAlignment.Left
predict.Name = "Predict"
predict.Parent = input
predict.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
predict.BackgroundTransparency = 1.0
predict.BorderSizePixel = 0
predict.Size = UDim2.new(1, 0, 1, 0)
predict.ZIndex = 0
predict.Font = Enum.Font.Gotham
predict.Text = ""
predict.TextColor3 = Color3.fromRGB(220, 224, 234)
predict.TextSize = 14
predict.TextStrokeColor3 = Color3.fromRGB(220, 224, 234)
predict.TextTransparency = 0.5
predict.TextXAlignment = Enum.TextXAlignment.Left
shadow.Name = "Shadow"
shadow.Parent = commandBar
shadow.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
shadow.BackgroundTransparency = 1.0
shadow.Position = UDim2.new(0, -3, 0, -3)
shadow.Size = UDim2.new(1, 6, 1, 6)
shadow.ZIndex = -5
shadow.Image = "rbxassetid://222785823"
shadow.ScaleType = Enum.ScaleType.Slice
shadow.SliceCenter = Rect.new(100, 100, 100, 100)
shadow.SliceScale = 0.25
local function tween(instance, easingStyle, easingDirection, duration, properties)
local tweenService = game:GetService("TweenService")
local tweenInfo = TweenInfo.new(duration, Enum.EasingStyle[easingStyle], Enum.EasingDirection[easingDirection])
local tween = tweenService:Create(instance, tweenInfo, properties)
tween:Play()
return tween
end
local function toggleCommandBar(show)
if show then
commandBar.Input:CaptureFocus()
spawn(function()
repeat commandBar.Input.Text = "" until commandBar.Input.Text == ""
end)
spawn(function()
tween(commandBar, "Quint", "Out", 0.5, { Position = UDim2.new(0.5, -100, 1, -60) })
end)
else
spawn(function()
tween(commandBar, "Quint", "Out", 0.5, { Position = UDim2.new(0.5, -100, 1, 5) })
end)
end
end
local function startsWith(prefix, str)
return str:sub(1, #prefix) == prefix
end
local function findAlias(alias, str)
if alias == nil then return end
if type(alias) == "table" then
for _, v in ipairs(alias) do
if startsWith(str, v) then
return v
end
end
end
end
local function resolveTarget(target)
local lowerTarget = string.lower(target)
local validTargets = {
"all", "others", "random", "me", "nearest", "farthest", "allies", "enemies", "team",
"nonteam", "friends", "nonfriends", "bacons", "nearest", "farthest", "alive", "dead"
}
return findAlias(validTargets, lowerTarget) or function()
for _, player in ipairs(Players:GetPlayers()) do
local playerName = string.lower(player.Name)
if startsWith(lowerTarget, playerName) then
return playerName
end
end
end
end
local predictLabel = commandBar.Input.Predict
local focusConnection = nil
local function handleFocusLost(focused)
predictLabel.Text = ""
if focusConnection then
focusConnection:Disconnect()
end
if focused then
local inputText = input.Text:gsub("^" .. "%" .. NewPrefix, "")
spawn(function()
toggleCommandBar(false)
end)
spawn(function()
execCmd(inputText, Players.LocalPlayer, true)
end)
end
wait()
if not input:IsFocused() then
input.Text = ""
end
end
input.FocusLost:Connect(handleFocusLost)
input:GetPropertyChangedSignal("Text"):Connect(function()
input.Text = string.lower(input.Text)
predictLabel.Text = ""
local text = input.Text
local words = string.split(text, " ")
local args = cargs or {}
if text == "" then return end
for _, cmd in pairs(cmds) do
local commandName = cmd.NAME
local commandAliases = cmd.ALIAS
local matched = false
if startsWith(text, commandName) then
predictLabel.Text = commandName
break
end
for _, alias in pairs(commandAliases) do
if startsWith(text, alias) then
matched = true
predictLabel.Text = alias
break
end
end
if matched then break end
end
for i, word in ipairs(words) do
if i > 1 and word ~= "" then
local replacement = ""
if #args >= 1 then
replacement = resolveTarget(word) or replacement
else
replacement = resolveTarget(word) or replacement
end
predictLabel.Text = text:sub(1, #text - #words[#words]) .. replacement
local subWords = word:split(",")
if next(subWords) then
for j, subWord in ipairs(subWords) do
if j > 1 and subWord ~= "" then
local resolved = resolveTarget(subWord)
predictLabel.Text = text:sub(1, #text - #subWords[#subWords]) .. (resolved or "")
end
end
end
end
end
end)
input.Focused:Connect(function()
local userInputService = game:GetService("UserInputService")
focusConnection = userInputService.InputBegan:Connect(function(input, gameProcessedEvent)
if input.KeyCode == Enum.KeyCode.Tab and input.UserInputType == Enum.UserInputType.Keyboard then
if not gameProcessedEvent then
if predictLabel.Text ~= "" then
if string.match(predictLabel.Text, " ") then
input.Text = predictLabel.Text
wait()
input.Text = input.Text:gsub("\t", "")
input.CursorPosition = #input.Text + 1
else
input.Text = predictLabel.Text .. " "
wait()
input.Text = input.Text:gsub("\t", "")
input.CursorPosition = #input.Text + 1
end
end
end
end
end)
end)
IYMouse.KeyDown:Connect(function(key)
if tostring(string.lower(key)) == NewPrefix then
spawn(function()
toggleCommandBar(true)
end)
end
end)
local getconnections = getconnections or get_signal_cons
if getconnections then
for _, v in pairs(getconnections(game:GetService("ScriptContext").Error)) do
v:Disable()
end
end
local IS_Settings = {
["Version"] = "1.3.6",
["Invite"] = "VwCGhNu9Rb",
["Plugins"] = LoadUrl(
"https://cdn.jsdelivr.net/gh/RyXeleron/Infinite-Store@main/sources.luau"
),
}
local ann = "This is a unofficial fork by Ry making I.Y.R x I.S. Run the ;discord command to join IYR, InfStore's Discord is on the Store Gui."
local _UserSettings = {
["StartMinimized"] = false,
["NoNotifications"] = false,
["SkipIntro"] = false,
["Announcement"] = "",
}
local HttpService = game:GetService("HttpService")
local CoreGui = game:GetService("CoreGui")
local TweenService = game:GetService("TweenService")
local UserInputService = game:GetService("UserInputService")
local format, gsub = string.format, string.gsub
local DefaultSettings = HttpService:JSONEncode(_UserSettings)
local SaveFileName = "infinite-store.json"
local NoSaving = false
local write_cooldown = false
local writefileCooldown
writefileCooldown = function(name, data)
spawn(function()
if not write_cooldown then
write_cooldown = true
writefile(name, data)
else
repeat
wait()
until write_cooldown == false
writefileCooldown(name, data)
end
wait(3)
write_cooldown = false
end)
end
local canWrite = function()
if writefile then
return true
end
end
local LoadSettings
LoadSettings = function()
if canWrite() then
if pcall(function()
readfile(SaveFileName)
end) then
if readfile(SaveFileName) ~= nil then
local success, response = pcall(function()
local json = HttpService:JSONDecode(readfile(SaveFileName))
if json.StartMinimized ~= nil then
_UserSettings.StartMinimized = json.StartMinimized
else
_UserSettings.StartMinimized = false
end
if json.NoNotifications ~= nil then
_UserSettings.NoNotifications = json.NoNotifications
else
_UserSettings.NoNotifications = false
end
if json.SkipIntro ~= nil then
_UserSettings.SkipIntro = json.SkipIntro
else
_UserSettings.SkipIntro = false
end
if json.Announcement ~= nil then
_UserSettings.Announcement = json.Announcement
else
_UserSettings.Announcement = ""
end
end)
if not success then
warn("Save Json Error:", response)
warn("Overwriting Save File")
writefileCooldown(SaveFileName, DefaultSettings)
wait()
LoadSettings()
end
else
writefileCooldown(SaveFileName, DefaultSettings)
wait()
LoadSettings()
end
else
writefileCooldown(SaveFileName, DefaultSettings)
wait()
if pcall(function()
readfile(SaveFileName)
end) then
LoadSettings()
else
NoSaving = true
_UserSettings.StartMinimized = false
_UserSettings.NoNotifications = false
_UserSettings.SkipIntro = false
_UserSettings.Announcement = ""
end
end
else
_UserSettings.StartMinimized = false
_UserSettings.NoNotifications = false
_UserSettings.SkipIntro = false
_UserSettings.Announcement = ""
end
end
LoadSettings()
local UpdateSettings = function()
if not NoSaving and canWrite() then
local update = {
["StartMinimized"] = _UserSettings.StartMinimized,
["NoNotifications"] = _UserSettings.NoNotifications,
["SkipIntro"] = _UserSettings.SkipIntro,
["Announcement"] = _UserSettings.Announcement,
}
writefileCooldown(SaveFileName, HttpService:JSONEncode(update))
end
end
if IS_LOADED then
--[[
if _UserSettings.NoNotifications == false then
notify(
"Infinite Store",
"Infinite Store is already executed, a button can be found to open it in IY Settings",
5
)
end
error("Infinite Store is already running!", 0)
]]
return
end
pcall(function()
getgenv().IS_LOADED = true
end)
local newRandomString = function()
local length = math.random(10, 20)
local array = {}
for i = 1, length do
array[i] = string.char(math.random(32, 126))
end
return table.concat(array)
end
if ann ~= "" and _UserSettings.Announcement ~= ann then
local AnnGUI = Instance.new("Frame")
local background = Instance.new("Frame")
local TextBox = Instance.new("TextLabel")
local shadow = Instance.new("Frame")
local PopupText = Instance.new("TextLabel")
local Exit = Instance.new("TextButton")
local ExitImage = Instance.new("ImageLabel")
AnnGUI.Name = newRandomString()
AnnGUI.Parent = PARENT
AnnGUI.Active = true
AnnGUI.BackgroundTransparency = 1
AnnGUI.Position = UDim2.new(0.5, -180, 0, -500)
AnnGUI.Size = UDim2.new(0, 360, 0, 20)
AnnGUI.ZIndex = 10
background.Name = "background"
background.Parent = AnnGUI
background.Active = true
background.BackgroundColor3 = currentShade1 or Color3.fromRGB(36, 36, 37)
background.BorderSizePixel = 0
background.Position = UDim2.new(0, 0, 0, 20)
background.Size = UDim2.new(0, 360, 0, 150)
background.ZIndex = 10
TextBox.Parent = background
TextBox.BackgroundTransparency = 1
TextBox.Position = UDim2.new(0, 5, 0, 5)
TextBox.Size = UDim2.new(0, 350, 0, 140)
TextBox.Font = Enum.Font.SourceSans
TextBox.TextSize = 18
TextBox.TextWrapped = true
TextBox.Text = ann
TextBox.TextColor3 = currentText1 or Color3.new(1, 1, 1)
TextBox.TextXAlignment = Enum.TextXAlignment.Left
TextBox.TextYAlignment = Enum.TextYAlignment.Top
TextBox.ZIndex = 10
shadow.Name = "shadow"
shadow.Parent = AnnGUI
shadow.BackgroundColor3 = currentShade2 or Color3.fromRGB(46, 46, 47)
shadow.BorderSizePixel = 0
shadow.Size = UDim2.new(0, 360, 0, 20)
shadow.ZIndex = 10
PopupText.Name = "PopupText"
PopupText.Parent = shadow
PopupText.BackgroundTransparency = 1
PopupText.Size = UDim2.new(1, 0, 0.95, 0)
PopupText.ZIndex = 10
PopupText.Font = Enum.Font.SourceSans
PopupText.TextSize = 14
PopupText.Text = "Infinite Store Announcement"
PopupText.TextColor3 = currentText1 or Color3.new(1, 1, 1)
PopupText.TextWrapped = true
Exit.Name = "Exit"
Exit.Parent = shadow
Exit.BackgroundTransparency = 1
Exit.Position = UDim2.new(1, -20, 0, 0)
Exit.Size = UDim2.new(0, 20, 0, 20)
Exit.Text = ""
Exit.ZIndex = 10
ExitImage.Parent = Exit
ExitImage.BackgroundColor3 = Color3.new(1, 1, 1)
ExitImage.BackgroundTransparency = 1
ExitImage.Position = UDim2.new(0, 5, 0, 5)
ExitImage.Size = UDim2.new(0, 10, 0, 10)
ExitImage.Image = "rbxassetid://5054663650"
ExitImage.ZIndex = 10
spawn(function()
wait(0.3)
AnnGUI:TweenPosition(UDim2.new(0.5, -180, 0, 10), "InOut", "Quart", 0.5, true, nil)
Exit.MouseButton1Click:Connect(function()
AnnGUI:TweenPosition(UDim2.new(0.5, -180, 0, -500), "InOut", "Quart", 0.5, true, nil)
wait(0.6)
AnnGUI:Destroy()
end)
end)
_UserSettings.Announcement = ann
UpdateSettings()
end
local InfStoreBtn = makeSettingsButton("Infinite Store", "rbxassetid://2161586955")
InfStoreBtn.Position = UDim2.new(0, 5, 0, 235)
InfStoreBtn.Size = UDim2.new(1, -10, 0, 25)
InfStoreBtn.Name = "InfStore"
InfStoreBtn.Parent = SettingsHolder
SettingsHolder.CanvasSize = UDim2.new(0, 0, 0, 265)
local ServerParent = nil
if not is_sirhurt_closure and (syn and syn.protect_gui) then
local Main = Instance.new("ScreenGui")
Main.Name = newRandomString()
syn.protect_gui(Main)
Main.Parent = CoreGui
ServerParent = Main
elseif get_hidden_gui or gethui then
local hiddenUI = get_hidden_gui or gethui
local Main = Instance.new("ScreenGui")
Main.Name = newRandomString()
Main.Parent = hiddenUI()
ServerParent = Main
elseif CoreGui:FindFirstChild("RobloxGui") then
ServerParent = CoreGui.RobloxGui
else
local Main = Instance.new("ScreenGui")
Main.Name = newRandomString()
Main.Parent = CoreGui
ServerParent = Main
end
if getgenv then
getgenv().InfiniteStore = ServerParent
else
_G.InfiniteStore = ServerParent
end
ServerParent.ResetOnSpawn = false
ServerParent.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
local dragGUI = function(gui)
task.spawn(function()
local dragging
local dragInput
local dragStart = Vector3.new(0, 0, 0)
local startPos
local update = function(input)
local delta = input.Position - dragStart
local Position =
UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y)
TweenService:Create(gui, TweenInfo.new(0.20), { Position = Position }):Play()
end
gui.InputBegan:Connect(function(input)
if
input.UserInputType == Enum.UserInputType.MouseButton1
or input.UserInputType == Enum.UserInputType.Touch
then
dragging = true
dragStart = input.Position
startPos = gui.Position
input.Changed:Connect(function()
if input.UserInputState == Enum.UserInputState.End then
dragging = false
end
end)
end
end)
gui.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 then
update(input)
end
end)
end)
end
local autoCanvas = function(scrollframe, layout)
if not scrollframe:IsA("ScrollingFrame") then
return error("Invalid argument #1 to 'autoCanvas' (expected ScrollingFrame)", 0)
end
if not (layout:IsA("UIListLayout") or layout:IsA("UIGridLayout") or layout:IsA("UIPageLayout")) then
return error("Invalid argument #2 to 'autoCanvas' (expected a UILayout)", 0)
end
scrollframe.CanvasSize = UDim2.new(0, 0, 0, layout.AbsoluteContentSize.Y)
layout:GetPropertyChangedSignal("AbsoluteContentSize"):Connect(function()
scrollframe.CanvasSize = UDim2.new(0, 0, 0, layout.AbsoluteContentSize.Y)
end)
end
local mainFrame = Instance.new("Frame")
dragGUI(mainFrame)
if _UserSettings.StartMinimized == true then
mainFrame.Visible = false
if _UserSettings.NoNotifications == false then
notify(
"Infinite Store",
"Start Minimized is turned on, Infinite Store can be opened inside of Infinite Yield's Settings."
)
end
else
mainFrame.Visible = true
if _UserSettings.NoNotifications == false then
notify("Infinite Store", "Start Minimized is turned off, this can be disabled in settings.")
end
end
local TopBar = Instance.new("Frame")
local Title = Instance.new("TextLabel")
local Close = Instance.new("TextButton")
local ImageLabel = Instance.new("ImageLabel")
local ListHolder = Instance.new("Frame")
local Home = Instance.new("Frame")
local Welcome = Instance.new("TextLabel")
local cart = Instance.new("ImageLabel")
local text = Instance.new("ImageLabel")
local Epik = Instance.new("Frame")
local Round = Instance.new("ImageLabel")
local Photo = Instance.new("ImageLabel")
local Name = Instance.new("TextLabel")
local Credit = Instance.new("TextLabel")
local Devs = Instance.new("Frame")
local Round_2 = Instance.new("ImageLabel")
local Photo_2 = Instance.new("ImageLabel")
local Name_2 = Instance.new("TextLabel")
local Credit_2 = Instance.new("TextLabel")
local Photo2 = Instance.new("ImageLabel")
local Name2 = Instance.new("TextLabel")
local Photo3 = Instance.new("ImageLabel")
local Name3 = Instance.new("TextLabel")
local List = Instance.new("Frame")
local List1 = Instance.new("TextLabel")
local List2 = Instance.new("TextLabel")
local List3 = Instance.new("TextLabel")
local List4 = Instance.new("TextLabel")
local Plugins = Instance.new("Frame")
local TopBarExample = Instance.new("Frame")
local _4Install = Instance.new("TextLabel")
local _3Created = Instance.new("TextLabel")
local _2Author = Instance.new("TextLabel")
local _1Name = Instance.new("TextLabel")
local UIListLayout = Instance.new("UIListLayout")
local List_2 = Instance.new("ScrollingFrame")
local UIGridLayout = Instance.new("UIGridLayout")
local Template = Instance.new("Frame")
local PluginName = Instance.new("TextLabel")
local InfoBtn = Instance.new("ImageButton")
local Author = Instance.new("TextLabel")
local UIListLayout_2 = Instance.new("UIListLayout")
local Created = Instance.new("TextLabel")
local Install = Instance.new("TextButton")
local SearchBar = Instance.new("Frame")
local Search = Instance.new("TextBox")
local Icon = Instance.new("ImageLabel")
local Settings = Instance.new("Frame")
local List_3 = Instance.new("ScrollingFrame")
local UIGridLayout_2 = Instance.new("UIGridLayout")
local Template_2 = Instance.new("Frame")
local Description = Instance.new("TextLabel")
local SettingName = Instance.new("TextLabel")
local CheckBox = Instance.new("Frame")
local Btn = Instance.new("ImageButton")
local Checked = Instance.new("Frame")
local SideBar = Instance.new("Frame")
local Holder = Instance.new("Frame")
local UIListLayout_3 = Instance.new("UIListLayout")
local Home_2 = Instance.new("TextButton")
local cs = Instance.new("BoolValue")
local Plugins_2 = Instance.new("TextButton")
local cs_2 = Instance.new("BoolValue")
local Settings_2 = Instance.new("TextButton")
local cs_3 = Instance.new("BoolValue")
local DiscordInvite = Instance.new("TextLabel")
local PluginInfo = Instance.new("Frame")
local PluginInfo_2 = Instance.new("Frame")
local InfoLabel = Instance.new("TextLabel")
local PluginName_2 = Instance.new("TextLabel")
local List_4 = Instance.new("ScrollingFrame")
local UIGridLayout_3 = Instance.new("UIGridLayout")
local Command = Instance.new("TextLabel")
mainFrame.Name = "mainFrame"
mainFrame.Parent = ServerParent
mainFrame.BackgroundColor3 = Color3.fromRGB(36, 36, 37)
mainFrame.BackgroundTransparency = 1.000
mainFrame.BorderColor3 = Color3.fromRGB(40, 40, 40)
mainFrame.BorderSizePixel = 0
mainFrame.Position = UDim2.new(0.5, -250, 0.5, -150)
mainFrame.Size = UDim2.new(0, 500, 0, 320)
mainFrame.ZIndex = 10
TopBar.Name = "TopBar"
TopBar.Parent = mainFrame
TopBar.BackgroundColor3 = Color3.fromRGB(46, 46, 47)
TopBar.BorderSizePixel = 0
TopBar.Size = UDim2.new(1, 0, 0, 20)
TopBar.ZIndex = 10
Title.Name = "Title"
Title.Parent = TopBar
Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Title.BackgroundTransparency = 1.000
Title.Position = UDim2.new(0.149999946, 0, 0, 0)
Title.Size = UDim2.new(0.850000083, 0, 0.949999988, 0)
Title.ZIndex = 10
Title.Font = Enum.Font.SourceSans
Title.Text = "Infinite Store"
Title.TextColor3 = Color3.fromRGB(255, 255, 255)
Title.TextSize = 14.000
Close.Name = "Close"
Close.Parent = TopBar
Close.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Close.BackgroundTransparency = 1.000
Close.Position = UDim2.new(1, -20, 0, 0)
Close.Size = UDim2.new(0, 20, 0, 20)
Close.ZIndex = 10
Close.Font = Enum.Font.SourceSans
Close.Text = ""
Close.TextColor3 = Color3.fromRGB(255, 255, 255)
Close.TextSize = 14.000
ImageLabel.Parent = Close
ImageLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
ImageLabel.BackgroundTransparency = 1.000
ImageLabel.Position = UDim2.new(0, 5, 0, 5)
ImageLabel.Size = UDim2.new(0, 10, 0, 10)
ImageLabel.ZIndex = 10
ImageLabel.Image = "rbxassetid://5054663650"
ListHolder.Name = "ListHolder"
ListHolder.Parent = mainFrame
ListHolder.BackgroundColor3 = Color3.fromRGB(36, 36, 37)
ListHolder.BorderSizePixel = 0
ListHolder.ClipsDescendants = true
ListHolder.Position = UDim2.new(0, 0, 0, 20)
ListHolder.Size = UDim2.new(1, 0, 0, 300)
ListHolder.ZIndex = 10
Home.Name = "Home"
Home.Parent = ListHolder
Home.BackgroundColor3 = Color3.fromRGB(36, 36, 37)
Home.BorderSizePixel = 0
Home.ClipsDescendants = true
Home.Position = UDim2.new(0, 75, 0, 0)
Home.Size = UDim2.new(0.850000024, 0, 0, 300)
Home.ZIndex = 15
Welcome.Name = "Welcome"
Welcome.Parent = Home
Welcome.BackgroundColor3 = Color3.fromRGB(42, 42, 42)
Welcome.BackgroundTransparency = 1.000
Welcome.BorderSizePixel = 0
Welcome.Position = UDim2.new(0.230750099, 0, 0.123333335, 0)
Welcome.Size = UDim2.new(0.534000397, 0, 0.203333333, 0)
Welcome.ZIndex = 51
Welcome.Font = Enum.Font.Gotham
Welcome.Text = "Welcome To"
Welcome.TextColor3 = Color3.fromRGB(206, 206, 206)
Welcome.TextSize = 30.000
Welcome.TextTransparency = 1.000
Welcome.TextWrapped = true
cart.Name = "cart"
cart.Parent = Home
cart.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
cart.BackgroundTransparency = 1.000
cart.Position = UDim2.new(-0.244705886, 0, -0.0500000007, 0)
cart.Size = UDim2.new(0, 208, 0, 208)
cart.ZIndex = 26
cart.Image = "http://www.roblox.com/asset/?id=7244695078"
text.Name = "text"
text.Parent = Home
text.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
text.BackgroundTransparency = 1.000
text.Position = UDim2.new(0.244705886, 0, -0.50999999, 0)
text.Size = UDim2.new(0, 208, 0, 208)
text.ZIndex = 27
text.Image = "http://www.roblox.com/asset/?id=6403436082"
Epik.Name = "Epik"
Epik.Parent = Home
Epik.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Epik.BackgroundTransparency = 1.000
Epik.Position = UDim2.new(0.0260000005, 0, 1.09000003, 0)
Epik.Size = UDim2.new(0, 104, 0, 141)
Epik.ZIndex = 100
Round.Name = "Round"
Round.Parent = Epik
Round.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Round.BackgroundTransparency = 1.000
Round.Size = UDim2.new(1.00000024, 0, 1.00000012, 0)
Round.ZIndex = 101
Round.Image = "rbxassetid://605740338"
Round.ImageColor3 = Color3.fromRGB(46, 46, 47)
Round.ScaleType = Enum.ScaleType.Slice
Round.SliceCenter = Rect.new(24, 24, 216, 216)
Photo.Name = "Photo"
Photo.Parent = Round
Photo.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Photo.BackgroundTransparency = 1.000
Photo.Size = UDim2.new(1, 0, 0.737588704, 0)
Photo.ZIndex = 102
Photo.Image = "http://www.roblox.com/asset/?id=7657546445"
Name.Name = "Name"
Name.Parent = Round
Name.BackgroundColor3 = Color3.fromRGB(42, 42, 42)
Name.BackgroundTransparency = 1.000
Name.BorderSizePixel = 0
Name.Position = UDim2.new(0, 0, 0.737588584, 0)
Name.Size = UDim2.new(1, 0, 0.262410909, 0)
Name.ZIndex = 100
Name.Font = Enum.Font.Gotham
Name.Text = "REDACTED"
Name.TextColor3 = Color3.fromRGB(206, 206, 206)
Name.TextSize = 25.000
Name.TextWrapped = true
Credit.Name = "Credit"
Credit.Parent = Round
Credit.BackgroundColor3 = Color3.fromRGB(42, 42, 42)
Credit.BackgroundTransparency = 1.000
Credit.BorderSizePixel = 0
Credit.Position = UDim2.new(0, 0, -0.14184396, 0)
Credit.Size = UDim2.new(1, 0, 0.141843975, 0)
Credit.ZIndex = 100
Credit.Font = Enum.Font.Gotham
Credit.Text = "Founded By"
Credit.TextColor3 = Color3.fromRGB(206, 206, 206)
Credit.TextSize = 15.000
Credit.TextWrapped = true
Devs.Name = "Devs"
Devs.Parent = Home
Devs.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Devs.BackgroundTransparency = 1.000
Devs.Position = UDim2.new(0.296000004, 0, 1.09000003, 0)
Devs.Size = UDim2.new(0, 286, 0, 141)
Devs.ZIndex = 100
Round_2.Name = "Round"
Round_2.Parent = Devs
Round_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Round_2.BackgroundTransparency = 1.000
Round_2.Size = UDim2.new(1.00000024, 0, 1.00000012, 0)
Round_2.ZIndex = 101
Round_2.Image = "rbxassetid://605740338"
Round_2.ImageColor3 = Color3.fromRGB(46, 46, 47)
Round_2.ScaleType = Enum.ScaleType.Slice
Round_2.SliceCenter = Rect.new(24, 24, 216, 216)
Photo_2.Name = "Photo"
Photo_2.Parent = Round_2
Photo_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Photo_2.BackgroundTransparency = 1.000
Photo_2.Position = UDim2.new(0, 0, 0.0443883538, 0)
Photo_2.Size = UDim2.new(0.331353962, 0, 0.672107756, 0)
Photo_2.ZIndex = 102
Photo_2.Image = "http://www.roblox.com/asset/?id=7657547318"
Name_2.Name = "Name"
Name_2.Parent = Round_2
Name_2.BackgroundColor3 = Color3.fromRGB(42, 42, 42)
Name_2.BackgroundTransparency = 1.000
Name_2.BorderSizePixel = 0
Name_2.Position = UDim2.new(0, 0, 0.716495931, 0)
Name_2.Size = UDim2.new(0.331353962, 0, 0.239114851, 0)
Name_2.ZIndex = 100
Name_2.Font = Enum.Font.Gotham
Name_2.Text = "Kaizer"
Name_2.TextColor3 = Color3.fromRGB(206, 206, 206)
Name_2.TextSize = 25.000
Name_2.TextWrapped = true
Credit_2.Name = "Credit"
Credit_2.Parent = Round_2
Credit_2.BackgroundColor3 = Color3.fromRGB(42, 42, 42)
Credit_2.BackgroundTransparency = 1.000
Credit_2.BorderSizePixel = 0
Credit_2.Position = UDim2.new(0, 0, -0.14184396, 0)
Credit_2.Size = UDim2.new(1, 0, 0.141843975, 0)
Credit_2.ZIndex = 100
Credit_2.Font = Enum.Font.Gotham
Credit_2.Text = "Developed By"
Credit_2.TextColor3 = Color3.fromRGB(206, 206, 206)
Credit_2.TextSize = 15.000
Credit_2.TextWrapped = true
Photo2.Name = "Photo2"
Photo2.Parent = Round_2
Photo2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Photo2.BackgroundTransparency = 1.000
Photo2.Position = UDim2.new(0.331353813, 0, 0.0443883538, 0)
Photo2.Size = UDim2.new(0.331353962, 0, 0.672107756, 0)
Photo2.ZIndex = 102
Photo2.Image = "http://www.roblox.com/asset/?id=7657548002"
Name2.Name = "Name2"
Name2.Parent = Round_2
Name2.BackgroundColor3 = Color3.fromRGB(42, 42, 42)
Name2.BackgroundTransparency = 1.000
Name2.BorderSizePixel = 0
Name2.Position = UDim2.new(0.331353813, 0, 0.716495931, 0)
Name2.Size = UDim2.new(0.331353962, 0, 0.239114851, 0)
Name2.ZIndex = 100
Name2.Font = Enum.Font.Gotham
Name2.Text = "Michael"
Name2.TextColor3 = Color3.fromRGB(206, 206, 206)
Name2.TextSize = 25.000
Name2.TextWrapped = true
Photo3.Name = "Photo3"
Photo3.Parent = Round_2
Photo3.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Photo3.BackgroundTransparency = 1.000
Photo3.Position = UDim2.new(0.662352085, 0, 0.0443883538, 0)
Photo3.Size = UDim2.new(0.331353962, 0, 0.672107756, 0)
Photo3.ZIndex = 102
Photo3.Image = "http://www.roblox.com/asset/?id=7672670653"
Name3.Name = "Name3"
Name3.Parent = Round_2
Name3.BackgroundColor3 = Color3.fromRGB(42, 42, 42)
Name3.BackgroundTransparency = 1.000
Name3.BorderSizePixel = 0
Name3.Position = UDim2.new(0.662352085, 0, 0.716495931, 0)
Name3.Size = UDim2.new(0.331353962, 0, 0.239114851, 0)
Name3.ZIndex = 100
Name3.Font = Enum.Font.Gotham
Name3.Text = "Toon"
Name3.TextColor3 = Color3.fromRGB(206, 206, 206)
Name3.TextSize = 25.000
Name3.TextWrapped = true
List.Name = "List"
List.Parent = Home
List.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
List.BackgroundTransparency = 1.000
List.Position = UDim2.new(0.41894114, 0, 0.0566666685, 0)
List.Size = UDim2.new(0, 429, 0, 181)
List.ZIndex = 100
List1.Name = "List1"
List1.Parent = List
List1.BackgroundColor3 = Color3.fromRGB(42, 42, 42)
List1.BackgroundTransparency = 1.000
List1.BorderSizePixel = 0
List1.Position = UDim2.new(0.051282052, 0, -0.000728037208, 0)
List1.Size = UDim2.new(1, 0, 0.148745388, 0)
List1.ZIndex = 100
List1.Font = Enum.Font.Gotham
List1.RichText = true
List1.Text = "• <b>Sick Plugins</b> For Infinite Yield"
List1.TextColor3 = Color3.fromRGB(206, 206, 206)
List1.TextSize = 15.000
List1.TextTransparency = 1.000
List1.TextWrapped = true
List1.TextXAlignment = Enum.TextXAlignment.Left
List2.Name = "List2"
List2.Parent = List
List2.BackgroundColor3 = Color3.fromRGB(42, 0, 0)
List2.BackgroundTransparency = 1.000
List2.BorderSizePixel = 0
List2.Position = UDim2.new(0.051282052, 0, 0.145765275, 0)
List2.Size = UDim2.new(1, 0, 0.148745388, 0)
List2.ZIndex = 100
List2.Font = Enum.Font.Gotham
List2.RichText = true
List2.Text = "• Absolutely <b>0</b> Bugs"
List2.TextColor3 = Color3.fromRGB(206, 206, 206)
List2.TextSize = 15.000
List2.TextTransparency = 1.000
List2.TextWrapped = true
List2.TextXAlignment = Enum.TextXAlignment.Left
List3.Name = "List3"
List3.Parent = List
List3.BackgroundColor3 = Color3.fromRGB(42, 42, 42)
List3.BackgroundTransparency = 1.000
List3.BorderColor3 = Color3.fromRGB(1, 12, 53)
List3.BorderSizePixel = 0
List3.Position = UDim2.new(0.051282052, 0, 0.292258769, 0)
List3.Size = UDim2.new(1, 0, 0.148745388, 0)
List3.ZIndex = 100
List3.Font = Enum.Font.Gotham
List3.RichText = true
List3.Text = "• Very *<b>In</b>*active Discord Server"
List3.TextColor3 = Color3.fromRGB(206, 206, 206)
List3.TextSize = 15.000
List3.TextTransparency = 1.000
List3.TextWrapped = true
List3.TextXAlignment = Enum.TextXAlignment.Left
List4.Name = "List4"
List4.Parent = List
List4.BackgroundColor3 = Color3.fromRGB(7, 42, 38)
List4.BackgroundTransparency = 1.000
List4.BorderSizePixel = 0
List4.Position = UDim2.new(0.0510000661, 0, 0.439073265, 0)
List4.Size = UDim2.new(1, 0, 0.148745388, 0)
List4.ZIndex = 100
List4.Font = Enum.Font.Gotham
List4.RichText = true
List4.Text = "• <b>Sexy</b> Interfaces"
List4.TextColor3 = Color3.fromRGB(206, 206, 206)
List4.TextSize = 15.000
List4.TextTransparency = 1.000
List4.TextWrapped = true
List4.TextXAlignment = Enum.TextXAlignment.Left
Plugins.Name = "Plugins"
Plugins.Parent = ListHolder
Plugins.BackgroundColor3 = Color3.fromRGB(36, 36, 37)
Plugins.BorderSizePixel = 0
Plugins.ClipsDescendants = true
Plugins.Position = UDim2.new(0, -350, 0, 0)
Plugins.Size = UDim2.new(0.850000024, 0, 0, 300)
Plugins.Visible = false
Plugins.ZIndex = 10
TopBarExample.Name = "TopBarExample"
TopBarExample.Parent = Plugins
TopBarExample.BackgroundColor3 = Color3.fromRGB(22, 22, 22)
TopBarExample.BorderSizePixel = 0
TopBarExample.ClipsDescendants = true
TopBarExample.Position = UDim2.new(0, 0, 0.115000002, 0)
TopBarExample.Size = UDim2.new(0, 425, 0, 15)