R

KubiX

public
rrixh Aug 01, 2024 Never 35
Clone
Plaintext kubiX.docx 1122 lines (969 loc) | 40.08 KB
1
local function Lulas(txt, dur)
2
local plr = game.Players.LocalPlayer.DisplayName
3
local TweenService = game:GetService("TweenService")
4
5
local GUI = Instance.new("ScreenGui")
6
GUI.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
7
8
local MainFrame = Instance.new("Frame")
9
MainFrame.Size = UDim2.new(0, 200, 0, 60)
10
MainFrame.Position = UDim2.new(0, -200, 0.95, -60) -- Start off-screen
11
MainFrame.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
12
MainFrame.Parent = GUI
13
14
local MainFrameCorner = Instance.new("UICorner")
15
MainFrameCorner.CornerRadius = UDim.new(0, 10)
16
MainFrameCorner.Parent = MainFrame
17
18
local NotificationFrame = Instance.new("Frame")
19
NotificationFrame.Size = UDim2.new(0.9, 0, 0.8, 0)
20
NotificationFrame.Position = UDim2.new(0.05, 0, 0.1, 0)
21
NotificationFrame.BackgroundColor3 = Color3.fromRGB(50, 50, 50) -- Dark gray
22
NotificationFrame.Parent = MainFrame
23
24
local NotificationFrameCorner = Instance.new("UICorner")
25
NotificationFrameCorner.CornerRadius = UDim.new(0, 10)
26
NotificationFrameCorner.Parent = NotificationFrame
27
28
local TextLabel = Instance.new("TextLabel")
29
TextLabel.Size = UDim2.new(0.9, 0, 0.7, 0)
30
TextLabel.Position = UDim2.new(0.05, 0, 0.15, 0)
31
TextLabel.BackgroundTransparency = 1
32
TextLabel.TextColor3 = Color3.fromRGB(255, 165, 0) -- Orange
33
TextLabel.TextScaled = true
34
TextLabel.TextXAlignment = Enum.TextXAlignment.Left
35
TextLabel.TextYAlignment = Enum.TextYAlignment.Top
36
TextLabel.Text = txt
37
TextLabel.Parent = NotificationFrame
38
39
local ProgressBar = Instance.new("Frame")
40
ProgressBar.Size = UDim2.new(0.9, 0, 0.1, 0)
41
ProgressBar.Position = UDim2.new(0.05, 0, 0.85, 0)
42
ProgressBar.BackgroundColor3 = Color3.fromRGB(100, 100, 100)
43
ProgressBar.Parent = NotificationFrame
44
45
local ProgressBarFill = Instance.new("Frame")
46
ProgressBarFill.Size = UDim2.new(1, 0, 1, 0)
47
ProgressBarFill.BackgroundColor3 = Color3.fromRGB(255, 165, 0) -- Orange
48
ProgressBarFill.Parent = ProgressBar
49
50
local function showNotif()
51
local tweenInfo = TweenInfo.new(0.5, Enum.EasingStyle.Quad, Enum.EasingDirection.Out)
52
local endPosition = UDim2.new(0.01, 0, 0.95, -60)
53
local tweenShow = TweenService:Create(MainFrame, tweenInfo, { Position = endPosition })
54
tweenShow:Play()
55
56
local kountdown = dur
57
local startTime = tick()
58
59
while tick() - startTime < kountdown do
60
local elapsedTime = tick() - startTime
61
local progress = 1 - (elapsedTime / kountdown)
62
ProgressBarFill:TweenSize(UDim2.new(progress, 0, 1, 0), Enum.EasingDirection.Out, Enum.EasingStyle.Linear, 0.1, true)
63
task.wait()
64
end
65
66
local tweenHideInfo = TweenInfo.new(0.5, Enum.EasingStyle.Quad, Enum.EasingDirection.In)
67
local endHidePosition = UDim2.new(-1, 0, 0.95, -60)
68
local tweenHide = TweenService:Create(MainFrame, tweenHideInfo, { Position = endHidePosition })
69
tweenHide:Play()
70
tweenHide.Completed:Wait()
71
GUI:Destroy()
72
end
73
74
showNotif()
75
end
76
Lulas("Welkome faggot. KubiX Executor Loading...👺", 4);
77
local CubiX = Instance.new("ScreenGui")
78
local Open = Instance.new("ImageButton")
79
local UICorner = Instance.new("UICorner")
80
local DarkBG = Instance.new("Frame")
81
local Tabs = Instance.new("Frame")
82
local UICorner_2 = Instance.new("UICorner")
83
local Avatar = Instance.new("ImageLabel")
84
local UICorner_3 = Instance.new("UICorner")
85
local HomeDisplay = Instance.new("Frame")
86
local UICorner_4 = Instance.new("UICorner")
87
local HomeIconBTN = Instance.new("ImageButton")
88
local HomeTab = Instance.new("Frame")
89
local UICorner_5 = Instance.new("UICorner")
90
local CheckOut = Instance.new("TextLabel")
91
local ChangeLogsBG = Instance.new("Frame")
92
local UICorner_6 = Instance.new("UICorner")
93
local TitleChangeLogs = Instance.new("TextLabel")
94
local BGX = Instance.new("Frame")
95
local UICorner_7 = Instance.new("UICorner")
96
local xx = Instance.new("TextLabel")
97
local xx_2 = Instance.new("TextLabel")
98
local xx_3 = Instance.new("TextLabel")
99
local xx_4 = Instance.new("TextLabel")
100
local xx_5 = Instance.new("TextLabel")
101
local Avatar_2 = Instance.new("Frame")
102
local UICorner_8 = Instance.new("UICorner")
103
local UserAvatar = Instance.new("ImageLabel")
104
local UserName = Instance.new("TextLabel")
105
local CloseDisplay = Instance.new("Frame")
106
local UICorner_9 = Instance.new("UICorner")
107
local CloseBTN = Instance.new("TextButton")
108
local CodeDisplay = Instance.new("Frame")
109
local UICorner_10 = Instance.new("UICorner")
110
local CodeIconBTN = Instance.new("ImageButton")
111
local CodeTab = Instance.new("Frame")
112
local UICorner_11 = Instance.new("UICorner")
113
local TitleCode = Instance.new("TextLabel")
114
local Display = Instance.new("Frame")
115
local UICorner_12 = Instance.new("UICorner")
116
local ScrollingFrame = Instance.new("ScrollingFrame")
117
local TextBox = Instance.new("TextBox")
118
local ClearDisplay = Instance.new("Frame")
119
local UICorner_13 = Instance.new("UICorner")
120
local ClearBTN = Instance.new("TextButton")
121
local CopyDisplay = Instance.new("Frame")
122
local UICorner_14 = Instance.new("UICorner")
123
local CopyBTN = Instance.new("TextButton")
124
local PasteDisplay = Instance.new("Frame")
125
local UICorner_15 = Instance.new("UICorner")
126
local PasteBTN = Instance.new("TextButton")
127
local ExecDisplay = Instance.new("Frame")
128
local UICorner_16 = Instance.new("UICorner")
129
local ExecBTN = Instance.new("TextButton")
130
local SettingsDisplay = Instance.new("Frame")
131
local UICorner_17 = Instance.new("UICorner")
132
local SettingsIconBTN = Instance.new("ImageButton")
133
local SettingsTab = Instance.new("Frame")
134
local UICorner_18 = Instance.new("UICorner")
135
local FPSBG = Instance.new("Frame")
136
local UICorner_19 = Instance.new("UICorner")
137
local FPSTitle = Instance.new("TextLabel")
138
local ToggleFramePS = Instance.new("Frame")
139
local FPSBTN = Instance.new("TextButton")
140
local UICorner_20 = Instance.new("UICorner")
141
local ScriptHubDisplay = Instance.new("Frame")
142
local UICorner_21 = Instance.new("UICorner")
143
local ScriptHubIconBTN = Instance.new("ImageButton")
144
local ScriptHubTab = Instance.new("Frame")
145
local UICorner_22 = Instance.new("UICorner")
146
local TitleScriptHub = Instance.new("TextLabel")
147
local ScrollingFrame_2 = Instance.new("ScrollingFrame")
148
local SpeedHubX = Instance.new("ImageLabel")
149
local UICorner_23 = Instance.new("UICorner")
150
local ExecuteSPHX = Instance.new("TextButton")
151
local UICorner_24 = Instance.new("UICorner")
152
local IY = Instance.new("ImageLabel")
153
local UICorner_25 = Instance.new("UICorner")
154
local ExecuteIY = Instance.new("TextButton")
155
local UICorner_26 = Instance.new("UICorner")
156
local ZekromHubX = Instance.new("ImageLabel")
157
local UICorner_27 = Instance.new("UICorner")
158
local ExecuteZekroV2 = Instance.new("TextButton")
159
local UICorner_28 = Instance.new("UICorner")
160
161
-- Properties:
162
163
CubiX.Name = "CubiX"
164
CubiX.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
165
CubiX.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
166
CubiX.ResetOnSpawn = false
167
168
Open.Name = "Open"
169
Open.Parent = CubiX
170
Open.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
171
Open.BorderColor3 = Color3.fromRGB(0, 0, 0)
172
Open.BorderSizePixel = 0
173
Open.Position = UDim2.new(0.901421309, 0, 0.0284554306, 0)
174
Open.Size = UDim2.new(0, 46, 0, 46)
175
Open.Image = "rbxassetid://16163653051"
176
Open.ScaleType = Enum.ScaleType.Fit
177
178
UICorner.CornerRadius = UDim.new(0, 50)
179
UICorner.Parent = Open
180
181
DarkBG.Name = "Dark-BG"
182
DarkBG.Parent = CubiX
183
DarkBG.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
184
DarkBG.BackgroundTransparency = 0.500
185
DarkBG.BorderColor3 = Color3.fromRGB(0, 0, 0)
186
DarkBG.BorderSizePixel = 0
187
DarkBG.Size = UDim2.new(0, 1000, 0, 1000)
188
DarkBG.Visible = false
189
190
Tabs.Name = "Tabs"
191
Tabs.Parent = DarkBG
192
Tabs.BackgroundColor3 = Color3.fromRGB(8, 8, 8)
193
Tabs.BorderColor3 = Color3.fromRGB(0, 0, 0)
194
Tabs.BorderSizePixel = 0
195
Tabs.Position = UDim2.new(-0.0108301509, 0, 0, 0)
196
Tabs.Size = UDim2.new(0, 66, 0, 359)
197
198
UICorner_2.Parent = Tabs
199
200
Avatar.Name = "Avatar"
201
Avatar.Parent = Tabs
202
Avatar.BackgroundColor3 = Color3.fromRGB(7, 7, 7)
203
Avatar.BackgroundTransparency = 1.000
204
Avatar.BorderColor3 = Color3.fromRGB(0, 0, 0)
205
Avatar.BorderSizePixel = 0
206
Avatar.Position = UDim2.new(0.248527065, 0, 0.0260582827, 0)
207
Avatar.Size = UDim2.new(0, 41, 0, 42)
208
Avatar.Image = "rbxassetid://16163653051"
209
Avatar.ScaleType = Enum.ScaleType.Fit
210
211
UICorner_3.CornerRadius = UDim.new(0, 6)
212
UICorner_3.Parent = Avatar
213
214
HomeDisplay.Name = "Home-Display"
215
HomeDisplay.Parent = Tabs
216
HomeDisplay.BackgroundColor3 = Color3.fromRGB(16, 16, 16)
217
HomeDisplay.BorderColor3 = Color3.fromRGB(0, 0, 0)
218
HomeDisplay.BorderSizePixel = 0
219
HomeDisplay.Position = UDim2.new(0.310365498, 0, 0.201461628, 0)
220
HomeDisplay.Size = UDim2.new(0, 34, 0, 33)
221
222
UICorner_4.CornerRadius = UDim.new(0, 7)
223
UICorner_4.Parent = HomeDisplay
224
225
HomeIconBTN.Name = "Home-Icon-BTN"
226
HomeIconBTN.Parent = HomeDisplay
227
HomeIconBTN.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
228
HomeIconBTN.BackgroundTransparency = 1.000
229
HomeIconBTN.BorderColor3 = Color3.fromRGB(0, 0, 0)
230
HomeIconBTN.BorderSizePixel = 0
231
HomeIconBTN.Position = UDim2.new(0.0882352963, 0, 0.121212125, 0)
232
HomeIconBTN.Size = UDim2.new(0, 27, 0, 25)
233
HomeIconBTN.Image = "rbxassetid://7733960981"
234
HomeIconBTN.ScaleType = Enum.ScaleType.Fit
235
236
HomeTab.Name = "Home-Tab"
237
HomeTab.Parent = HomeIconBTN
238
HomeTab.BackgroundColor3 = Color3.fromRGB(8, 8, 8)
239
HomeTab.BorderColor3 = Color3.fromRGB(0, 0, 0)
240
HomeTab.BorderSizePixel = 0
241
HomeTab.Position = UDim2.new(2.00000072, 0, -2.75999928, 0)
242
HomeTab.Size = UDim2.new(0, 639, 0, 337)
243
244
UICorner_5.CornerRadius = UDim.new(0, 11)
245
UICorner_5.Parent = HomeTab
246
247
CheckOut.Name = "Check-Out"
248
CheckOut.Parent = HomeTab
249
CheckOut.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
250
CheckOut.BackgroundTransparency = 1.000
251
CheckOut.BorderColor3 = Color3.fromRGB(0, 0, 0)
252
CheckOut.BorderSizePixel = 0
253
CheckOut.Position = UDim2.new(0.024387056, 0, 0.278291702, 0)
254
CheckOut.Size = UDim2.new(0, 183, 0, 24)
255
CheckOut.Font = Enum.Font.GothamMedium
256
CheckOut.Text = "Check out what's new:"
257
CheckOut.TextColor3 = Color3.fromRGB(255, 255, 255)
258
CheckOut.TextScaled = true
259
CheckOut.TextSize = 20.000
260
CheckOut.TextWrapped = true
261
CheckOut.TextXAlignment = Enum.TextXAlignment.Left
262
263
ChangeLogsBG.Name = "Change-Logs BG"
264
ChangeLogsBG.Parent = HomeTab
265
ChangeLogsBG.BackgroundColor3 = Color3.fromRGB(15, 15, 15)
266
ChangeLogsBG.BorderColor3 = Color3.fromRGB(0, 0, 0)
267
ChangeLogsBG.BorderSizePixel = 0
268
ChangeLogsBG.Position = UDim2.new(0.673478127, 0, 0.126813218, 0)
269
ChangeLogsBG.Size = UDim2.new(0, 191, 0, 258)
270
271
UICorner_6.CornerRadius = UDim.new(0, 7)
272
UICorner_6.Parent = ChangeLogsBG
273
274
TitleChangeLogs.Name = "TitleChangeLogs"
275
TitleChangeLogs.Parent = ChangeLogsBG
276
TitleChangeLogs.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
277
TitleChangeLogs.BackgroundTransparency = 1.000
278
TitleChangeLogs.BorderColor3 = Color3.fromRGB(0, 0, 0)
279
TitleChangeLogs.BorderSizePixel = 0
280
TitleChangeLogs.Position = UDim2.new(0.034285713, 0, 0.0198954977, 0)
281
TitleChangeLogs.Size = UDim2.new(0, 110, 0, 24)
282
TitleChangeLogs.Font = Enum.Font.GothamMedium
283
TitleChangeLogs.Text = "Changelogs:"
284
TitleChangeLogs.TextColor3 = Color3.fromRGB(255, 255, 255)
285
TitleChangeLogs.TextSize = 18.000
286
TitleChangeLogs.TextXAlignment = Enum.TextXAlignment.Left
287
288
BGX.Name = "BGX"
289
BGX.Parent = ChangeLogsBG
290
BGX.BackgroundColor3 = Color3.fromRGB(8, 8, 8)
291
BGX.BorderColor3 = Color3.fromRGB(0, 0, 0)
292
BGX.BorderSizePixel = 0
293
BGX.Position = UDim2.new(0.0342854597, 0, 0.15789476, 0)
294
BGX.Size = UDim2.new(0, 175, 0, 208)
295
296
UICorner_7.CornerRadius = UDim.new(0, 6)
297
UICorner_7.Parent = BGX
298
299
xx.Name = "xx"
300
xx.Parent = BGX
301
xx.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
302
xx.BackgroundTransparency = 1.000
303
xx.BorderColor3 = Color3.fromRGB(0, 0, 0)
304
xx.BorderSizePixel = 0
305
xx.Position = UDim2.new(0.0432098769, 0, 0.0364963487, 0)
306
xx.Size = UDim2.new(0, 154, 0, 22)
307
xx.Font = Enum.Font.Gotham
308
xx.Text = "- Fixed Crashes & Bugs"
309
xx.TextColor3 = Color3.fromRGB(255, 255, 255)
310
xx.TextSize = 14.000
311
xx.TextWrapped = true
312
xx.TextXAlignment = Enum.TextXAlignment.Left
313
314
xx_2.Name = "xx"
315
xx_2.Parent = BGX
316
xx_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
317
xx_2.BackgroundTransparency = 1.000
318
xx_2.BorderColor3 = Color3.fromRGB(0, 0, 0)
319
xx_2.BorderSizePixel = 0
320
xx_2.Position = UDim2.new(0.0432098769, 0, 0.197080299, 0)
321
xx_2.Size = UDim2.new(0, 148, 0, 36)
322
xx_2.Font = Enum.Font.Gotham
323
xx_2.Text = "- Added Script Hub & Settings!"
324
xx_2.TextColor3 = Color3.fromRGB(255, 255, 255)
325
xx_2.TextSize = 14.000
326
xx_2.TextWrapped = true
327
xx_2.TextXAlignment = Enum.TextXAlignment.Left
328
329
xx_3.Name = "xx"
330
xx_3.Parent = BGX
331
xx_3.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
332
xx_3.BackgroundTransparency = 1.000
333
xx_3.BorderColor3 = Color3.fromRGB(0, 0, 0)
334
xx_3.BorderSizePixel = 0
335
xx_3.Position = UDim2.new(0.0432099849, 0, 0.373315513, 0)
336
xx_3.Size = UDim2.new(0, 148, 0, 21)
337
xx_3.Font = Enum.Font.Gotham
338
xx_3.Text = "- New User Interface"
339
xx_3.TextColor3 = Color3.fromRGB(255, 255, 255)
340
xx_3.TextSize = 14.000
341
xx_3.TextWrapped = true
342
xx_3.TextXAlignment = Enum.TextXAlignment.Left
343
344
xx_4.Name = "xx"
345
xx_4.Parent = BGX
346
xx_4.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
347
xx_4.BackgroundTransparency = 1.000
348
xx_4.BorderColor3 = Color3.fromRGB(0, 0, 0)
349
xx_4.BorderSizePixel = 0
350
xx_4.Position = UDim2.new(0.0432099849, 0, 0.444167644, 0)
351
xx_4.Size = UDim2.new(0, 148, 0, 36)
352
xx_4.Font = Enum.Font.Gotham
353
xx_4.Text = "- Updated to V1.2"
354
xx_4.TextColor3 = Color3.fromRGB(255, 255, 255)
355
xx_4.TextSize = 14.000
356
xx_4.TextWrapped = true
357
xx_4.TextXAlignment = Enum.TextXAlignment.Left
358
359
xx_5.Name = "xx"
360
xx_5.Parent = BGX
361
xx_5.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
362
xx_5.BackgroundTransparency = 1.000
363
xx_5.BorderColor3 = Color3.fromRGB(0, 0, 0)
364
xx_5.BorderSizePixel = 0
365
xx_5.Position = UDim2.new(0.0372576043, 0, 0.554744601, 0)
366
xx_5.Size = UDim2.new(0, 168, 0, 36)
367
xx_5.Font = Enum.Font.Gotham
368
xx_5.Text = "- Removed Dex Explorer"
369
xx_5.TextColor3 = Color3.fromRGB(255, 255, 255)
370
xx_5.TextSize = 14.000
371
xx_5.TextWrapped = true
372
xx_5.TextXAlignment = Enum.TextXAlignment.Left
373
374
Avatar_2.Name = "Avatar"
375
Avatar_2.Parent = HomeTab
376
Avatar_2.BackgroundColor3 = Color3.fromRGB(18, 18, 18)
377
Avatar_2.BorderColor3 = Color3.fromRGB(0, 0, 0)
378
Avatar_2.BorderSizePixel = 0
379
Avatar_2.Position = UDim2.new(0.0125195617, 0, 0.0356083103, 0)
380
Avatar_2.Size = UDim2.new(0, 320, 0, 74)
381
382
UICorner_8.CornerRadius = UDim.new(0, 11)
383
UICorner_8.Parent = Avatar_2
384
385
UserAvatar.Name = "User-Avatar"
386
UserAvatar.Parent = Avatar_2
387
UserAvatar.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
388
UserAvatar.BackgroundTransparency = 1.000
389
UserAvatar.BorderColor3 = Color3.fromRGB(0, 0, 0)
390
UserAvatar.BorderSizePixel = 0
391
UserAvatar.Position = UDim2.new(0.0436342731, 0, 0.108108111, 0)
392
UserAvatar.Size = UDim2.new(0, 57, 0, 57)
393
UserAvatar.Image = "rbxasset://textures/ui/GuiImagePlaceholder.png"
394
UserAvatar.ScaleType = Enum.ScaleType.Fit
395
396
UserName.Name = "User-Name"
397
UserName.Parent = Avatar_2
398
UserName.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
399
UserName.BackgroundTransparency = 1.000
400
UserName.BorderColor3 = Color3.fromRGB(0, 0, 0)
401
UserName.BorderSizePixel = 0
402
UserName.Position = UDim2.new(0.25405091, 0, 0.162162155, 0)
403
UserName.Size = UDim2.new(0, 200, 0, 50)
404
UserName.Font = Enum.Font.Unknown
405
UserName.Text = "Welcome, User"
406
UserName.TextColor3 = Color3.fromRGB(255, 255, 255)
407
UserName.TextSize = 21.000
408
UserName.TextXAlignment = Enum.TextXAlignment.Left
409
410
CloseDisplay.Name = "Close-Display"
411
CloseDisplay.Parent = HomeTab
412
CloseDisplay.BackgroundColor3 = Color3.fromRGB(16, 16, 16)
413
CloseDisplay.BorderColor3 = Color3.fromRGB(0, 0, 0)
414
CloseDisplay.BorderSizePixel = 0
415
CloseDisplay.Position = UDim2.new(0.93583715, 0, 0.0296735913, 0)
416
CloseDisplay.Size = UDim2.new(0, 26, 0, 26)
417
418
UICorner_9.CornerRadius = UDim.new(0, 5)
419
UICorner_9.Parent = CloseDisplay
420
421
CloseBTN.Name = "Close-BTN"
422
CloseBTN.Parent = CloseDisplay
423
CloseBTN.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
424
CloseBTN.BackgroundTransparency = 1.000
425
CloseBTN.BorderColor3 = Color3.fromRGB(0, 0, 0)
426
CloseBTN.BorderSizePixel = 0
427
CloseBTN.Size = UDim2.new(0, 26, 0, 26)
428
CloseBTN.Font = Enum.Font.Gotham
429
CloseBTN.Text = "×"
430
CloseBTN.TextColor3 = Color3.fromRGB(255, 255, 255)
431
CloseBTN.TextSize = 23.000
432
433
CodeDisplay.Name = "Code-Display"
434
CodeDisplay.Parent = Tabs
435
CodeDisplay.BackgroundColor3 = Color3.fromRGB(16, 16, 16)
436
CodeDisplay.BorderColor3 = Color3.fromRGB(0, 0, 0)
437
CodeDisplay.BorderSizePixel = 0
438
CodeDisplay.Position = UDim2.new(0.314333886, 0, 0.314965814, 0)
439
CodeDisplay.Size = UDim2.new(0, 34, 0, 33)
440
441
UICorner_10.CornerRadius = UDim.new(0, 7)
442
UICorner_10.Parent = CodeDisplay
443
444
CodeIconBTN.Name = "Code-Icon-BTN"
445
CodeIconBTN.Parent = CodeDisplay
446
CodeIconBTN.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
447
CodeIconBTN.BackgroundTransparency = 1.000
448
CodeIconBTN.BorderColor3 = Color3.fromRGB(0, 0, 0)
449
CodeIconBTN.BorderSizePixel = 0
450
CodeIconBTN.Position = UDim2.new(0.0882352963, 0, 0.121212125, 0)
451
CodeIconBTN.Size = UDim2.new(0, 27, 0, 25)
452
CodeIconBTN.Image = "rbxassetid://7733920644"
453
CodeIconBTN.ScaleType = Enum.ScaleType.Fit
454
455
CodeTab.Name = "Code-Tab"
456
CodeTab.Parent = CodeIconBTN
457
CodeTab.BackgroundColor3 = Color3.fromRGB(8, 8, 8)
458
CodeTab.BorderColor3 = Color3.fromRGB(0, 0, 0)
459
CodeTab.BorderSizePixel = 0
460
CodeTab.Position = UDim2.new(2.03703737, 0, -4.38991928, 0)
461
CodeTab.Size = UDim2.new(0, 637, 0, 337)
462
CodeTab.Visible = false
463
464
UICorner_11.CornerRadius = UDim.new(0, 11)
465
UICorner_11.Parent = CodeTab
466
467
TitleCode.Name = "TitleCode"
468
TitleCode.Parent = CodeTab
469
TitleCode.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
470
TitleCode.BackgroundTransparency = 1.000
471
TitleCode.BorderColor3 = Color3.fromRGB(0, 0, 0)
472
TitleCode.BorderSizePixel = 0
473
TitleCode.Position = UDim2.new(0.0254629627, 0, 0.0111688105, 0)
474
TitleCode.Size = UDim2.new(0, 200, 0, 32)
475
TitleCode.Font = Enum.Font.GothamMedium
476
TitleCode.Text = "Script Editor"
477
TitleCode.TextColor3 = Color3.fromRGB(255, 255, 255)
478
TitleCode.TextSize = 18.000
479
TitleCode.TextXAlignment = Enum.TextXAlignment.Left
480
481
Display.Name = "Display"
482
Display.Parent = CodeTab
483
Display.BackgroundColor3 = Color3.fromRGB(3, 3, 3)
484
Display.BorderColor3 = Color3.fromRGB(0, 0, 0)
485
Display.BorderSizePixel = 0
486
Display.Position = UDim2.new(0.0172384549, 0, 0.104251847, 0)
487
Display.Size = UDim2.new(0, 613, 0, 233)
488
489
UICorner_12.CornerRadius = UDim.new(0, 6)
490
UICorner_12.Parent = Display
491
492
ScrollingFrame.Parent = Display
493
ScrollingFrame.Active = true
494
ScrollingFrame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
495
ScrollingFrame.BackgroundTransparency = 1.000
496
ScrollingFrame.BorderColor3 = Color3.fromRGB(0, 0, 0)
497
ScrollingFrame.BorderSizePixel = 0
498
ScrollingFrame.Position = UDim2.new(0.0196559094, 0, 0.0409838408, 0)
499
ScrollingFrame.Size = UDim2.new(0, 596, 0, 217)
500
ScrollingFrame.CanvasSize = UDim2.new(0, 0, 2, 5)
501
ScrollingFrame.ScrollBarImageColor3 = Color3.fromRGB(0, 0, 0)
502
503
TextBox.Parent = ScrollingFrame
504
TextBox.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
505
TextBox.BackgroundTransparency = 1.000
506
TextBox.BorderColor3 = Color3.fromRGB(0, 0, 0)
507
TextBox.BorderSizePixel = 0
508
TextBox.Size = UDim2.new(0, 583, 0, 487)
509
TextBox.ClearTextOnFocus = false
510
TextBox.Font = Enum.Font.Gotham
511
TextBox.PlaceholderText = "-- Here you can execute your favorite scripts!"
512
TextBox.Text = ""
513
TextBox.TextColor3 = Color3.fromRGB(255, 255, 255)
514
TextBox.TextSize = 14.000
515
TextBox.TextWrapped = true
516
TextBox.TextXAlignment = Enum.TextXAlignment.Left
517
TextBox.TextYAlignment = Enum.TextYAlignment.Top
518
519
ClearDisplay.Name = "Clear-Display"
520
ClearDisplay.Parent = CodeTab
521
ClearDisplay.BackgroundColor3 = Color3.fromRGB(4, 4, 4)
522
ClearDisplay.BorderColor3 = Color3.fromRGB(0, 0, 0)
523
ClearDisplay.BorderSizePixel = 0
524
ClearDisplay.Position = UDim2.new(0.0172384549, 0, 0.817692041, 0)
525
ClearDisplay.Size = UDim2.new(0, 156, 0, 48)
526
527
UICorner_13.CornerRadius = UDim.new(0, 6)
528
UICorner_13.Parent = ClearDisplay
529
530
ClearBTN.Name = "Clear-BTN"
531
ClearBTN.Parent = ClearDisplay
532
ClearBTN.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
533
ClearBTN.BackgroundTransparency = 1.000
534
ClearBTN.BorderColor3 = Color3.fromRGB(0, 0, 0)
535
ClearBTN.BorderSizePixel = 0
536
ClearBTN.Position = UDim2.new(0, 0, 0.0303026829, 0)
537
ClearBTN.Size = UDim2.new(0, 156, 0, 44)
538
ClearBTN.Font = Enum.Font.Gotham
539
ClearBTN.Text = "Clear"
540
ClearBTN.TextColor3 = Color3.fromRGB(255, 255, 255)
541
ClearBTN.TextSize = 18.000
542
543
CopyDisplay.Name = "Copy-Display"
544
CopyDisplay.Parent = CodeTab
545
CopyDisplay.BackgroundColor3 = Color3.fromRGB(4, 4, 4)
546
CopyDisplay.BorderColor3 = Color3.fromRGB(0, 0, 0)
547
CopyDisplay.BorderSizePixel = 0
548
CopyDisplay.Position = UDim2.new(0.280644059, 0, 0.817692041, 0)
549
CopyDisplay.Size = UDim2.new(0, 124, 0, 48)
550
551
UICorner_14.CornerRadius = UDim.new(0, 6)
552
UICorner_14.Parent = CopyDisplay
553
554
CopyBTN.Name = "Copy-BTN"
555
CopyBTN.Parent = CopyDisplay
556
CopyBTN.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
557
CopyBTN.BackgroundTransparency = 1.000
558
CopyBTN.BorderColor3 = Color3.fromRGB(0, 0, 0)
559
CopyBTN.BorderSizePixel = 0
560
CopyBTN.Position = UDim2.new(0, 0, 0.0290851593, 0)
561
CopyBTN.Size = UDim2.new(0, 123, 0, 45)
562
CopyBTN.Font = Enum.Font.Gotham
563
CopyBTN.Text = "Copy Text"
564
CopyBTN.TextColor3 = Color3.fromRGB(255, 255, 255)
565
CopyBTN.TextSize = 18.000
566
567
PasteDisplay.Name = "Paste-Display"
568
PasteDisplay.Parent = CodeTab
569
PasteDisplay.BackgroundColor3 = Color3.fromRGB(4, 4, 4)
570
PasteDisplay.BorderColor3 = Color3.fromRGB(0, 0, 0)
571
PasteDisplay.BorderSizePixel = 0
572
PasteDisplay.Position = UDim2.new(0.494537294, 0, 0.81769222, 0)
573
PasteDisplay.Size = UDim2.new(0, 136, 0, 46)
574
575
UICorner_15.CornerRadius = UDim.new(0, 6)
576
UICorner_15.Parent = PasteDisplay
577
578
PasteBTN.Name = "Paste-BTN"
579
PasteBTN.Parent = PasteDisplay
580
PasteBTN.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
581
PasteBTN.BackgroundTransparency = 1.000
582
PasteBTN.BorderColor3 = Color3.fromRGB(0, 0, 0)
583
PasteBTN.BorderSizePixel = 0
584
PasteBTN.Position = UDim2.new(0.0073529412, 0, 0.0316188633, 0)
585
PasteBTN.Size = UDim2.new(0, 135, 0, 46)
586
PasteBTN.Font = Enum.Font.Gotham
587
PasteBTN.Text = "Paste Text"
588
PasteBTN.TextColor3 = Color3.fromRGB(255, 255, 255)
589
PasteBTN.TextSize = 18.000
590
591
ExecDisplay.Name = "Exec-Display"
592
ExecDisplay.Parent = CodeTab
593
ExecDisplay.BackgroundColor3 = Color3.fromRGB(4, 4, 4)
594
ExecDisplay.BorderColor3 = Color3.fromRGB(0, 0, 0)
595
ExecDisplay.BorderSizePixel = 0
596
ExecDisplay.Position = UDim2.new(0.731736958, 0, 0.81769222, 0)
597
ExecDisplay.Size = UDim2.new(0, 157, 0, 46)
598
599
UICorner_16.CornerRadius = UDim.new(0, 6)
600
UICorner_16.Parent = ExecDisplay
601
602
ExecBTN.Name = "Exec-BTN"
603
ExecBTN.Parent = ExecDisplay
604
ExecBTN.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
605
ExecBTN.BackgroundTransparency = 1.000
606
ExecBTN.BorderColor3 = Color3.fromRGB(0, 0, 0)
607
ExecBTN.BorderSizePixel = 0
608
ExecBTN.Size = UDim2.new(0, 157, 0, 45)
609
ExecBTN.Font = Enum.Font.Gotham
610
ExecBTN.Text = "Execute"
611
ExecBTN.TextColor3 = Color3.fromRGB(255, 255, 255)
612
ExecBTN.TextSize = 18.000
613
614
SettingsDisplay.Name = "Settings-Display"
615
SettingsDisplay.Parent = Tabs
616
SettingsDisplay.BackgroundColor3 = Color3.fromRGB(16, 16, 16)
617
SettingsDisplay.BorderColor3 = Color3.fromRGB(0, 0, 0)
618
SettingsDisplay.BorderSizePixel = 0
619
SettingsDisplay.Position = UDim2.new(0.317250043, 0, 0.551901639, 0)
620
SettingsDisplay.Size = UDim2.new(0, 34, 0, 33)
621
622
UICorner_17.CornerRadius = UDim.new(0, 7)
623
UICorner_17.Parent = SettingsDisplay
624
625
SettingsIconBTN.Name = "Settings-Icon-BTN"
626
SettingsIconBTN.Parent = SettingsDisplay
627
SettingsIconBTN.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
628
SettingsIconBTN.BackgroundTransparency = 1.000
629
SettingsIconBTN.BorderColor3 = Color3.fromRGB(0, 0, 0)
630
SettingsIconBTN.BorderSizePixel = 0
631
SettingsIconBTN.Position = UDim2.new(0.0850839019, 0, 0.133939803, 0)
632
SettingsIconBTN.Size = UDim2.new(0, 27, 0, 25)
633
SettingsIconBTN.Image = "rbxassetid://7734053495"
634
SettingsIconBTN.ScaleType = Enum.ScaleType.Fit
635
636
SettingsTab.Name = "Settings-Tab"
637
SettingsTab.Parent = SettingsIconBTN
638
SettingsTab.BackgroundColor3 = Color3.fromRGB(8, 8, 8)
639
SettingsTab.BorderColor3 = Color3.fromRGB(0, 0, 0)
640
SettingsTab.BorderSizePixel = 0
641
SettingsTab.Position = UDim2.new(2.09041405, 0, -7.76484728, 0)
642
SettingsTab.Size = UDim2.new(0, 636, 0, 335)
643
SettingsTab.Visible = false
644
645
UICorner_18.CornerRadius = UDim.new(0, 11)
646
UICorner_18.Parent = SettingsTab
647
648
FPSBG.Name = "FPS-BG"
649
FPSBG.Parent = SettingsTab
650
FPSBG.BackgroundColor3 = Color3.fromRGB(24, 24, 24)
651
FPSBG.BorderColor3 = Color3.fromRGB(0, 0, 0)
652
FPSBG.BorderSizePixel = 0
653
FPSBG.Position = UDim2.new(0.0203160271, 0, 0.0646836609, 0)
654
FPSBG.Size = UDim2.new(0, 212, 0, 43)
655
656
UICorner_19.Parent = FPSBG
657
658
FPSTitle.Name = "FPSTitle"
659
FPSTitle.Parent = FPSBG
660
FPSTitle.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
661
FPSTitle.BackgroundTransparency = 1.000
662
FPSTitle.BorderColor3 = Color3.fromRGB(0, 0, 0)
663
FPSTitle.BorderSizePixel = 0
664
FPSTitle.Position = UDim2.new(0.0377358496, 0, 0.25, 0)
665
FPSTitle.Size = UDim2.new(0, 200, 0, 21)
666
FPSTitle.Font = Enum.Font.Gotham
667
FPSTitle.Text = "FPS Unlocker"
668
FPSTitle.TextColor3 = Color3.fromRGB(255, 255, 255)
669
FPSTitle.TextSize = 14.000
670
FPSTitle.TextXAlignment = Enum.TextXAlignment.Left
671
672
ToggleFramePS.Name = "ToggleFramePS"
673
ToggleFramePS.Parent = FPSBG
674
ToggleFramePS.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
675
ToggleFramePS.BackgroundTransparency = 1.000
676
ToggleFramePS.BorderColor3 = Color3.fromRGB(0, 0, 0)
677
ToggleFramePS.BorderSizePixel = 0
678
ToggleFramePS.Position = UDim2.new(-0.00091682293, 0, -0.0749067813, 0)
679
ToggleFramePS.Size = UDim2.new(0, 207, 0, 44)
680
681
FPSBTN.Name = "FPS-BTN"
682
FPSBTN.Parent = ToggleFramePS
683
FPSBTN.BackgroundColor3 = Color3.fromRGB(12, 12, 12)
684
FPSBTN.BorderColor3 = Color3.fromRGB(0, 0, 0)
685
FPSBTN.BorderSizePixel = 0
686
FPSBTN.Position = UDim2.new(0.560386896, 0, 0.25, 0)
687
FPSBTN.Size = UDim2.new(0, 85, 0, 27)
688
FPSBTN.Font = Enum.Font.GothamMedium
689
FPSBTN.Text = "Execute"
690
FPSBTN.TextColor3 = Color3.fromRGB(255, 255, 255)
691
FPSBTN.TextSize = 14.000
692
693
UICorner_20.CornerRadius = UDim.new(0, 6)
694
UICorner_20.Parent = FPSBTN
695
696
ScriptHubDisplay.Name = "ScriptHub-Display"
697
ScriptHubDisplay.Parent = Tabs
698
ScriptHubDisplay.BackgroundColor3 = Color3.fromRGB(16, 16, 16)
699
ScriptHubDisplay.BorderColor3 = Color3.fromRGB(0, 0, 0)
700
ScriptHubDisplay.BorderSizePixel = 0
701
ScriptHubDisplay.Position = UDim2.new(0.316355169, 0, 0.430437297, 0)
702
ScriptHubDisplay.Size = UDim2.new(0, 34, 0, 33)
703
704
UICorner_21.CornerRadius = UDim.new(0, 7)
705
UICorner_21.Parent = ScriptHubDisplay
706
707
ScriptHubIconBTN.Name = "ScriptHub-Icon-BTN"
708
ScriptHubIconBTN.Parent = ScriptHubDisplay
709
ScriptHubIconBTN.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
710
ScriptHubIconBTN.BackgroundTransparency = 1.000
711
ScriptHubIconBTN.BorderColor3 = Color3.fromRGB(0, 0, 0)
712
ScriptHubIconBTN.BorderSizePixel = 0
713
ScriptHubIconBTN.Position = UDim2.new(0.0882352963, 0, 0.121212125, 0)
714
ScriptHubIconBTN.Size = UDim2.new(0, 27, 0, 25)
715
ScriptHubIconBTN.Image = "rbxassetid://7733779730"
716
ScriptHubIconBTN.ScaleType = Enum.ScaleType.Fit
717
718
ScriptHubTab.Name = "ScriptHub-Tab"
719
ScriptHubTab.Parent = ScriptHubIconBTN
720
ScriptHubTab.BackgroundColor3 = Color3.fromRGB(8, 8, 8)
721
ScriptHubTab.BorderColor3 = Color3.fromRGB(0, 0, 0)
722
ScriptHubTab.BorderSizePixel = 0
723
ScriptHubTab.Position = UDim2.new(2.03209662, 0, -6.00688314, 0)
724
ScriptHubTab.Size = UDim2.new(0, 637, 0, 334)
725
ScriptHubTab.Visible = false
726
727
UICorner_22.CornerRadius = UDim.new(0, 11)
728
UICorner_22.Parent = ScriptHubTab
729
730
TitleScriptHub.Name = "TitleScriptHub"
731
TitleScriptHub.Parent = ScriptHubTab
732
TitleScriptHub.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
733
TitleScriptHub.BackgroundTransparency = 1.000
734
TitleScriptHub.BorderColor3 = Color3.fromRGB(0, 0, 0)
735
TitleScriptHub.BorderSizePixel = 0
736
TitleScriptHub.Position = UDim2.new(0.0338600464, 0, 0.0522088371, 0)
737
TitleScriptHub.Size = UDim2.new(0, 200, 0, 25)
738
TitleScriptHub.Font = Enum.Font.Gotham
739
TitleScriptHub.Text = "Script Hub"
740
TitleScriptHub.TextColor3 = Color3.fromRGB(255, 255, 255)
741
TitleScriptHub.TextSize = 21.000
742
TitleScriptHub.TextXAlignment = Enum.TextXAlignment.Left
743
744
ScrollingFrame_2.Parent = ScriptHubTab
745
ScrollingFrame_2.Active = true
746
ScrollingFrame_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
747
ScrollingFrame_2.BackgroundTransparency = 1.000
748
ScrollingFrame_2.BorderColor3 = Color3.fromRGB(0, 0, 0)
749
ScrollingFrame_2.BorderSizePixel = 0
750
ScrollingFrame_2.Position = UDim2.new(0.020315988, 0, 0.128742516, 0)
751
ScrollingFrame_2.Size = UDim2.new(0, 610, 0, 278)
752
ScrollingFrame_2.ScrollBarImageColor3 = Color3.fromRGB(0, 0, 0)
753
754
SpeedHubX.Name = "SpeedHubX"
755
SpeedHubX.Parent = ScrollingFrame_2
756
SpeedHubX.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
757
SpeedHubX.BackgroundTransparency = 1.000
758
SpeedHubX.BorderColor3 = Color3.fromRGB(0, 0, 0)
759
SpeedHubX.BorderSizePixel = 0
760
SpeedHubX.Position = UDim2.new(0.0125786951, 0, 0.0165827088, 0)
761
SpeedHubX.Size = UDim2.new(0, 249, 0, 95)
762
SpeedHubX.Image = "rbxassetid://16022917595"
763
SpeedHubX.ScaleType = Enum.ScaleType.Crop
764
765
UICorner_23.Parent = SpeedHubX
766
767
ExecuteSPHX.Name = "ExecuteSPHX"
768
ExecuteSPHX.Parent = SpeedHubX
769
ExecuteSPHX.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
770
ExecuteSPHX.BorderColor3 = Color3.fromRGB(0, 0, 0)
771
ExecuteSPHX.BorderSizePixel = 0
772
ExecuteSPHX.Position = UDim2.new(0.662563682, 0, 0.655263066, 0)
773
ExecuteSPHX.Size = UDim2.new(0, 74, 0, 24)
774
ExecuteSPHX.Font = Enum.Font.GothamMedium
775
ExecuteSPHX.Text = "Execute"
776
ExecuteSPHX.TextColor3 = Color3.fromRGB(255, 255, 255)
777
ExecuteSPHX.TextSize = 14.000
778
779
UICorner_24.Parent = ExecuteSPHX
780
781
IY.Name = "IY"
782
IY.Parent = ScrollingFrame_2
783
IY.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
784
IY.BackgroundTransparency = 1.000
785
IY.BorderColor3 = Color3.fromRGB(0, 0, 0)
786
IY.BorderSizePixel = 0
787
IY.Position = UDim2.new(0.453919649, 0, 0.0143089565, 0)
788
IY.Size = UDim2.new(0, 253, 0, 96)
789
IY.Image = "http://www.roblox.com/asset/?id=15914349618"
790
IY.ScaleType = Enum.ScaleType.Crop
791
792
UICorner_25.Parent = IY
793
794
ExecuteIY.Name = "ExecuteIY"
795
ExecuteIY.Parent = IY
796
ExecuteIY.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
797
ExecuteIY.BorderColor3 = Color3.fromRGB(0, 0, 0)
798
ExecuteIY.BorderSizePixel = 0
799
ExecuteIY.Position = UDim2.new(0.641213655, 0, 0.665570259, 0)
800
ExecuteIY.Size = UDim2.new(0, 74, 0, 24)
801
ExecuteIY.Font = Enum.Font.GothamMedium
802
ExecuteIY.Text = "Execute"
803
ExecuteIY.TextColor3 = Color3.fromRGB(255, 255, 255)
804
ExecuteIY.TextSize = 14.000
805
806
UICorner_26.Parent = ExecuteIY
807
808
ZekromHubX.Name = "ZekromHubX"
809
ZekromHubX.Parent = ScrollingFrame_2
810
ZekromHubX.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
811
ZekromHubX.BackgroundTransparency = 1.000
812
ZekromHubX.BorderColor3 = Color3.fromRGB(0, 0, 0)
813
ZekromHubX.BorderSizePixel = 0
814
ZekromHubX.Position = UDim2.new(0.0131147541, 0, 0.184533641, 0)
815
ZekromHubX.Size = UDim2.new(0, 249, 0, 95)
816
ZekromHubX.Image = "rbxassetid://16172861652"
817
ZekromHubX.ScaleType = Enum.ScaleType.Crop
818
819
UICorner_27.Parent = ZekromHubX
820
821
ExecuteZekroV2.Name = "ExecuteZekroV2"
822
ExecuteZekroV2.Parent = ZekromHubX
823
ExecuteZekroV2.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
824
ExecuteZekroV2.BorderColor3 = Color3.fromRGB(0, 0, 0)
825
ExecuteZekroV2.BorderSizePixel = 0
826
ExecuteZekroV2.Position = UDim2.new(0.74983722, 0, 0.705081701, 0)
827
ExecuteZekroV2.Size = UDim2.new(0, 74, 0, 24)
828
ExecuteZekroV2.Font = Enum.Font.GothamMedium
829
ExecuteZekroV2.Text = "Execute"
830
ExecuteZekroV2.TextColor3 = Color3.fromRGB(255, 255, 255)
831
ExecuteZekroV2.TextSize = 14.000
832
833
UICorner_28.Parent = ExecuteZekroV2
834
835
-- Scripts:
836
837
local function NYXY_fake_script() -- Open.LocalScript
838
local script = Instance.new('LocalScript', Open)
839
840
local darkbg = script.Parent.Parent["Dark-BG"]
841
local tabs = script.Parent.Parent["Dark-BG"].Tabs
842
local opengui = script.Parent
843
844
script.Parent.MouseButton1Click:Connect(function()
845
darkbg.Visible = true
846
tabs.Visible = true
847
opengui.Visible = false
848
end)
849
end
850
coroutine.wrap(NYXY_fake_script)()
851
local function NJUGXP_fake_script() -- UserAvatar.LocalScript
852
local script = Instance.new('LocalScript', UserAvatar)
853
854
local image = script.Parent
855
image.Image = game.Players:GetUserThumbnailAsync(game.Players.LocalPlayer.UserId,Enum.ThumbnailType.HeadShot, Enum.ThumbnailSize.Size420x420)
856
end
857
coroutine.wrap(NJUGXP_fake_script)()
858
local function WLCZZ_fake_script() -- UserName.LocalScript
859
local script = Instance.new('LocalScript', UserName)
860
861
local user = game.Players.LocalPlayer.Name
862
local usertxt = script.Parent
863
864
usertxt.Text = "Welcome, "..user
865
end
866
coroutine.wrap(WLCZZ_fake_script)()
867
local function FWLSH_fake_script() -- CloseBTN.LocalScript
868
local script = Instance.new('LocalScript', CloseBTN)
869
870
local darkbg = script.Parent.Parent.Parent.Parent.Parent.Parent.Parent.Parent["Dark-BG"]
871
local tabs = script.Parent.Parent.Parent.Parent.Parent.Parent.Parent.Tabs
872
local opengui = script.Parent.Parent.Parent.Parent.Parent.Parent.Parent.Parent.Open
873
local btn = script.Parent
874
875
btn.MouseButton1Click:Connect(function()
876
darkbg.Visible = false
877
tabs.Visible = false
878
opengui.Visible = true
879
end)
880
end
881
coroutine.wrap(FWLSH_fake_script)()
882
local function QTGVAJ_fake_script() -- HomeIconBTN.LocalScript
883
local script = Instance.new('LocalScript', HomeIconBTN)
884
885
local home = script.Parent["Home-Tab"]
886
local code = script.Parent.Parent.Parent["Code-Display"]["Code-Icon-BTN"]["Code-Tab"]
887
local scriptstab = script.Parent.Parent.Parent["ScriptHub-Display"]["ScriptHub-Icon-BTN"]["ScriptHub-Tab"]
888
local stngs = script.Parent.Parent.Parent["Settings-Display"]["Settings-Icon-BTN"]["Settings-Tab"]
889
890
script.Parent.MouseButton1Click:Connect(function()
891
home.Visible = true
892
code.Visible = false
893
scriptstab.Visible = false
894
stngs.Visible = false
895
end)
896
end
897
coroutine.wrap(QTGVAJ_fake_script)()
898
local function PWGNM_fake_script() -- ClearBTN.LocalScript
899
local script = Instance.new('LocalScript', ClearBTN)
900
901
local textbox = script.Parent.Parent.Parent.Display.ScrollingFrame.TextBox
902
local btn = script.Parent
903
904
btn.MouseButton1Click:Connect(function()
905
textbox.Text = ""
906
-- notification
907
908
local Bindable = Instance.new("BindableFunction")
909
Bindable.OnInvoke = Callback
910
911
game.StarterGui:SetCore("SendNotification", {
912
Title = "Cubix | Android";
913
Text = "Cleared the script.";
914
Duration = "10";
915
Button1 = "Close Notification";
916
Callback = Bindable
917
})
918
end)
919
920
function Callback(answer)
921
end
922
end
923
coroutine.wrap(PWGNM_fake_script)()
924
local function KLUYQN_fake_script() -- CopyBTN.LocalScript
925
local script = Instance.new('LocalScript', CopyBTN)
926
927
local txt = script.Parent.Parent.Parent.Display.ScrollingFrame.TextBox
928
local btn = script.Parent
929
930
btn.MouseButton1Click:Connect(function()
931
setclipboard(txt.Text)
932
-- notification
933
934
local Bindable = Instance.new("BindableFunction")
935
Bindable.OnInvoke = Callback
936
937
game.StarterGui:SetCore("SendNotification", {
938
Title = "Cubix | Android";
939
Text = "Copied the script.";
940
Duration = "10";
941
Button1 = "Close Notification";
942
Callback = Bindable
943
})
944
end)
945
946
function Callback(answer)
947
end
948
949
end
950
coroutine.wrap(KLUYQN_fake_script)()
951
local function HCRL_fake_script() -- PasteBTN.LocalScript
952
local script = Instance.new('LocalScript', PasteBTN)
953
954
local txt = script.Parent.Parent.Parent.Display.ScrollingFrame.TextBox
955
local btn = script.Parent
956
957
btn.MouseButton1Click:Connect(function()
958
txt.Text = getclipboard()
959
960
-- notification
961
962
local Bindable = Instance.new("BindableFunction")
963
Bindable.OnInvoke = Callback
964
965
game.StarterGui:SetCore("SendNotification", {
966
Title = "Cubix | Android";
967
Text = "Pasted the script.";
968
Duration = "10";
969
Button1 = "Close Notification";
970
Callback = Bindable
971
})
972
end)
973
974
function Callback(answer)
975
end
976
end
977
coroutine.wrap(HCRL_fake_script)()
978
local function ZTADS_fake_script() -- ExecBTN.LocalScript
979
local script = Instance.new('LocalScript', ExecBTN)
980
981
local txtbox = script.Parent.Parent.Parent.Display.ScrollingFrame.TextBox
982
local btn = script.Parent
983
984
btn.MouseButton1Click:Connect(function()
985
local executecode = executecode and clonefunction(executecode) or function(v)
986
task.spawn(loadstring(v));
987
988
executecode(txtbox.Text)
989
end
990
-- notification
991
992
local Bindable = Instance.new("BindableFunction")
993
Bindable.OnInvoke = Callback
994
995
game.StarterGui:SetCore("SendNotification", {
996
Title = "Cubix | Android";
997
Text = "Executed the script.";
998
Duration = "10";
999
Button1 = "Close Notification";
1000
Callback = Bindable
1001
})
1002
end)
1003
1004
function Callback(answer)
1005
end
1006
1007
1008
1009
end
1010
coroutine.wrap(ZTADS_fake_script)()
1011
local function DWBJVHF_fake_script() -- CodeIconBTN.LocalScript
1012
local script = Instance.new('LocalScript', CodeIconBTN)
1013
1014
local home = script.Parent.Parent.Parent["Home-Display"]["Home-Icon-BTN"]["Home-Tab"]
1015
local code = script.Parent["Code-Tab"]
1016
local scriptstab = script.Parent.Parent.Parent["ScriptHub-Display"]["ScriptHub-Icon-BTN"]["ScriptHub-Tab"]
1017
local stngs = script.Parent.Parent.Parent["Settings-Display"]["Settings-Icon-BTN"]["Settings-Tab"]
1018
1019
script.Parent.MouseButton1Click:Connect(function()
1020
home.Visible = false
1021
code.Visible = true
1022
scriptstab.Visible = false
1023
stngs.Visible = false
1024
end)
1025
end
1026
coroutine.wrap(DWBJVHF_fake_script)()
1027
local function MLWQPR_fake_script() -- SettingsIconBTN.LocalScript
1028
local script = Instance.new('LocalScript', SettingsIconBTN)
1029
1030
local home = script.Parent.Parent.Parent["Home-Display"]["Home-Icon-BTN"]["Home-Tab"]
1031
local code = script.Parent.Parent.Parent["Code-Display"]["Code-Icon-BTN"]["Code-Tab"]
1032
local scriptstab = script.Parent.Parent.Parent["ScriptHub-Display"]["ScriptHub-Icon-BTN"]["ScriptHub-Tab"]
1033
local stngs = script.Parent["Settings-Tab"]
1034
1035
script.Parent.MouseButton1Click:Connect(function()
1036
home.Visible = false
1037
code.Visible = false
1038
scriptstab.Visible = false
1039
stngs.Visible = true
1040
end)
1041
end
1042
coroutine.wrap(MLWQPR_fake_script)()
1043
local function TMHVQCE_fake_script() -- FPSBTN.LocalScript
1044
local script = Instance.new('LocalScript', FPSBTN)
1045
1046
local btn = script.Parent
1047
1048
btn.MouseButton1Click:Connect(function()
1049
setfpscap(960)
1050
-- notification
1051
1052
local Bindable = Instance.new("BindableFunction")
1053
Bindable.OnInvoke = Callback
1054
1055
game.StarterGui:SetCore("SendNotification", {
1056
Title = "Cubix | Android";
1057
Text = "FPS is now 960!.";
1058
Duration = "10";
1059
Button1 = "Close Notification";
1060
Callback = Bindable
1061
})
1062
end)
1063
1064
function Callback(answer)
1065
end
1066
1067
end
1068
coroutine.wrap(TMHVQCE_fake_script)()
1069
local function NYKPDQQ_fake_script() -- Tabs.LocalScript
1070
local script = Instance.new('LocalScript', Tabs)
1071
1072
function identifyexecutor()
1073
return "CubiX V1.2"
1074
end
1075
end
1076
coroutine.wrap(NYKPDQQ_fake_script)()
1077
local function LAZOJ_fake_script() -- ExecuteSPHX.LocalScript
1078
local script = Instance.new('LocalScript', ExecuteSPHX)
1079
1080
local GetScriptIY = script.Parent
1081
1082
GetScriptIY.MouseButton1Click:Connect(function()
1083
loadstring(game:HttpGet("https://raw.githubusercontent.com/ahmadsgamer2/Speed-Hub-X/main/SpeedHubX"))()
1084
end)
1085
end
1086
coroutine.wrap(LAZOJ_fake_script)()
1087
local function CRQZX_fake_script() -- ExecuteIY.LocalScript
1088
local script = Instance.new('LocalScript', ExecuteIY)
1089
1090
local GetScriptIY = script.Parent
1091
1092
GetScriptIY.MouseButton1Click:Connect(function()
1093
loadstring(game:HttpGet("https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source", true))()
1094
end)
1095
end
1096
coroutine.wrap(CRQZX_fake_script)()
1097
local function ZIJP_fake_script() -- ExecuteZekroV2.LocalScript
1098
local script = Instance.new('LocalScript', ExecuteZekroV2)
1099
1100
local GetScriptIY = script.Parent.Parent
1101
1102
GetScriptIY.MouseButton1Click:Connect(function()
1103
loadstring(game:HttpGet("https://raw.githubusercontent.com/ahmadsgamer2/Zekrom-Hub-X/main/Zekrom-Hub-X-exe", true))()
1104
end)
1105
end
1106
coroutine.wrap(ZIJP_fake_script)()
1107
local function WCPDKI_fake_script() -- ScriptHubIconBTN.LocalScript
1108
local script = Instance.new('LocalScript', ScriptHubIconBTN)
1109
1110
local home = script.Parent.Parent.Parent["Home-Display"]["Home-Icon-BTN"]["Home-Tab"]
1111
local code = script.Parent.Parent.Parent["Code-Display"]["Code-Icon-BTN"]["Code-Tab"]
1112
local scriptshub = script.Parent["ScriptHub-Tab"]
1113
local stngs = script.Parent.Parent.Parent["Settings-Display"]["Settings-Icon-BTN"]["Settings-Tab"]
1114
1115
script.Parent.MouseButton1Click:Connect(function()
1116
home.Visible = false
1117
code.Visible = false
1118
scriptshub.Visible = true
1119
stngs.Visible = false
1120
end)
1121
end
1122
coroutine.wrap