-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathrodus
508 lines (467 loc) · 18.2 KB
/
rodus
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
function CreateMain(title)
local destroyIfExist = game.CoreGui:GetChildren()
for index, destroyIfExist in pairs(destroyIfExist) do
if destroyIfExist.Name == title then
print("Destroyed "..tostring(title)..": Already existed")
destroyIfExist:Destroy()
end
end
local Rodus = Instance.new("ScreenGui")
local Top = Instance.new("Frame")
local Title = Instance.new("TextLabel")
local Container = Instance.new("Frame")
local UIListLayout = Instance.new("UIListLayout")
local Minimize = Instance.new("TextButton")
Rodus.Name = tostring(title)
Rodus.Parent = game:WaitForChild("CoreGui")
Rodus.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
Top.Name = "Top"
Top.Parent = Rodus
Top.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
Top.BackgroundTransparency = 0.500
Top.BorderColor3 = Color3.fromRGB(0, 0, 0)
Top.BorderSizePixel = 4
Top.Position = UDim2.new(0, 15, 0, 15)
Top.Size = UDim2.new(0, 193, 0, 27)
Title.Name = "Title"
Title.Parent = Top
Title.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
Title.BackgroundTransparency = 0.350
Title.BorderSizePixel = 0
Title.Size = UDim2.new(0, 193, 0, 27)
Title.Font = Enum.Font.JosefinSans
Title.Text = " "..title
Title.TextColor3 = Color3.fromRGB(0, 255, 0)
Title.TextSize = 14.000
Title.TextXAlignment = Enum.TextXAlignment.Left
Container.Name = "Container"
Container.Parent = Top
Container.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
Container.BackgroundTransparency = 0.500
Container.BorderColor3 = Color3.fromRGB(0, 0, 0)
Container.BorderSizePixel = 4
Container.Position = UDim2.new(0, 0, 1.29629624, 0)
Container.Size = UDim2.new(0, 193, 0, 24)
UIListLayout.Parent = Container
UIListLayout.SortOrder = Enum.SortOrder.LayoutOrder
Minimize.Name = "Minimize"
Minimize.Parent = Top
Minimize.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Minimize.BackgroundTransparency = 1.000
Minimize.Position = UDim2.new(0.906735778, 0, 0.185185179, 0)
Minimize.Size = UDim2.new(0, 18, 0, 17)
Minimize.Font = Enum.Font.SourceSans
Minimize.Text = "-"
Minimize.TextColor3 = Color3.fromRGB(255, 255, 255)
Minimize.TextSize = 14.000
tog_gled = false
Minimize.MouseButton1Down:Connect(function()
tog_gled = not tog_gled
if tog_gled then Minimize.Text = "+" Container.Visible = false else Minimize.Text = "-" Container.Visible = true end
end)
function onKeyPress(inputObject, gameProcessedEvent)
if inputObject.KeyCode == Enum.KeyCode.RightControl then
if game.CoreGui[title].Top.Visible == false then game.CoreGui[title].Top.Visible = true
else game.CoreGui[title].Top.Visible = false end
end
end
game:GetService("UserInputService").InputBegan:connect(onKeyPress)
function CreateTab(text)
local Tab = Instance.new("TextButton")
local Arrow = Instance.new("TextLabel")
Tab.Name = text
Tab.Parent = Container
Tab.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
Tab.BackgroundTransparency = 1.000
Tab.Size = UDim2.new(0, 193, 0, 24)
Tab.Font = Enum.Font.JosefinSans
Tab.Text = " "..text
Tab.TextColor3 = Color3.fromRGB(255, 255, 255)
Tab.TextSize = 14.000
Tab.TextXAlignment = Enum.TextXAlignment.Left
Arrow.Name = "Arrow"
Arrow.Parent = Tab
Arrow.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Arrow.BackgroundTransparency = 1.000
Arrow.Position = UDim2.new(0.907, 0, 0, 0)
Arrow.Size = UDim2.new(0, 18, 0, 21)
Arrow.Font = Enum.Font.SourceSans
Arrow.Text = ">>"
Arrow.TextColor3 = Color3.fromRGB(255, 255, 255)
Arrow.TextScaled = true
Arrow.TextSize = 14.000
Arrow.TextWrapped = true
Container.Size = UDim2.new(0, UIListLayout.AbsoluteContentSize.X, 0, UIListLayout.AbsoluteContentSize.Y)
local TabContainer = Instance.new("Frame")
TabContainer.Name = "TabContainer"
TabContainer.Parent = Tab
TabContainer.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
TabContainer.BackgroundTransparency = 0.500
TabContainer.BorderColor3 = Color3.fromRGB(0, 0, 0)
TabContainer.BorderSizePixel = 4
TabContainer.Position = UDim2.new(1.0569948, 0, 0, 0)
TabContainer.Visible = false
Tab.MouseButton1Down:Connect(function()
if TabContainer.Visible == false then
local allTabs = TabContainer.Parent.Parent:GetDescendants()
for index, allTabs in pairs(allTabs) do
if allTabs.Name == "TabContainer" then
allTabs.Visible = false
allTabs.Parent.TextColor3 = Color3.new(255, 255, 255)
allTabs.Parent.Arrow.TextColor3 = Color3.new(255, 255, 255)
end
end
TabContainer.Visible = true
Tab.TextColor3 = Color3.new(0, 255, 0)
Tab.Arrow.TextColor3 = Color3.new(0, 255, 0)
else
TabContainer.Visible = false
Tab.TextColor3 = Color3.new(255, 255, 255)
Tab.Arrow.TextColor3 = Color3.new(255, 255, 255)
end
end)
local UIListLayout2 = Instance.new("UIListLayout")
UIListLayout2.Parent = TabContainer
UIListLayout2.SortOrder = Enum.SortOrder.LayoutOrder
function CreateButton(parent, buttonText, note, callback)
local Button = Instance.new("TextButton")
local Note = Instance.new("TextLabel")
Button.Name = buttonText
Button.Parent = parent.TabContainer
Button.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
Button.BackgroundTransparency = 1.000
Button.Size = UDim2.new(0, 193, 0, 24)
Button.Font = Enum.Font.JosefinSans
Button.Text = " "..buttonText
Button.TextColor3 = Color3.fromRGB(255, 255, 255)
Button.TextSize = 14.000
Button.TextXAlignment = Enum.TextXAlignment.Left
Button.MouseEnter:Connect(function()
Button.Note.Visible = true
end)
Button.MouseLeave:Connect(function()
Button.Note.Visible = false
end)
Button.MouseButton1Down:Connect(function()
Button.TextColor3 = Color3.new(0, 255, 0)
wait(0.05)
Button.TextColor3 = Color3.new(255, 255, 255)
pcall(callback)
end)
Note.Name = "Note"
Note.Parent = Button
Note.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Note.BackgroundTransparency = 1.000
Note.Position = UDim2.new(1.04145074, 0, 0, 0)
Note.Size = UDim2.new(0, 193, 0, 24)
Note.Font = Enum.Font.JosefinSans
Note.Text = note
Note.TextColor3 = Color3.fromRGB(0, 255, 0)
Note.TextSize = 14.000
Note.TextXAlignment = Enum.TextXAlignment.Left
Note.Visible = false
parent.TabContainer.Size = UDim2.new(0, parent.TabContainer.UIListLayout.AbsoluteContentSize.X, 0, parent.TabContainer.UIListLayout.AbsoluteContentSize.Y)
end
function CreateLabel(parent, labelText, color3)
local Label = Instance.new("TextLabel")
Label.Name = labelText
Label.Parent = parent.TabContainer
Label.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
Label.BackgroundTransparency = 1.000
Label.Size = UDim2.new(0, 193, 0, 24)
Label.Font = Enum.Font.JosefinSans
Label.Text = " "..labelText
Label.TextColor3 = color3
Label.TextSize = 14.000
Label.TextXAlignment = Enum.TextXAlignment.Left
parent.TabContainer.Size = UDim2.new(0, parent.TabContainer.UIListLayout.AbsoluteContentSize.X, 0, parent.TabContainer.UIListLayout.AbsoluteContentSize.Y)
end
function CreateToggle(parent, buttonText, note, callback)
local Button = Instance.new("TextButton")
local Note = Instance.new("TextLabel")
local Toggle = Instance.new("BoolValue")
Button.Name = buttonText
Button.Parent = parent.TabContainer
Toggle.Parent = Button
Toggle.Name = "Toggled"
Toggle.Value = false
Button.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
Button.BackgroundTransparency = 1.000
Button.Size = UDim2.new(0, 193, 0, 24)
Button.Font = Enum.Font.JosefinSans
Button.Text = " "..buttonText
Button.TextColor3 = Color3.fromRGB(255, 255, 255)
Button.TextSize = 14.000
Button.TextXAlignment = Enum.TextXAlignment.Left
Button.MouseEnter:Connect(function()
Button.Note.Visible = true
end)
Button.MouseLeave:Connect(function()
Button.Note.Visible = false
end)
Button.MouseButton1Down:Connect(function()
Toggle.Value = not Toggle.Value
toggled = Toggle.Value
if Button.TextColor3 == Color3.new(0, 255, 0) then
Button.TextColor3 = Color3.new(255, 255, 255)
else Button.TextColor3 = Color3.new(0, 255, 0)
end
pcall(callback)
end)
Note.Name = "Note"
Note.Parent = Button
Note.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Note.BackgroundTransparency = 1.000
Note.Position = UDim2.new(1.04145074, 0, 0, 0)
Note.Size = UDim2.new(0, 193, 0, 24)
Note.Font = Enum.Font.JosefinSans
Note.Text = note
Note.TextColor3 = Color3.fromRGB(0, 255, 0)
Note.TextSize = 14.000
Note.TextXAlignment = Enum.TextXAlignment.Left
Note.Visible = false
parent.TabContainer.Size = UDim2.new(0, parent.TabContainer.UIListLayout.AbsoluteContentSize.X, 0, parent.TabContainer.UIListLayout.AbsoluteContentSize.Y)
end
function CreateSideDropButton(parent, dropText, list, callback)
local SideDrop = Instance.new("TextButton")
local Arrow = Instance.new("TextButton")
local DropContainer = Instance.new("Frame")
local UIListLayout = Instance.new("UIListLayout")
SideDrop.Name = dropText
SideDrop.Parent = parent.TabContainer
SideDrop.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
SideDrop.BackgroundTransparency = 1.000
SideDrop.Size = UDim2.new(0, 193, 0, 24)
SideDrop.Font = Enum.Font.JosefinSans
SideDrop.Text = " "..dropText
SideDrop.TextColor3 = Color3.fromRGB(255, 255, 255)
SideDrop.TextSize = 14.000
SideDrop.TextXAlignment = Enum.TextXAlignment.Left
SideDrop.MouseButton1Down:Connect(function()
if SideDrop.TextColor3 == Color3.new(0, 255, 0) then
SideDrop.TextColor3 = Color3.new(255, 255, 255)
SideDrop.Arrow.TextColor3 = Color3.new(255, 255, 255)
DropContainer.Visible = false
else
local allTabs = game.CoreGui[title].Top.Container:GetDescendants()
for index, allTabs in pairs(allTabs) do
if allTabs.Name == "DropContainer" then
allTabs.Visible = false
allTabs.Parent.TextColor3 = Color3.new(255, 255, 255)
allTabs.Parent.Arrow.TextColor3 = Color3.new(255, 255, 255)
end
end
SideDrop.TextColor3 = Color3.new(0, 255, 0)
SideDrop.Arrow.TextColor3 = Color3.new(0, 255, 0)
DropContainer.Visible = true
end
end)
Arrow.Name = "Arrow"
Arrow.Parent = SideDrop
Arrow.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Arrow.BackgroundTransparency = 1.000
Arrow.Position = UDim2.new(0.906735778, 0, 0, 0)
Arrow.Size = UDim2.new(0, 18, 0, 21)
Arrow.Font = Enum.Font.SourceSans
Arrow.Text = ">>"
Arrow.TextColor3 = Color3.fromRGB(255, 255, 255)
Arrow.TextScaled = true
Arrow.TextSize = 14.000
Arrow.TextWrapped = true
DropContainer.Name = "DropContainer"
DropContainer.Parent = SideDrop
DropContainer.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
DropContainer.BackgroundTransparency = 0.500
DropContainer.BorderColor3 = Color3.fromRGB(0, 0, 0)
DropContainer.BorderSizePixel = 4
DropContainer.Position = UDim2.new(1.08290148, 0, 0, 0)
DropContainer.Size = UDim2.new(0, 193, 0, 72)
DropContainer.Visible = false
UIListLayout.Parent = DropContainer
UIListLayout.SortOrder = Enum.SortOrder.LayoutOrder
for i,v in next, list do
local Button = Instance.new("TextButton")
Button.Name = v
Button.Parent = SideDrop.DropContainer
Button.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
Button.BackgroundTransparency = 1.000
Button.Size = UDim2.new(0, 193, 0, 24)
Button.Font = Enum.Font.JosefinSans
Button.Text = " "..v
Button.TextColor3 = Color3.fromRGB(255, 255, 255)
Button.TextSize = 14.000
Button.TextXAlignment = Enum.TextXAlignment.Left
Button.MouseButton1Down:Connect(function()
Button.TextColor3 = Color3.new(0, 255, 0)
wait(0.05)
Button.TextColor3 = Color3.new(255, 255, 255)
callback(v)
end)
DropContainer.Size = UDim2.new(0, DropContainer.UIListLayout.AbsoluteContentSize.X, 0, DropContainer.UIListLayout.AbsoluteContentSize.Y)
parent.TabContainer.Size = UDim2.new(0, parent.TabContainer.UIListLayout.AbsoluteContentSize.X, 0, parent.TabContainer.UIListLayout.AbsoluteContentSize.Y)
end
end
function CreateSideDropToggle(parent, dropText, list, callback)
local SideDrop = Instance.new("TextButton")
local Arrow = Instance.new("TextButton")
local DropContainer = Instance.new("Frame")
local UIListLayout = Instance.new("UIListLayout")
SideDrop.Name = dropText
SideDrop.Parent = parent.TabContainer
SideDrop.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
SideDrop.BackgroundTransparency = 1.000
SideDrop.Size = UDim2.new(0, 193, 0, 24)
SideDrop.Font = Enum.Font.JosefinSans
SideDrop.Text = " "..dropText
SideDrop.TextColor3 = Color3.fromRGB(255, 255, 255)
SideDrop.TextSize = 14.000
SideDrop.TextXAlignment = Enum.TextXAlignment.Left
SideDrop.MouseButton1Down:Connect(function()
if SideDrop.TextColor3 == Color3.new(0, 255, 0) then
SideDrop.TextColor3 = Color3.new(255, 255, 255)
SideDrop.Arrow.TextColor3 = Color3.new(255, 255, 255)
DropContainer.Visible = false
else
local allTabs = game.CoreGui[title].Top.Container:GetDescendants()
for index, allTabs in pairs(allTabs) do
if allTabs.Name == "DropContainer" then
allTabs.Visible = false
allTabs.Parent.TextColor3 = Color3.new(255, 255, 255)
allTabs.Parent.Arrow.TextColor3 = Color3.new(255, 255, 255)
end
end
SideDrop.TextColor3 = Color3.new(0, 255, 0)
SideDrop.Arrow.TextColor3 = Color3.new(0, 255, 0)
DropContainer.Visible = true
end
end)
Arrow.Name = "Arrow"
Arrow.Parent = SideDrop
Arrow.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Arrow.BackgroundTransparency = 1.000
Arrow.Position = UDim2.new(0.906735778, 0, 0, 0)
Arrow.Size = UDim2.new(0, 18, 0, 21)
Arrow.Font = Enum.Font.SourceSans
Arrow.Text = ">>"
Arrow.TextColor3 = Color3.fromRGB(255, 255, 255)
Arrow.TextScaled = true
Arrow.TextSize = 14.000
Arrow.TextWrapped = true
DropContainer.Name = "DropContainer"
DropContainer.Parent = SideDrop
DropContainer.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
DropContainer.BackgroundTransparency = 0.500
DropContainer.BorderColor3 = Color3.fromRGB(0, 0, 0)
DropContainer.BorderSizePixel = 4
DropContainer.Position = UDim2.new(1.08290148, 0, 0, 0)
DropContainer.Size = UDim2.new(0, 193, 0, 72)
DropContainer.Visible = false
UIListLayout.Parent = DropContainer
UIListLayout.SortOrder = Enum.SortOrder.LayoutOrder
for i,v in next, list do
local Button = Instance.new("TextButton")
Button.Name = v
Button.Parent = SideDrop.DropContainer
Button.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
Button.BackgroundTransparency = 1.000
Button.Size = UDim2.new(0, 193, 0, 24)
Button.Font = Enum.Font.JosefinSans
Button.Text = " "..v
Button.TextColor3 = Color3.fromRGB(255, 255, 255)
Button.TextSize = 14.000
Button.TextXAlignment = Enum.TextXAlignment.Left
Button.MouseButton1Down:Connect(function()
if Button.TextColor3 == Color3.new(0, 255, 0) then
Button.TextColor3 = Color3.new(255, 255, 255)
else Button.TextColor3 = Color3.new(0, 255, 0) end
callback(v)
end)
DropContainer.Size = UDim2.new(0, DropContainer.UIListLayout.AbsoluteContentSize.X, 0, DropContainer.UIListLayout.AbsoluteContentSize.Y)
parent.TabContainer.Size = UDim2.new(0, parent.TabContainer.UIListLayout.AbsoluteContentSize.X, 0, parent.TabContainer.UIListLayout.AbsoluteContentSize.Y)
end
end
function CreateTextBox(parent, buttonText, placeholderText, callback)
local TextBox = Instance.new("TextButton")
local Arrow = Instance.new("TextButton")
local Side = Instance.new("Frame")
local UIListLayout = Instance.new("UIListLayout")
local Box = Instance.new("TextBox")
local Hover = Instance.new("Frame")
TextBox.Name = buttonText
TextBox.Parent = parent.TabContainer
TextBox.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
TextBox.BackgroundTransparency = 1.000
TextBox.Size = UDim2.new(0, 193, 0, 24)
TextBox.Font = Enum.Font.JosefinSans
TextBox.Text = " "..buttonText
TextBox.TextColor3 = Color3.fromRGB(255, 255, 255)
TextBox.TextSize = 14.000
TextBox.TextXAlignment = Enum.TextXAlignment.Left
TextBox.MouseButton1Down:Connect(function()
TextBox.TextColor3 = Color3.new(0, 255, 0)
wait(0.05)
TextBox.TextColor3 = Color3.new(255, 255, 255)
callback(Box.Text)
end)
Arrow.Name = "Arrow"
Arrow.Parent = TextBox
Arrow.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Arrow.BackgroundTransparency = 1.000
Arrow.Position = UDim2.new(0.906735778, 0, 0, 0)
Arrow.Size = UDim2.new(0, 18, 0, 21)
Arrow.Font = Enum.Font.SourceSans
Arrow.Text = ">>"
Arrow.TextColor3 = Color3.fromRGB(255, 255, 255)
Arrow.TextScaled = true
Arrow.TextSize = 14.000
Arrow.TextWrapped = true
Side.Name = "Side"
Side.Parent = TextBox
Side.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
Side.BackgroundTransparency = 0.500
Side.BorderColor3 = Color3.fromRGB(0, 0, 0)
Side.BorderSizePixel = 4
Side.Position = UDim2.new(1.08290148, 0, 0, 0)
Side.Size = UDim2.new(0, 193, 0, 24)
Side.Visible = false
Side.MouseEnter:Connect(function()
Side.Visible = true
end)
Side.MouseLeave:Connect(function()
Side.Visible = false
end)
Hover.Name = "Hover"
Hover.Parent = TextBox
Hover.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Hover.BackgroundTransparency = 1.000
Hover.Size = UDim2.new(0, 209, 0, 32)
Hover.MouseEnter:Connect(function()
local allTabs = game.CoreGui[tostring(title)].Top.Container:GetDescendants()
for index, allTabs in pairs(allTabs) do
if allTabs.Name == "Side" then
allTabs.Visible = false
end
end
Side.Visible = true
end)
Side.MouseLeave:Connect(function()
Side.Visible = false
end)
UIListLayout.Parent = Side
UIListLayout.SortOrder = Enum.SortOrder.LayoutOrder
Box.Name = "Box"
Box.Parent = Side
Box.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Box.BackgroundTransparency = 1.000
Box.Size = UDim2.new(0, 193, 0, 24)
Box.Font = Enum.Font.JosefinSans
Box.Text = ""
Box.TextColor3 = Color3.fromRGB(255, 255, 255)
Box.TextSize = 14.000
Box.TextWrapped = true
Box.PlaceholderText = placeholderText
parent.TabContainer.Size = UDim2.new(0, parent.TabContainer.UIListLayout.AbsoluteContentSize.X, 0, parent.TabContainer.UIListLayout.AbsoluteContentSize.Y)
end
end
tabs = game.CoreGui[title].Top.Container
end