View difference between Paste ID: 8VGz3s8N and dXk7pG15
SHOW: | | - or go back to the newest paste.
1-
local Broom = game.Players.LocalPlayer.Character.Broom
1+
-- Farewell Infortality.
2-
local Start = Broom.E
2+
-- Version: 2.82
3-
local Hit = Broom.S
3+
-- Instances:
4-
local Finish = Broom.S
4+
local survivor = Instance.new("ScreenGui")
5
local open = Instance.new("Frame")
6-
while wait() do
6+
local openclose = Instance.new("TextButton")
7-
   Start:FireServer()
7+
local main = Instance.new("Frame")
8-
   Hit:FireServer()
8+
local nexthack = Instance.new("TextButton")
9-
   Hit:FireServer()
9+
local title = Instance.new("TextLabel")
10-
   Finish:FireServer()
10+
--Properties:
11-
end
11+
survivor.Name = "survivor"
12
survivor.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
13
14
open.Name = "open"
15
open.Parent = survivor
16
open.BackgroundColor3 = Color3.new(0, 0, 0)
17
open.BackgroundTransparency = 0.60000002384186
18
open.Position = UDim2.new(0, 0, 0.611271679, 0)
19
open.Size = UDim2.new(0, 101, 0, 60)
20
21
openclose.Name = "open/close"
22
openclose.Parent = open
23
openclose.BackgroundColor3 = Color3.new(1, 1, 1)
24
openclose.BackgroundTransparency = 0.40000000596046
25
openclose.Position = UDim2.new(0.0299999993, 0, 0.0851637721, 0)
26
openclose.Size = UDim2.new(0, 94, 0, 50)
27
openclose.Font = Enum.Font.Cartoon
28
openclose.Text = "Open/Close"
29
openclose.TextColor3 = Color3.new(0.588235, 1, 0.203922)
30
openclose.TextScaled = true
31
openclose.TextSize = 14
32
openclose.TextWrapped = true
33
34
main.Name = "main"
35
main.Parent = survivor
36
main.BackgroundColor3 = Color3.new(1, 1, 1)
37
main.BackgroundTransparency = 0.60000002384186
38
main.Position = UDim2.new(0.133663371, 0, 0.511560678, 0)
39
main.Size = UDim2.new(0, 145, 0, 69)
40
main.Visible = false
41
42
nexthack.Name = "nexthack"
43
nexthack.Parent = main
44
nexthack.BackgroundColor3 = Color3.new(0.0784314, 1, 0.0784314)
45
nexthack.BackgroundTransparency = 0.60000002384186
46
nexthack.Position = UDim2.new(0.0598156303, 0, 0.133262128, 0)
47
nexthack.Size = UDim2.new(0, 127, 0, 50)
48
nexthack.Font = Enum.Font.Cartoon
49
nexthack.Text = "Click Here To Get Next Hack!"
50
nexthack.TextColor3 = Color3.new(0, 0, 0)
51
nexthack.TextScaled = true
52
nexthack.TextSize = 14
53
nexthack.TextWrapped = true
54
55
title.Name = "title"
56
title.Parent = main
57
title.BackgroundColor3 = Color3.new(0.509804, 0.313726, 0.145098)
58
title.BackgroundTransparency = 0.40000000596046
59
title.Position = UDim2.new(-0.0482758619, 0, -0.536231875, 0)
60
title.Size = UDim2.new(0, 159, 0, 37)
61
title.Font = Enum.Font.Cartoon
62
title.Text = "Survivor Hack"
63
title.TextColor3 = Color3.new(0, 0, 0)
64
title.TextScaled = true
65
title.TextSize = 14
66
title.TextWrapped = true
67
-- Scripts:
68
openclose.MouseButton1Down:connect(function()
69
    if main.Visible == false then
70
        main.Visible = true
71
    else
72
        main.Visible = false
73
    end
74
end)
75
76
nexthack.MouseButton1Down:connect(function()
77
 -- Objects
78
--https://v3rmillion.net/member.php?action=profile&uid=61310
79
wait(3)
80
81
local ObjectValues = {}
82
83
local function StringToArray(String,Separator)
84
	local Array = {}
85
	local ExtStr = String
86
	repeat
87
		if ExtStr == "" or ExtStr == " " then
88
			
89
		else
90
			local Start = string.find(ExtStr,Separator)
91
			if Start ~= nil then
92
				local Arg = string.sub(ExtStr,0,Start-1)
93
				table.insert(Array,Arg)
94
				ExtStr = string.sub(ExtStr,Start+string.len(Separator))
95
			else
96
				table.insert(Array,ExtStr)
97
				ExtStr = ""
98
			end
99
		end
100
	until ExtStr == ""
101
	if string.lower(Array[1]) == "/e" then
102
		Array[1] = nil
103
		for i, v in pairs(Array) do
104
			if i == 1 then
105
				
106
			else
107
				Array[i-1] = v
108
			end
109
		end
110
	end
111
	return Array
112
end
113
114
local function IndicateValue(Value)
115
	local Type = tostring(typeof(Value))
116
	if Type == "string" then
117
		return "'"..Value.."'"
118
	elseif Type == "number" then
119
		return Value
120
	elseif Type == "Instance" then
121
		return "ObjectValue"
122
	elseif Type == "Color3" then
123
		return "Color3.new("..Value.r..","..Value.g..","..Value.b..")"
124
	elseif Type == "Vector3" then
125
		return "Vector3.new("..Value.X..","..Value.Y..","..Value.Z..")"
126
	elseif Type == "nil" then
127
		return "nil"
128
	elseif Type == "boolean" then
129
		return tostring(Value)
130
	elseif Type == "BrickColor" then
131
		return "BrickColor.new("..Value.r..","..Value.g..","..Value.b..")"
132
	elseif Type == "EnumItem" then
133
		return tostring(Value)
134
	elseif Type == "UDim2" then
135
		return "UDim2.new("..Value.X.Scale..","..Value.X.Offset..","..Value.Y.Scale..","..Value.Y.Offset..")"
136
	else
137
		return "Unable To Indicate Propety... "
138
	end
139
end
140
141
local Properties = {
142
	"Value",
143
	"Color",
144
	"AllowSweep",
145
	"WaterColor",
146
	"ParallelPhysics",
147
	"Is30FpsThrottleEnabled",
148
	"HeadsUpDisplay",
149
	"Texture",
150
	"Value",
151
	"WaterColor",
152
	"SkinColor",
153
	"SparkleColor",
154
	"FogColor",
155
	"HeadColor",
156
	"LeftArmColor",
157
	"RightArmColor",
158
	"TorsoColor",
159
	"RightLegColor",
160
	"LeftLegColor",
161
	"ShadowColor",
162
	"Ambient",
163
	"SecondaryColor",
164
	"Anchored",
165
	"AllowInsertFreeModels",
166
	"SuperSafeChatReplicate",
167
	"Player",
168
	"HangDetection",
169
	"FullScriptCode",
170
	"DataModelJobs",
171
	"DeviceLost",
172
	"SSAO",
173
	"SoundEnabled",
174
	"SoftwareSound",
175
	"TextFits",
176
	"TextWrap",
177
	"Draggable",
178
	"BubbleChat" ,
179
	"AutoRuns",
180
	"Guest",
181
	"LocalSaveEnabled",
182
	"PlatformStand",
183
	"AutoRotate",
184
	"CelestialBodiesShown",
185
	"HasBuildTools" ,
186
	"ClassicChat" ,
187
	"DevEnableMouseLock",
188
	"Netural",
189
	"CanCollide",
190
	"Disabled",
191
	"Outlines",
192
	"Jump",
193
	"Sit",
194
	"Visible",
195
	"IsSmooth" ,
196
	"Enabled",
197
	"Locked",
198
	"FilteringEnabled",
199
	"StreamingEnabled",
200
	"GlobalShadows",
201
	"ScriptsDisabled",
202
	"ZOffset",
203
	"CharacterAppearance",
204
	"PrimaryPart",
205
	"SkyboxBk",
206
	"SkyboxDn",
207
	"WaterTransparency",
208
	"WaterWaveSpeed",
209
	"HipHeight",
210
	"ChatHistory",
211
	"ConversationDistance",
212
	"BlastPressure",
213
	"BlastRadius",
214
	"InitialPrompt",
215
	"CPU",
216
	"OSVer",
217
	"OsPlatformId",
218
	"CpuSpeed",
219
	"D",
220
	"P",
221
	"maxForce",
222
	"InstanceCount",
223
	"PlaceId",
224
	"workspace",
225
	"GarbageCollectionFrequency",
226
	"BinType",
227
	"Grip",
228
	"ActivationState",
229
	"GarbageCollectionLimit",
230
	"ShadowColor",
231
	"TargetPoint",
232
	"WalkDirection",
233
	"WalkToPart",
234
	"Image",
235
	"Font",
236
	"ClearTextOnFocus",
237
	"TextTransparency",
238
	"WalkToPoint",
239
	"ColorShift_Bottom",
240
	"ColorShift_Top",
241
	"MaxSpeed",
242
	"CartoonFactor",
243
	"Target",
244
	"MaxThrust",
245
	"MaxTorque",
246
	"TargetOffset",
247
	"ThrustD",
248
	"ThrustP",
249
	"TurnD",
250
	"TurnP",
251
	"profileName",
252
	"Resolution",
253
	"Shadow",
254
	"Bevels",
255
	"BatchSize",
256
	"AASamples",
257
	"Genre",
258
	"CreatorType",
259
	"CreatorId",
260
	"JobId",
261
	"SkyboxUp",
262
	"SkyboxFt",
263
	"SkyboxLf",
264
	"StarCount",
265
	"ReporterType",
266
	"Outfit1",
267
	"Outfit2",
268
	"Pants",
269
	"PlayCount",
270
	"Shirt",
271
	"MinReportInterval",
272
	"VelocitySpread",
273
	"Rate",
274
	"DataSendRate",
275
	"DataGCRate",
276
	"NameDisplayerDistance",
277
	"MaxVelocity",
278
	"PantsTemplate",
279
	"ShirtTemplate",
280
	"SoundId",
281
	"Pitch",
282
	"IsPlaying",
283
	"IsPaused",
284
	"Looped",
285
	"PlayOnRemove",
286
	"StudsPerTileU",
287
	"StudsPerTileV",
288
	"Name",
289
	"Value",
290
	"MaxPlayers" ,
291
	"PersonalServerRank" ,
292
	"NumPlayers" ,
293
	"Text",
294
	"Reflectance",
295
	"FogEnd",
296
	"FogStart",
297
	"WaterTransparency",
298
	"Transparency",
299
	"Heat",
300
	"TeamName",
301
	"WalkSpeed",
302
	"Health",
303
	"MaxHealth",
304
	"Size",
305
	"TeamColor",
306
	"userId",
307
	"Brightness",
308
	"Ambient",
309
	"OsPlatform",
310
	"ChatMode",
311
	"AccountAgeReplicate",
312
	"Character",
313
	"Steer",
314
	"Style",
315
	"NetworkOwnerV3",
316
	"CanCollide",
317
	"TimeOfDay",
318
	"FieldOfView",
319
	"CameraType",
320
	"LinkedSource",
321
	"MachineAddress",
322
	"Port",
323
	"PrimaryPart",
324
	"BackgroundTransparency",
325
	"BackgroundColor3",
326
	"ImageColor3",
327
	"BorderColor3",
328
	"BorderSizePixel",
329
	"Position",
330
	"Rotation",
331
	"Selectable",
332
	"FrontSurface",
333
	"BackSurface",
334
	"RightSurface",
335
	"LeftSurface",
336
	"TopSurface",
337
	"BottomSurface",
338
	"MeshId",
339
	"TextureID",
340
	"Scale",
341
	"TextureId",
342
	"Shape"
343
}
344
345
local function SeparateString(Str)
346
	local Arr = {}
347
	local Len = string.len(Str)
348
	for i = 0,Len do
349
		local SubStr = string.sub(Str,i,i)
350
		table.insert(Arr,SubStr)
351
	end
352
	return Arr
353
end
354
355
356
local function FormatText (Text)
357
	local Spaces = StringToArray(Text,".")
358
	local Str = Text
359
	local Arr = SeparateString(Str)
360
	local function GetArrBack(Index)
361
		local Len = table.getn(Arr)- Index
362
		Arr[Index] = "</Dot>"
363
	end
364
	local Blacklist = true
365
	repeat
366
		Blacklist = true
367
		for i, v in pairs(Arr) do
368
			if v == "." then
369
				Blacklist = false
370
				GetArrBack(i)
371
			end
372
		end
373
	until Blacklist == true
374
	Str = ""
375
	for i, v in pairs(Arr) do
376
		Str = Str..v
377
	end
378
	Str = StringToArray(Str,"</Dot>")
379
	local a = Str
380
	Str = ""
381
	for i, v in pairs(a)do
382
		Str = Str.."['"..v.."']"
383
	end
384
	return Str
385
end
386
387
local function GetSaveInstanceString(InstanceValue)
388
	local Str = "pcall(function()\n_G['"..InstanceValue.Name.."'] = Instance.new('"..InstanceValue.ClassName.."',game"..FormatText(InstanceValue.Parent:GetFullName())..")\n"
389
	for i, v in pairs(Properties) do
390
		local Prop = "ur mom gey lmao"
391
		pcall(function()
392
			Prop = InstanceValue[v]
393
		end)
394
		if Prop == "ur mom gey lmao" then
395
			
396
		else
397
			local IndProp = IndicateValue(Prop)
398
			if IndProp ~= "Unable To Indicate Propety... " and IndProp ~= "ObjectValue" and IndProp ~= nil and IndProp ~= "nil" then
399
				Str = Str.."_G['"..InstanceValue.Name.."']."..v.." = "..IndProp.."\n"			
400
			else
401
				
402
			end
403
		end
404
	end
405
	pcall(function()	
406
		local Pos = InstanceValue.CFrame.p
407
		local Rot = InstanceValue.Orientation
408
		Str = Str.."_G['"..InstanceValue.Name.."'].CFrame = CFrame.new("..Pos.X..","..Pos.Y..","..Pos.Z..") * CFrame.fromEulerAnglesXYZ(math.rad("..Rot.X.."),math.rad("..Rot.Y.."),math.rad("..Rot.Z.."))"
409
	end)	
410
	Str = Str.."end)\n"
411
	return Str
412
end
413
414
local function GetSaveDescendantsString(InstanceValue)
415
	local Str = GetSaveInstanceString(InstanceValue)
416
	for i, v in pairs(InstanceValue:GetDescendants()) do
417
		Str = Str..GetSaveInstanceString(v)
418
	end
419
	return Str
420
end
421
422
local function SaveInstance(Inst)
423
	setclipboard(GetSaveDescendantsString(Inst))
424
end
425
426
local function Explore()
427
	TextProperties = {"ZOffset", "CharacterAppearance", "PrimaryPart", "SkyboxBk", "SkyboxDn", "WaterTransparency", "WaterWaveSpeed", "HipHeight","ChatHistory","ConversationDistance", "BlastPressure", "BlastRadius", "InitialPrompt", "CPU", "OSVer", "OsPlatformId", "CpuSpeed", "D", "P", "maxForce", "InstanceCount", "PlaceId", "workspace", "GarbageCollectionFrequency", "BinType", "Grip", "ActivationState", "GarbageCollectionLimit", "ShadowColor", "TargetPoint", "WalkDirection", "WalkToPart", "Image",  "Font", "ClearTextOnFocus", "TextTransparency", "WalkToPoint", "ColorShift_Bottom", "ColorShift_Top","MaxSpeed","CartoonFactor","Target","MaxThrust","MaxTorque","TargetOffset","ThrustD", "ThrustP", "TurnD", "TurnP", "profileName", "Resolution", "Shadow", "Bevels", "BatchSize", "AASamples", "Genre", "CreatorType", "CreatorId", "JobId", "SkyboxUp", "SkyboxFt", "SkyboxLf", "StarCount", "ReporterType", "Outfit1", "Outfit2", "Pants", "PlayCount", "Shirt",  "MinReportInterval", "VelocitySpread","Rate", "DataSendRate", "DataGCRate",  "Archivable", "ClassName","NameDisplayerDistance", "MaxVelocity","PantsTemplate","ShirtTemplate","SoundId","Pitch","IsPlaying","IsPaused","Looped","PlayOnRemove","StudsPerTileU","StudsPerTileV", "Name", "Value", "MaxPlayers" , "PersonalServerRank" ,"NumPlayers" , "Text", "Reflectance","FogEnd", "FogStart","WaterTransparency", "Transparency", "Heat", "TeamName", "WalkSpeed", "Health", "MaxHealth", "Size", "Position", "TeamColor", "userId", "Brightness", "Ambient", "OsPlatform", "ChatMode", "AccountAgeReplicate", "Character", "Steer", "Style","NetworkOwnerV3", "CanCollide", "CFrame", "TimeOfDay", "FieldOfView", "CameraType", "LinkedSource", "MachineAddress", "Port"}
428
	BoolProperties = {"Anchored", "AllowInsertFreeModels","SuperSafeChatReplicate", "Player", "HangDetection", "FullScriptCode", "DataModelJobs", "DeviceLost", "SSAO", "SoundEnabled", "SoftwareSound", "TextFits", "TextWrap", "Draggable",  "BubbleChat" , "AutoRuns", "Guest", "LocalSaveEnabled", "PlatformStand", "AutoRotate", "CelestialBodiesShown","HasBuildTools" , "ClassicChat" , "DevEnableMouseLock" ,"Netural", "CanCollide", "Disabled", "Outlines" ,"Jump", "Sit", "Visible", "IsSmooth" , "Enabled", "Locked", "FilteringEnabled", "StreamingEnabled", "GlobalShadows", "RobloxLocked", "ScriptsDisabled"}
429
	BrickColorProperties = {"BrickColor", "Color","AllowSweep", "WaterColor", "ParallelPhysics", "Is30FpsThrottleEnabled", "HeadsUpDisplay",  "Texture", "Value", "WaterColor", "SkinColor", "SparkleColor", "FogColor", "HeadColor", "LeftArmColor", "RightArmColor", "TorsoColor", "RightLegColor", "LeftLegColor","ShadowColor", "Ambient", "SecondaryColor"}
430
	s = Instance.new("ScreenGui", game.Players.LocalPlayer.PlayerGui)
431
	pgr = Instance.new("TextButton")
432
	pgr.Parent = s
433
	pgr.Size = UDim2.new(0,100,0,40)
434
	pgr.Position = UDim2.new(0,30,0,440)
435
	pgr.Text="Xplorer"
436
	pgr.BackgroundTransparency = 0.7
437
	pgr.TextColor = BrickColor.new("Black")
438
	pgr.BackgroundColor = BrickColor.new("Really Black")
439
	pgr.BorderColor = BrickColor.new("Black")
440
	pgr.Font = "ArialBold"
441
	pgr.FontSize = "Size14"
442
	pgr.TextStrokeColor3 = Color3.new(0/0,0/0,0/0)
443
	pgr.TextStrokeTransparency = 0.3
444
	pgr.BorderSizePixel = 1
445
	pgr.BorderColor = BrickColor.new("White")
446
	
447
	if game.Players.LocalPlayer.PlayerGui:findFirstChild("Explorer") then 
448
	game.Players.LocalPlayer.PlayerGui:findFirstChild("Explorer"):Remove() 
449
	end
450
	
451
	
452
	
453
	local Cloned
454
	local Deleted
455
	local DeleteParent
456
	local Player
457
	local Search
458
	local ScriptSearch
459
	local Gui
460
	local Cloned = nil
461
	local Deleted = nil
462
	local DeleteParent = nil
463
	local Current = 0
464
	local CurrentOption = 0
465
	
466
	function Clear()
467
	if Gui then 
468
	Gui:Remove() 
469
	end
470
	Current = 0
471
	CurrentOption = 0
472
	end
473
	
474
	function AddButton(N, Function, Color, Copy)
475
	if not N then 
476
	error("RenderButton - No Name Specified")
477
	end
478
	if not Function then 
479
	error("RenderButton - No Function Specified") 
480
	end
481
	if not Color then 
482
	Color = Color3.new(1, 1, 1) 
483
	end
484
	if Copy == nil then 
485
	Copy = true 
486
	end
487
	P = Instance.new("TextButton")
488
	if Copy then
489
	P.Size = UDim2.new(0, 110, 0, 20)
490
	else
491
	P.Size = UDim2.new(0, 130, 0, 20)
492
	end
493
	P.Text = N.Name
494
	P.Name = N.Name
495
	P.Parent = Gui
496
	P.BackgroundColor3 = Color
497
	P.TextColor3 = Color3.new(0, 0, 0)
498
	P.BackgroundTransparency = 0.5
499
	P.Position = UDim2.new(0, ((math.modf(Current/30))*150)+300, 0, 50+(20*((Current%30)-1)))
500
	P.MouseButton1Click:connect(function() 
501
	Function(P) 
502
	end)
503
	D = Instance.new("TextButton")
504
	D.Size = UDim2.new(0, 20, 0, 20)
505
	D.Text = "X"
506
	D.Name = N.Name
507
	D.Parent = Gui
508
	D.BackgroundColor3 = Color3.new(1, 0, 0)
509
	D.TextColor3 = Color3.new(0, 0, 0)
510
	D.BackgroundTransparency = 0.5
511
	D.Position = UDim2.new(0, ((math.modf(Current/30))*150)+300+130, 0, 50+(20*((Current%30)-1)))
512
	D.MouseButton1Click:connect(function()
513
	Deleted = N
514
	DeleteParent = N.Parent
515
	N.Parent = nil
516
	Clear()
517
	Search(DeleteParent)
518
	end)
519
	if Copy then
520
	C = Instance.new("TextButton")
521
	C.Size = UDim2.new(0, 20, 0, 20)
522
	C.Text = "C"
523
	C.Name = N.Name
524
	C.Parent = Gui
525
	C.BackgroundColor3 = Color3.new(0, 1, 0.5)
526
	C.TextColor3 = Color3.new(0, 0, 0)
527
	C.BackgroundTransparency = 0.5
528
	C.Position = UDim2.new(0, ((math.modf(Current/30))*150)+300+110, 0, 50+(20*((Current%30)-1)))
529
	C.MouseButton1Click:connect(function()
530
	Cloned = N
531
	Clear()
532
	Search(N.Parent)
533
	end)
534
	end
535
	Current = Current + 1
536
	return P
537
	end
538
	
539
	function AddOption(N, Function, Color, Text)
540
	if not N then 
541
	error("RenderButton - No Name Specified") 
542
	end
543
	if not Color then 
544
	Color = Color3.new(1, 1, 1) 
545
	end
546
	if Text == nil then 
547
	Text = false 
548
	end
549
	if Text then
550
	P = Instance.new("TextBox")
551
	else
552
	P = Instance.new("TextButton")
553
	end
554
	P.Text = N
555
	P.Name = N
556
	P.Parent = Gui
557
	P.BackgroundColor3 = Color
558
	P.TextColor3 = Color3.new(0, 0, 0)
559
	P.BackgroundTransparency = 0.5
560
	P.Size = UDim2.new(0, 150, 0, 20)
561
	P.Position = UDim2.new(0, ((math.modf(CurrentOption/30))*150)+150, 0, 50+(20*((CurrentOption%30)-1)))
562
	if not Text and Function then
563
	P.MouseButton1Click:connect(function() Function(P) end)
564
	end
565
	CurrentOption = CurrentOption + 1
566
	return P
567
	end
568
	
569
	function AddTextOption(Obj, Prop)
570
	local Ob = Obj
571
	local Pro = Prop
572
	if type(Ob[Pro]) == "number" or type(Ob[Pro]) == "string" then
573
	CurrentOption = CurrentOption + 1
574
	local T = AddOption(Ob[Pro], nil, Color3.new(0.1, 0.4, 0.1), true)
575
	CurrentOption = CurrentOption - 2
576
	local O = AddOption("Change "..Pro..":", function() Ob[Pro] = T.Text end, Color3.new(0.1, 0.8, 0.1), false)
577
	CurrentOption = CurrentOption + 1
578
	end
579
	end
580
	
581
	function AddBrickColorOption(Obj, Prop)
582
	local Ob = Obj
583
	local Pro = Prop
584
	if BrickColor.new(tostring(Ob[Pro])) == Ob[Pro] then
585
	CurrentOption = CurrentOption + 1
586
	local T = AddOption(tostring(Ob[Pro]), nil, Color3.new(0.1, 0.4, 0.1), true)
587
	CurrentOption = CurrentOption - 2
588
	local O = AddOption("Change "..Pro..":", function() Ob[Pro] = BrickColor.new(T.Text) end, Color3.new(0.1, 0.8, 0.1), false)
589
	CurrentOption = CurrentOption + 1
590
	end
591
	end
592
	
593
	function UnanchorObject(Objects)
594
	local function Recurse(Base)
595
	for _, Object in pairs(Base:GetChildren()) do
596
	if _G.TestProperty(Object, "Anchored") then
597
	Object.Anchored = not Object.Anchored
598
	end
599
	Recurse(Object)
600
	end
601
	end
602
	Recurse(Objects)
603
	end
604
	
605
	
606
	
607
	
608
	function AddBoolOption(Obj, Prop)
609
	local Ob = Obj
610
	local Pro = Prop
611
	if type(Ob[Pro]) == "boolean" then
612
	local O = AddOption(Pro..": "..tostring(Ob[Pro]), nil, Color3.new(0.1, 0.8, 0.1), false)
613
	O.MouseButton1Click:connect(function()
614
	if Ob[Pro] then
615
	Ob[Pro] = false
616
	O.Text = Pro..": false"
617
	else
618
	Ob[Pro] = true
619
	O.Text = Pro..": true"
620
	end
621
	end)
622
	end
623
	end
624
	
625
	function TestProperty(Obj, Property)
626
	Success = pcall(function() 
627
	if Obj[Property] then 
628
	return 
629
	end 
630
	end)
631
	return Success
632
	end
633
	
634
	function LoadOptions(Object)
635
	for Num, Prop in pairs(TextProperties) do
636
	if TestProperty(Object, Prop) then
637
	AddTextOption(Object, Prop)
638
	end
639
	end
640
	for Num, Prop in pairs(BoolProperties) do
641
	if TestProperty(Object, Prop) then
642
	AddBoolOption(Object, Prop)
643
	end
644
	end
645
	for Num, Prop in pairs(BrickColorProperties) do
646
	if TestProperty(Object, Prop) then
647
	AddBrickColorOption(Object, Prop)
648
	end
649
	end
650
	end
651
	
652
	
653
	function AddForceField(Player) 
654
	Instance.new("ForceField", Player.Character)
655
	end
656
	function Killp(Player)
657
	Player.Character.Humanoid.Health=0
658
	end
659
	function AddExplode(Player) 
660
	Instance.new("Explosion", Player.Character)
661
	end
662
	function AddSparkles(Player) 
663
	Instance.new("Sparkles", Player.Character)
664
	end
665
	
666
	
667
	function FreezeParts(b) 
668
	if (b.className == "Part") then
669
	b.Anchored=true;
670
	end
671
	end
672
	
673
	
674
	
675
	
676
	function Search(Object)
677
	Gui = Instance.new("ScreenGui")
678
	Gui.Parent = game.Players.LocalPlayer.PlayerGui
679
	Gui.Name = "Explorer"
680
	if Object ~= game then
681
	AddOption("Back", function() 
682
	Clear(); 
683
	Search(Object.Parent) 
684
	end, Color3.new(0.5, 1, 1), false)
685
	end
686
	if Object:IsA("Sound") then
687
	AddOption("Copy ID", function() CopyString(tostring(Object.SoundId):sub(14)); warn("Copied."); Clear(); Search(Object); end, Color3.new(1, 0.2, 0), false)
688
	AddOption("Play", function() Object:Play(); Clear(); Search(Object); end, Color3.new(0, 0, 1), false)
689
	AddOption("Stop", function() Object:Stop(); Clear(); Search(Object); end, Color3.new(1, 1, 0), false)
690
	end
691
	if Object:IsA("BoolValue") then
692
	AddBoolOption(Object,"Value")
693
	end
694
	if Object:IsA("Workspace") then
695
	AddOption("BlackHole", function() local p= game.Players:GetChildren() for i= 1, #p do if p[i] ~= "LocalPlayer" then b = Instance.new("BodyPosition") b.Parent = p[i].Character.Torso b.maxForce = Vector3.new(6000000,60000000,60000000) b.position = Vector3.new(100,10,0)end end end, Color3.new(1, 0.6, 0.1), false) 
696
	end
697
	if Object:IsA("IntValue") or Object:IsA("StringValue") or Object:IsA("NumberValue")  then
698
	AddOption("Copy Value", function() CopyString(tostring(Object.Value)); warn("Copied."); Clear(); Search(Object); end, Color3.new(1, 0.2, 0), false)
699
	end
700
	if Object:IsA("TextLabel") or Object:IsA("TextBox") or Object:IsA("Message")  then
701
	AddOption("Copy Value", function() CopyString(tostring(Object.Text)); warn("Copied."); Clear(); Search(Object); end, Color3.new(1, 0.2, 0), false)
702
	end
703
	if Object ~= game then
704
	AddOption("Unanchor Children", function() UnanchorObject(Object);  Clear(); Search(Object); end, Color3.new(1, 0.2, 0), false)
705
	AddOption("ClearAllChildren", function() Object:ClearAllChildren(); Clear(); Search(Object); end, Color3.new(1, 0.6, 0.1), false)
706
	end
707
	if Object:IsA("Model") then
708
	AddOption("SaveInstance", function() SaveInstance(Object) end, Color3.new(1, 1, 1), false)
709
	end
710
	AddOption("Reload", function() Clear(); Search(Object); end, Color3.new(0.2, 1, 0.2), false)
711
	if Cloned then
712
	AddOption("Paste", function() Cloned:Clone().Parent = Object; Clear(); Search(Object); end, Color3.new(0.5, 1, 1), false)
713
	end
714
	if Deleted then
715
	AddOption("Undo", function() Deleted.Parent = DeleteParent; Deleted = nil; DeletedParent = nil; Clear(); Search(Object); end, Color3.new(1, 0.6, 0.1), false)
716
	end
717
	if Object:IsA("Player") then
718
	AddOption("SwitchCamera", function() Clear(); if Object.CameraMode == "Classic" then Object.CameraMode = "LockFirstPerson" Search(Object) else Object.CameraMode = "Classic" Search(Object); end end, Color3.new(1, 0.6, 0.1), false)
719
	AddOption("Goto Character", function() Clear(); if Object.Character then Search(Object.Character); end end, Color3.new(1, 1, 1), false)
720
	AddOption("Kill", function() Killp(Object) end, Color3.new(1,0.6,0.1), false)
721
	AddOption("Freeze", function() FreezeParts(Object.Character.Torso); end, Color3.new(1, 0.6, 0.1), false)
722
	AddOption("Unequip Tools", function() Object.Character.Humanoid:UnequipTools() end, Color3.new(1, 0.6, 0.1), false)
723
	--AddOption("Explode", function() AddExplode(Object); end, Color3.new(1, 0.6, 0.1), false)
724
	end
725
	
726
	
727
	
728
	if Object:IsA("Lighting") then
729
	AddOption("Night", function() Object.TimeOfDay="24:24:24" end, Color3.new(1.,0.6,0.1), false)
730
	AddOption("Day", function() Object.TimeOfDay="12:12:12" end, Color3.new(1.,0.6,0.1), false)
731
	end
732
	if Object:IsA("LocalScript") or Object:IsA("ModuleScript") then
733
	AddOption("EditScript", function() Clear(); ScriptSearch(Object); end, Color3.new(1, 1, 1), false)
734
	end
735
	if Object:IsA("Terrain") then
736
	AddOption("Clear", function() Object:Clear(); end, Color3.new(1, 1, 1), false)
737
	end
738
	
739
	LoadOptions(Object)
740
	AddOption("Close", Clear, Color3.new(1, 0.2, 0), false)
741
	if not Object:IsA("Workspace") or not Object:IsA("Player") then
742
	for Num, Obj in pairs(Object:GetChildren()) do
743
	--if not Obj:IsA("BasePart") or not Object.Parent == game.Workspace then
744
	if true then
745
	if Obj:IsA("LocalScript") then
746
	AddButton(Obj, function() Clear(); Search(Obj); end, Color3.new(1, 0, 0), true)
747
	elseif Obj:IsA("Script") or Obj:IsA("StarterScript") or Obj:IsA("CoreScript") then
748
	AddButton(Obj, function() Clear(); Search(Obj); end, Color3.new(0.5, 0.5, 0.8), true)
749
	elseif Obj.Parent == game then
750
	AddButton(Obj, function() Clear(); Search(Obj); end, Color3.new(1, 1, 1), false)
751
	else
752
	AddButton(Obj, function() Clear(); Search(Obj); end, Color3.new(1, 1, 1), true)
753
	end
754
	end
755
	end
756
	end
757
	function MoveUp(Place, Amount)
758
	for i,v in pairs(Place:GetChildren()) do
759
	if v:IsA("TextLabel") or v:IsA("TextBox") then
760
	v.Position = v.Position + UDim2.new(0,0,0,-Amount)
761
	end
762
	end
763
	end
764
	function MoveDown(Place, Amount)
765
	for i,v in pairs(Place:GetChildren()) do
766
	if v:IsA("TextLabel") or v:IsA("TextBox") then
767
	v.Position = v.Position + UDim2.new(0,0,0,Amount)
768
	end
769
	end
770
	end
771
	i=0
772
	function ScriptSearch(S)
773
	Script2 = S
774
	Script = decompile(Script2)
775
	Table = {}
776
	Enabled = true
777
	Gui = Instance.new("ScreenGui")
778
	Gui.Parent = game.Players.LocalPlayer.PlayerGui
779
	Gui.Name = "Explorer"
780
	while Enabled do
781
	Start, End = string.find(Script, '\n')
782
	print(Start, End)
783
	if Start and End then
784
	table.insert(Table, string.sub(Script, 1, End))
785
	New = string.sub(Script, End+1, string.len(Script))
786
	Script = New
787
	else
788
	Enabled = false
789
	table.insert(Table, string.sub(Script, 1, End))
790
	print("Finished")
791
	end
792
	end
793
	P = Instance.new("TextLabel")
794
	P.Size = UDim2.new(0, 500, 0, 20)
795
	P.Text = Script2.Name
796
	P.Name = "Script Line"
797
	P.Parent = Gui
798
	P.BackgroundColor3 = Color3.new(1, 1, 1)
799
	P.TextColor3 = Color3.new(0, 0, 0)
800
	P.BackgroundTransparency = 0.5
801
	P.Position = UDim2.new(0.5, -250, 0, 150+(20*(i-1)))
802
	P.TextXAlignment = "Left"
803
	i=i+1
804
	New = {}
805
	for I,Val in pairs(Table) do
806
	print(Val)
807
	P = Instance.new("TextBox")
808
	P.ClearTextOnFocus = false
809
	P.Size = UDim2.new(0, 500, 0, 20)
810
	P.Text = Val
811
	P.Name = "Script Line"
812
	P.Parent = Gui
813
	P.BackgroundColor3 = Color3.new(1, 1, 1)
814
	P.TextColor3 = Color3.new(0, 0, 0)
815
	P.BackgroundTransparency = 0.5
816
	P.Position = UDim2.new(0.5, -250, 0, 150+(20*(i-1)))
817
	P.TextXAlignment = "Left"
818
	table.insert(New, P)
819
	i=i+1
820
	end
821
	i=1
822
	P = Instance.new("TextButton")
823
	P.Size = UDim2.new(0, 20, 0, 20)
824
	P.Text = "^"
825
	P.Name = "Scroll"
826
	P.Parent = Gui
827
	P.BackgroundColor3 = Color3.new(1, 1, 1)
828
	P.TextColor3 = Color3.new(0, 0, 0)
829
	P.BackgroundTransparency = 0.5
830
	P.Position = UDim2.new(0.5, -270, 0, 150+(20*(i-1)))
831
	P.MouseButton1Click:connect(function() 
832
	MoveUp(Gui, -20) 
833
	end)
834
	i=i+1
835
	P = Instance.new("TextButton")
836
	P.Size = UDim2.new(0, 20, 0, 20)
837
	P.Text = "v"
838
	P.Name = "Scroll"
839
	P.Parent = Gui
840
	P.BackgroundColor3 = Color3.new(1, 1, 1)
841
	P.TextColor3 = Color3.new(0, 0, 0)
842
	P.BackgroundTransparency = 0.5
843
	P.Position = UDim2.new(0.5, -270, 0, 150+(20*(i-1)))
844
	P.MouseButton1Click:connect(function() 
845
	MoveDown(Gui, -20) 
846
	end)
847
	i=i+1
848
	P = Instance.new("TextButton")
849
	P.Size = UDim2.new(0, 20, 0, 20)
850
	P.Text = "^^"
851
	P.Name = "Scroll"
852
	P.Parent = Gui
853
	P.BackgroundColor3 = Color3.new(1, 1, 1)
854
	P.TextColor3 = Color3.new(0, 0, 0)
855
	P.BackgroundTransparency = 0.5
856
	P.Position = UDim2.new(0.5, -270, 0, 150+(20*(i-1)))
857
	P.MouseButton1Click:connect(function() 
858
	MoveUp(Gui, -200) 
859
	end)
860
	i=i+1
861
	P = Instance.new("TextButton")
862
	P.Size = UDim2.new(0, 20, 0, 20)
863
	P.Text = "vv"
864
	P.Name = "Scroll"
865
	P.Parent = Gui
866
	P.BackgroundColor3 = Color3.new(1, 1, 1)
867
	P.TextColor3 = Color3.new(0, 0, 0)
868
	P.BackgroundTransparency = 0.5
869
	P.Position = UDim2.new(0.5, -270, 0, 150+(20*(i-1)))
870
	P.MouseButton1Click:connect(function() 
871
	MoveDown(Gui, -200) 
872
	end)
873
	i=i+1
874
	P = Instance.new("TextButton")
875
	P.Size = UDim2.new(0, 20, 0, 20)
876
	P.Text = "S"
877
	P.Name = "Save"
878
	P.Parent = Gui
879
	P.BackgroundColor3 = Color3.new(0, 1, 0)
880
	P.TextColor3 = Color3.new(0, 0, 0)
881
	P.BackgroundTransparency = 0.5
882
	P.Position = UDim2.new(0.5, -270, 0, 150+(20*(i-1)))
883
	P.MouseButton1Click:connect(function()
884
	StringS = ""
885
	for Num, Obj in pairs(New) do
886
	StringS = StringS..Obj.Text..'\n'
887
	end
888
	S.Source = StringS
889
	S.Disabled = true
890
	S.Disabled = false
891
	end)
892
	i=i+1
893
	P = Instance.new("TextButton")
894
	P.Size = UDim2.new(0, 20, 0, 20)
895
	P.Text = "C"
896
	P.Name = "Copy"
897
	P.Parent = Gui
898
	P.BackgroundColor3 = Color3.new(1, 0.2, 0)
899
	P.TextColor3 = Color3.new(0, 0, 0)
900
	P.BackgroundTransparency = 0.5
901
	P.Position = UDim2.new(0.5, -270, 0, 150+(20*(i-1)))
902
	P.MouseButton1Click:connect(function()
903
	StringS = ""
904
	for Num, Obj in pairs(New) do
905
	StringS = StringS..Obj.Text..'\n'
906
	end
907
	CopyString(StringS)
908
	end)
909
	i=i+1
910
	P = Instance.new("TextButton")
911
	P.Size = UDim2.new(0, 20, 0, 20)
912
	P.Text = "x"
913
	P.Name = "Back"
914
	P.Parent = Gui
915
	P.BackgroundColor3 = Color3.new(1, 0.2, 0)
916
	P.TextColor3 = Color3.new(0, 0, 0)
917
	P.BackgroundTransparency = 0.5
918
	P.Position = UDim2.new(0.5, -270, 0, 150+(20*(i-1)))
919
	P.MouseButton1Click:connect(function()
920
	Clear()
921
	i=0
922
	Search(S)
923
	end)
924
	i=i+1
925
	end
926
	end
927
	
928
	pgr.MouseButton1Click:connect(function()
929
	Clear()
930
	Search(game)
931
	end)
932
end
933
934
Survivor = Instance.new("ScreenGui")
935
CircleStart = Instance.new("ImageLabel")
936
Vicon = Instance.new("ImageLabel")
937
LoadNotify = Instance.new("TextLabel")
938
VersionNotify = Instance.new("TextLabel")
939
NotificationFrame = Instance.new("Frame")
940
MainText = Instance.new("TextLabel")
941
Borders = Instance.new("Frame")
942
Border = Instance.new("ImageLabel")
943
Border_2 = Instance.new("ImageLabel")
944
Border_3 = Instance.new("ImageLabel")
945
Border_4 = Instance.new("ImageLabel")
946
Border_5 = Instance.new("ImageLabel")
947
Border_6 = Instance.new("ImageLabel")
948
Border_7 = Instance.new("ImageLabel")
949
Border_8 = Instance.new("ImageLabel")
950
Info = Instance.new("TextLabel")
951
Borders_2 = Instance.new("Frame")
952
Border_9 = Instance.new("ImageLabel")
953
Border_10 = Instance.new("ImageLabel")
954
Border_11 = Instance.new("ImageLabel")
955
Border_12 = Instance.new("ImageLabel")
956
Border_13 = Instance.new("ImageLabel")
957
Border_14 = Instance.new("ImageLabel")
958
Border_15 = Instance.new("ImageLabel")
959
Border_16 = Instance.new("ImageLabel")
960
AuthFrame = Instance.new("Frame")
961
DiscordTag = Instance.new("TextBox")
962
Borders_3 = Instance.new("Frame")
963
Border_17 = Instance.new("ImageLabel")
964
Border_18 = Instance.new("ImageLabel")
965
Border_19 = Instance.new("ImageLabel")
966
Border_20 = Instance.new("ImageLabel")
967
Border_21 = Instance.new("ImageLabel")
968
Border_22 = Instance.new("ImageLabel")
969
Border_23 = Instance.new("ImageLabel")
970
Border_24 = Instance.new("ImageLabel")
971
Vicon_2 = Instance.new("ImageLabel")
972
Title = Instance.new("TextLabel")
973
ProceedButton = Instance.new("TextButton")
974
Borders_4 = Instance.new("Frame")
975
Border_25 = Instance.new("ImageLabel")
976
Border_26 = Instance.new("ImageLabel")
977
Border_27 = Instance.new("ImageLabel")
978
Border_28 = Instance.new("ImageLabel")
979
Border_29 = Instance.new("ImageLabel")
980
Border_30 = Instance.new("ImageLabel")
981
Border_31 = Instance.new("ImageLabel")
982
Border_32 = Instance.new("ImageLabel")
983
CancelButton = Instance.new("TextButton")
984
Borders_5 = Instance.new("Frame")
985
Border_33 = Instance.new("ImageLabel")
986
Border_34 = Instance.new("ImageLabel")
987
Border_35 = Instance.new("ImageLabel")
988
Border_36 = Instance.new("ImageLabel")
989
Border_37 = Instance.new("ImageLabel")
990
Border_38 = Instance.new("ImageLabel")
991
Border_39 = Instance.new("ImageLabel")
992
Border_40 = Instance.new("ImageLabel")
993
HTBBtn = Instance.new("TextButton")
994
Borders_6 = Instance.new("Frame")
995
Border_41 = Instance.new("ImageLabel")
996
Border_42 = Instance.new("ImageLabel")
997
Border_43 = Instance.new("ImageLabel")
998
Border_44 = Instance.new("ImageLabel")
999
Border_45 = Instance.new("ImageLabel")
1000
Border_46 = Instance.new("ImageLabel")
1001
Border_47 = Instance.new("ImageLabel")
1002
Border_48 = Instance.new("ImageLabel")
1003
QuitButton = Instance.new("ImageButton")
1004
Borders_7 = Instance.new("Frame")
1005
Border_49 = Instance.new("ImageLabel")
1006
Border_50 = Instance.new("ImageLabel")
1007
Border_51 = Instance.new("ImageLabel")
1008
Border_52 = Instance.new("ImageLabel")
1009
Border_53 = Instance.new("ImageLabel")
1010
Border_54 = Instance.new("ImageLabel")
1011
Border_55 = Instance.new("ImageLabel")
1012
Border_56 = Instance.new("ImageLabel")
1013
RefreshButton = Instance.new("ImageButton")
1014
Borders_8 = Instance.new("Frame")
1015
Border_57 = Instance.new("ImageLabel")
1016
Border_58 = Instance.new("ImageLabel")
1017
Border_59 = Instance.new("ImageLabel")
1018
Border_60 = Instance.new("ImageLabel")
1019
Border_61 = Instance.new("ImageLabel")
1020
Border_62 = Instance.new("ImageLabel")
1021
Border_63 = Instance.new("ImageLabel")
1022
Border_64 = Instance.new("ImageLabel")
1023
MainButton = Instance.new("ImageButton")
1024
Borders_9 = Instance.new("Frame")
1025
Border_65 = Instance.new("ImageLabel")
1026
Border_66 = Instance.new("ImageLabel")
1027
Border_67 = Instance.new("ImageLabel")
1028
Border_68 = Instance.new("ImageLabel")
1029
Border_69 = Instance.new("ImageLabel")
1030
Border_70 = Instance.new("ImageLabel")
1031
Border_71 = Instance.new("ImageLabel")
1032
Border_72 = Instance.new("ImageLabel")
1033
1034
-- Properties
1035
1036
Survivor.Name		 = "Survivor"
1037
Survivor.Parent	   = game.CoreGui
1038
Survivor.ResetOnSpawn = false
1039
1040
CircleStart.Name = "CircleStart"
1041
CircleStart.Parent = Survivor
1042
CircleStart.BackgroundColor3 = Color3.new(1, 1, 1)
1043
CircleStart.BackgroundTransparency = 1
1044
CircleStart.BorderSizePixel = 0
1045
CircleStart.Position = UDim2.new(0.426999986, 0, 1, 0)
1046
CircleStart.Size = UDim2.new(0, 200, 0, 200)
1047
CircleStart.ZIndex = 100
1048
CircleStart.Image = "rbxassetid://232918622"
1049
CircleStart.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
1050
1051
Vicon.Name = "Vicon"
1052
Vicon.Parent = CircleStart
1053
Vicon.BackgroundColor3 = Color3.new(1, 1, 1)
1054
Vicon.BackgroundTransparency = 1
1055
Vicon.BorderSizePixel = 0
1056
Vicon.Position = UDim2.new(0, 50, 0, 50)
1057
Vicon.Size = UDim2.new(0, 100, 0, 100)
1058
Vicon.ZIndex = 110
1059
Vicon.Image = "rbxassetid://1677963821"
1060
1061
LoadNotify.Name = "LoadNotify"
1062
LoadNotify.Parent = CircleStart
1063
LoadNotify.BackgroundColor3 = Color3.new(1, 1, 1)
1064
LoadNotify.BackgroundTransparency = 1
1065
LoadNotify.BorderSizePixel = 0
1066
LoadNotify.Position = UDim2.new(0, 0, 0, 150)
1067
LoadNotify.Size = UDim2.new(0, 200, 0, 50)
1068
LoadNotify.ZIndex = 150
1069
LoadNotify.Font = Enum.Font.Highway
1070
LoadNotify.Text = "Survivor GUI Loaded."
1071
LoadNotify.TextColor3 = Color3.new(1, 1, 1)
1072
LoadNotify.TextSize = 14
1073
1074
VersionNotify.Name = "VersionNotify"
1075
VersionNotify.Parent = CircleStart
1076
VersionNotify.BackgroundColor3 = Color3.new(1, 1, 1)
1077
VersionNotify.BackgroundTransparency = 1
1078
VersionNotify.BorderSizePixel = 0
1079
VersionNotify.Size = UDim2.new(0, 200, 0, 50)
1080
VersionNotify.ZIndex = 150
1081
VersionNotify.Font = Enum.Font.Highway
1082
VersionNotify.Text = "Version 4.0"
1083
VersionNotify.TextColor3 = Color3.new(1, 1, 1)
1084
VersionNotify.TextSize = 14
1085
1086
NotificationFrame.Name = "NotificationFrame"
1087
NotificationFrame.Parent = Survivor
1088
NotificationFrame.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
1089
NotificationFrame.BackgroundTransparency = 1
1090
NotificationFrame.Position = UDim2.new(0, 0, 0.100000001, 0)
1091
NotificationFrame.Size = UDim2.new(1, 0, 1, 0)
1092
NotificationFrame.ZIndex = 150
1093
1094
MainText.Name = "MainText"
1095
MainText.Parent = NotificationFrame
1096
MainText.BackgroundColor3 = Color3.new(1, 0.333333, 0)
1097
MainText.BorderSizePixel = 0
1098
MainText.Position = UDim2.new(0.0724743754, 0, 0.921383619, 0)
1099
MainText.Size = UDim2.new(0.912884355, 0, 0.0503144637, 0)
1100
MainText.ZIndex = 220
1101
MainText.Font = Enum.Font.Highway
1102
MainText.Text = "Unable To Load Whitelist."
1103
MainText.TextColor3 = Color3.new(1, 1, 1)
1104
MainText.TextScaled = true
1105
MainText.TextSize = 14
1106
MainText.TextWrapped = true
1107
1108
Borders.Name = "Borders"
1109
Borders.Parent = MainText
1110
Borders.BackgroundColor3 = Color3.new(1, 1, 1)
1111
Borders.BackgroundTransparency = 1
1112
Borders.BorderSizePixel = 0
1113
Borders.Size = UDim2.new(1, 0, 1, 0)
1114
Borders.ZIndex = 120
1115
1116
Border.Name = "Border"
1117
Border.Parent = Borders
1118
Border.BackgroundColor3 = Color3.new(1, 0.333333, 0)
1119
Border.BackgroundTransparency = 1
1120
Border.BorderSizePixel = 0
1121
Border.Position = UDim2.new(0, -12, 0, -12)
1122
Border.Size = UDim2.new(0, 12, 0, 12)
1123
Border.ZIndex = 220
1124
Border.Image = "http://www.roblox.com/asset/?id=238725003"
1125
Border.ImageColor3 = Color3.new(1, 0.333333, 0)
1126
Border.ImageRectSize = Vector2.new(12, 12)
1127
1128
Border_2.Name = "Border"
1129
Border_2.Parent = Borders
1130
Border_2.BackgroundColor3 = Color3.new(1, 0.333333, 0)
1131
Border_2.BackgroundTransparency = 1
1132
Border_2.BorderSizePixel = 0
1133
Border_2.Position = UDim2.new(1, 0, 0, -12)
1134
Border_2.Size = UDim2.new(0, 12, 0, 12)
1135
Border_2.ZIndex = 220
1136
Border_2.Image = "http://www.roblox.com/asset/?id=238725003"
1137
Border_2.ImageColor3 = Color3.new(1, 0.333333, 0)
1138
Border_2.ImageRectOffset = Vector2.new(24, 0)
1139
Border_2.ImageRectSize = Vector2.new(12, 12)
1140
1141
Border_3.Name = "Border"
1142
Border_3.Parent = Borders
1143
Border_3.BackgroundColor3 = Color3.new(1, 0.333333, 0)
1144
Border_3.BackgroundTransparency = 1
1145
Border_3.BorderSizePixel = 0
1146
Border_3.Position = UDim2.new(0, -12, 1, 0)
1147
Border_3.Size = UDim2.new(0, 12, 0, 12)
1148
Border_3.ZIndex = 220
1149
Border_3.Image = "http://www.roblox.com/asset/?id=238725003"
1150
Border_3.ImageColor3 = Color3.new(1, 0.333333, 0)
1151
Border_3.ImageRectOffset = Vector2.new(0, 24)
1152
Border_3.ImageRectSize = Vector2.new(12, 12)
1153
1154
Border_4.Name = "Border"
1155
Border_4.Parent = Borders
1156
Border_4.BackgroundColor3 = Color3.new(1, 0.333333, 0)
1157
Border_4.BackgroundTransparency = 1
1158
Border_4.BorderSizePixel = 0
1159
Border_4.Position = UDim2.new(1, 0, 1, 0)
1160
Border_4.Size = UDim2.new(0, 12, 0, 12)
1161
Border_4.ZIndex = 220
1162
Border_4.Image = "http://www.roblox.com/asset/?id=238725003"
1163
Border_4.ImageColor3 = Color3.new(1, 0.333333, 0)
1164
Border_4.ImageRectOffset = Vector2.new(24, 24)
1165
Border_4.ImageRectSize = Vector2.new(12, 12)
1166
1167
Border_5.Name = "Border"
1168
Border_5.Parent = Borders
1169
Border_5.BackgroundColor3 = Color3.new(1, 0.333333, 0)
1170
Border_5.BackgroundTransparency = 1
1171
Border_5.BorderSizePixel = 0
1172
Border_5.Position = UDim2.new(0, 0, 1, 0)
1173
Border_5.Size = UDim2.new(1, 0, 0, 12)
1174
Border_5.ZIndex = 220
1175
Border_5.Image = "http://www.roblox.com/asset/?id=238725003"
1176
Border_5.ImageColor3 = Color3.new(1, 0.333333, 0)
1177
Border_5.ImageRectOffset = Vector2.new(12, 24)
1178
Border_5.ImageRectSize = Vector2.new(12, 12)
1179
1180
Border_6.Name = "Border"
1181
Border_6.Parent = Borders
1182
Border_6.BackgroundColor3 = Color3.new(1, 0.333333, 0)
1183
Border_6.BackgroundTransparency = 1
1184
Border_6.BorderSizePixel = 0
1185
Border_6.Position = UDim2.new(0, 0, 0, -12)
1186
Border_6.Size = UDim2.new(1, 0, 0, 12)
1187
Border_6.ZIndex = 220
1188
Border_6.Image = "http://www.roblox.com/asset/?id=238725003"
1189
Border_6.ImageColor3 = Color3.new(1, 0.333333, 0)
1190
Border_6.ImageRectOffset = Vector2.new(12, 0)
1191
Border_6.ImageRectSize = Vector2.new(12, 12)
1192
1193
Border_7.Name = "Border"
1194
Border_7.Parent = Borders
1195
Border_7.BackgroundColor3 = Color3.new(1, 0.333333, 0)
1196
Border_7.BackgroundTransparency = 1
1197
Border_7.BorderSizePixel = 0
1198
Border_7.Position = UDim2.new(0, -12, 0, 0)
1199
Border_7.Size = UDim2.new(0, 12, 1, 0)
1200
Border_7.ZIndex = 220
1201
Border_7.Image = "http://www.roblox.com/asset/?id=238725003"
1202
Border_7.ImageColor3 = Color3.new(1, 0.333333, 0)
1203
Border_7.ImageRectOffset = Vector2.new(0, 12)
1204
Border_7.ImageRectSize = Vector2.new(12, 12)
1205
1206
Border_8.Name = "Border"
1207
Border_8.Parent = Borders
1208
Border_8.BackgroundColor3 = Color3.new(1, 0.333333, 0)
1209
Border_8.BackgroundTransparency = 1
1210
Border_8.BorderSizePixel = 0
1211
Border_8.Position = UDim2.new(1, 0, 0, 0)
1212
Border_8.Size = UDim2.new(0, 12, 1, 0)
1213
Border_8.ZIndex = 220
1214
Border_8.Image = "http://www.roblox.com/asset/?id=238725003"
1215
Border_8.ImageColor3 = Color3.new(1, 0.333333, 0)
1216
Border_8.ImageRectOffset = Vector2.new(24, 12)
1217
Border_8.ImageRectSize = Vector2.new(12, 12)
1218
1219
Info.Name = "Info"
1220
Info.Parent = NotificationFrame
1221
Info.BackgroundColor3 = Color3.new(1, 0.333333, 0)
1222
Info.BorderSizePixel = 0
1223
Info.Position = UDim2.new(0.0117130307, 0, 0.921383679, 0)
1224
Info.Size = UDim2.new(0.0263543185, 0, 0.0503144637, 0)
1225
Info.ZIndex = 220
1226
Info.Font = Enum.Font.Highway
1227
Info.Text = "!"
1228
Info.TextColor3 = Color3.new(1, 1, 1)
1229
Info.TextScaled = true
1230
Info.TextSize = 14
1231
Info.TextWrapped = true
1232
1233
Borders_2.Name = "Borders"
1234
Borders_2.Parent = Info
1235
Borders_2.BackgroundColor3 = Color3.new(1, 1, 1)
1236
Borders_2.BackgroundTransparency = 1
1237
Borders_2.BorderSizePixel = 0
1238
Borders_2.Size = UDim2.new(1, 0, 1, 0)
1239
Borders_2.ZIndex = 120
1240
1241
Border_9.Name = "Border"
1242
Border_9.Parent = Borders_2
1243
Border_9.BackgroundColor3 = Color3.new(1, 0.333333, 0)
1244
Border_9.BackgroundTransparency = 1
1245
Border_9.BorderSizePixel = 0
1246
Border_9.Position = UDim2.new(0, -12, 0, -12)
1247
Border_9.Size = UDim2.new(0, 12, 0, 12)
1248
Border_9.ZIndex = 220
1249
Border_9.Image = "http://www.roblox.com/asset/?id=238725003"
1250
Border_9.ImageColor3 = Color3.new(1, 0.333333, 0)
1251
Border_9.ImageRectSize = Vector2.new(12, 12)
1252
1253
Border_10.Name = "Border"
1254
Border_10.Parent = Borders_2
1255
Border_10.BackgroundColor3 = Color3.new(1, 0.333333, 0)
1256
Border_10.BackgroundTransparency = 1
1257
Border_10.BorderSizePixel = 0
1258
Border_10.Position = UDim2.new(1, 0, 0, -12)
1259
Border_10.Size = UDim2.new(0, 12, 0, 12)
1260
Border_10.ZIndex = 220
1261
Border_10.Image = "http://www.roblox.com/asset/?id=238725003"
1262
Border_10.ImageColor3 = Color3.new(1, 0.333333, 0)
1263
Border_10.ImageRectOffset = Vector2.new(24, 0)
1264
Border_10.ImageRectSize = Vector2.new(12, 12)
1265
1266
Border_11.Name = "Border"
1267
Border_11.Parent = Borders_2
1268
Border_11.BackgroundColor3 = Color3.new(1, 0.333333, 0)
1269
Border_11.BackgroundTransparency = 1
1270
Border_11.BorderSizePixel = 0
1271
Border_11.Position = UDim2.new(0, -12, 1, 0)
1272
Border_11.Size = UDim2.new(0, 12, 0, 12)
1273
Border_11.ZIndex = 220
1274
Border_11.Image = "http://www.roblox.com/asset/?id=238725003"
1275
Border_11.ImageColor3 = Color3.new(1, 0.333333, 0)
1276
Border_11.ImageRectOffset = Vector2.new(0, 24)
1277
Border_11.ImageRectSize = Vector2.new(12, 12)
1278
1279
Border_12.Name = "Border"
1280
Border_12.Parent = Borders_2
1281
Border_12.BackgroundColor3 = Color3.new(1, 0.333333, 0)
1282
Border_12.BackgroundTransparency = 1
1283
Border_12.BorderSizePixel = 0
1284
Border_12.Position = UDim2.new(1, 0, 1, 0)
1285
Border_12.Size = UDim2.new(0, 12, 0, 12)
1286
Border_12.ZIndex = 220
1287
Border_12.Image = "http://www.roblox.com/asset/?id=238725003"
1288
Border_12.ImageColor3 = Color3.new(1, 0.333333, 0)
1289
Border_12.ImageRectOffset = Vector2.new(24, 24)
1290
Border_12.ImageRectSize = Vector2.new(12, 12)
1291
1292
Border_13.Name = "Border"
1293
Border_13.Parent = Borders_2
1294
Border_13.BackgroundColor3 = Color3.new(1, 0.333333, 0)
1295
Border_13.BackgroundTransparency = 1
1296
Border_13.BorderSizePixel = 0
1297
Border_13.Position = UDim2.new(0, 0, 1, 0)
1298
Border_13.Size = UDim2.new(1, 0, 0, 12)
1299
Border_13.ZIndex = 220
1300
Border_13.Image = "http://www.roblox.com/asset/?id=238725003"
1301
Border_13.ImageColor3 = Color3.new(1, 0.333333, 0)
1302
Border_13.ImageRectOffset = Vector2.new(12, 24)
1303
Border_13.ImageRectSize = Vector2.new(12, 12)
1304
1305
Border_14.Name = "Border"
1306
Border_14.Parent = Borders_2
1307
Border_14.BackgroundColor3 = Color3.new(1, 0.333333, 0)
1308
Border_14.BackgroundTransparency = 1
1309
Border_14.BorderSizePixel = 0
1310
Border_14.Position = UDim2.new(0, 0, 0, -12)
1311
Border_14.Size = UDim2.new(1, 0, 0, 12)
1312
Border_14.ZIndex = 220
1313
Border_14.Image = "http://www.roblox.com/asset/?id=238725003"
1314
Border_14.ImageColor3 = Color3.new(1, 0.333333, 0)
1315
Border_14.ImageRectOffset = Vector2.new(12, 0)
1316
Border_14.ImageRectSize = Vector2.new(12, 12)
1317
1318
Border_15.Name = "Border"
1319
Border_15.Parent = Borders_2
1320
Border_15.BackgroundColor3 = Color3.new(1, 0.333333, 0)
1321
Border_15.BackgroundTransparency = 1
1322
Border_15.BorderSizePixel = 0
1323
Border_15.Position = UDim2.new(0, -12, 0, 0)
1324
Border_15.Size = UDim2.new(0, 12, 1, 0)
1325
Border_15.ZIndex = 220
1326
Border_15.Image = "http://www.roblox.com/asset/?id=238725003"
1327
Border_15.ImageColor3 = Color3.new(1, 0.333333, 0)
1328
Border_15.ImageRectOffset = Vector2.new(0, 12)
1329
Border_15.ImageRectSize = Vector2.new(12, 12)
1330
1331
Border_16.Name = "Border"
1332
Border_16.Parent = Borders_2
1333
Border_16.BackgroundColor3 = Color3.new(1, 0.333333, 0)
1334
Border_16.BackgroundTransparency = 1
1335
Border_16.BorderSizePixel = 0
1336
Border_16.Position = UDim2.new(1, 0, 0, 0)
1337
Border_16.Size = UDim2.new(0, 12, 1, 0)
1338
Border_16.ZIndex = 220
1339
Border_16.Image = "http://www.roblox.com/asset/?id=238725003"
1340
Border_16.ImageColor3 = Color3.new(1, 0.333333, 0)
1341
Border_16.ImageRectOffset = Vector2.new(24, 12)
1342
Border_16.ImageRectSize = Vector2.new(12, 12)
1343
1344
AuthFrame.Name = "AuthFrame"
1345
AuthFrame.Parent = Survivor
1346
AuthFrame.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
1347
AuthFrame.Size = UDim2.new(1, 0, 1, 0)
1348
AuthFrame.Visible = false
1349
AuthFrame.ZIndex = 100
1350
1351
DiscordTag.Name = "DiscordTag"
1352
DiscordTag.Parent = AuthFrame
1353
DiscordTag.BackgroundColor3 = Color3.new(1, 1, 1)
1354
DiscordTag.BorderSizePixel = 0
1355
DiscordTag.Position = UDim2.new(0.214494854, 0, 0.463836491, 0)
1356
DiscordTag.Size = UDim2.new(0.545387983, 0, 0.0723270476, 0)
1357
DiscordTag.ZIndex = 120
1358
DiscordTag.Font = Enum.Font.Highway
1359
DiscordTag.PlaceholderColor3 = Color3.new(1, 1, 1)
1360
DiscordTag.Text = "DiscordTag#0000"
1361
DiscordTag.TextColor3 = Color3.new(0.784314, 0.784314, 0.784314)
1362
DiscordTag.TextScaled = true
1363
DiscordTag.TextSize = 14
1364
DiscordTag.TextWrapped = true
1365
DiscordTag.TextXAlignment = Enum.TextXAlignment.Left
1366
1367
Borders_3.Name = "Borders"
1368
Borders_3.Parent = DiscordTag
1369
Borders_3.BackgroundColor3 = Color3.new(1, 1, 1)
1370
Borders_3.BackgroundTransparency = 1
1371
Borders_3.BorderSizePixel = 0
1372
Borders_3.Size = UDim2.new(1, 0, 1, 0)
1373
Borders_3.ZIndex = 120
1374
1375
Border_17.Name = "Border"
1376
Border_17.Parent = Borders_3
1377
Border_17.BackgroundColor3 = Color3.new(1, 1, 1)
1378
Border_17.BackgroundTransparency = 1
1379
Border_17.BorderSizePixel = 0
1380
Border_17.Position = UDim2.new(0, -12, 0, -12)
1381
Border_17.Size = UDim2.new(0, 12, 0, 12)
1382
Border_17.ZIndex = 120
1383
Border_17.Image = "http://www.roblox.com/asset/?id=238725003"
1384
Border_17.ImageRectSize = Vector2.new(12, 12)
1385
1386
Border_18.Name = "Border"
1387
Border_18.Parent = Borders_3
1388
Border_18.BackgroundColor3 = Color3.new(1, 1, 1)
1389
Border_18.BackgroundTransparency = 1
1390
Border_18.BorderSizePixel = 0
1391
Border_18.Position = UDim2.new(1, 0, 0, -12)
1392
Border_18.Size = UDim2.new(0, 12, 0, 12)
1393
Border_18.ZIndex = 120
1394
Border_18.Image = "http://www.roblox.com/asset/?id=238725003"
1395
Border_18.ImageRectOffset = Vector2.new(24, 0)
1396
Border_18.ImageRectSize = Vector2.new(12, 12)
1397
1398
Border_19.Name = "Border"
1399
Border_19.Parent = Borders_3
1400
Border_19.BackgroundColor3 = Color3.new(1, 1, 1)
1401
Border_19.BackgroundTransparency = 1
1402
Border_19.BorderSizePixel = 0
1403
Border_19.Position = UDim2.new(0, -12, 1, 0)
1404
Border_19.Size = UDim2.new(0, 12, 0, 12)
1405
Border_19.ZIndex = 120
1406
Border_19.Image = "http://www.roblox.com/asset/?id=238725003"
1407
Border_19.ImageRectOffset = Vector2.new(0, 24)
1408
Border_19.ImageRectSize = Vector2.new(12, 12)
1409
1410
Border_20.Name = "Border"
1411
Border_20.Parent = Borders_3
1412
Border_20.BackgroundColor3 = Color3.new(1, 1, 1)
1413
Border_20.BackgroundTransparency = 1
1414
Border_20.BorderSizePixel = 0
1415
Border_20.Position = UDim2.new(1, 0, 1, 0)
1416
Border_20.Size = UDim2.new(0, 12, 0, 12)
1417
Border_20.ZIndex = 120
1418
Border_20.Image = "http://www.roblox.com/asset/?id=238725003"
1419
Border_20.ImageRectOffset = Vector2.new(24, 24)
1420
Border_20.ImageRectSize = Vector2.new(12, 12)
1421
1422
Border_21.Name = "Border"
1423
Border_21.Parent = Borders_3
1424
Border_21.BackgroundColor3 = Color3.new(1, 1, 1)
1425
Border_21.BackgroundTransparency = 1
1426
Border_21.BorderSizePixel = 0
1427
Border_21.Position = UDim2.new(0, 0, 1, 0)
1428
Border_21.Size = UDim2.new(1, 0, 0, 12)
1429
Border_21.ZIndex = 120
1430
Border_21.Image = "http://www.roblox.com/asset/?id=238725003"
1431
Border_21.ImageRectOffset = Vector2.new(12, 24)
1432
Border_21.ImageRectSize = Vector2.new(12, 12)
1433
1434
Border_22.Name = "Border"
1435
Border_22.Parent = Borders_3
1436
Border_22.BackgroundColor3 = Color3.new(1, 1, 1)
1437
Border_22.BackgroundTransparency = 1
1438
Border_22.BorderSizePixel = 0
1439
Border_22.Position = UDim2.new(0, 0, 0, -12)
1440
Border_22.Size = UDim2.new(1, 0, 0, 12)
1441
Border_22.ZIndex = 120
1442
Border_22.Image = "http://www.roblox.com/asset/?id=238725003"
1443
Border_22.ImageRectOffset = Vector2.new(12, 0)
1444
Border_22.ImageRectSize = Vector2.new(12, 12)
1445
1446
Border_23.Name = "Border"
1447
Border_23.Parent = Borders_3
1448
Border_23.BackgroundColor3 = Color3.new(1, 1, 1)
1449
Border_23.BackgroundTransparency = 1
1450
Border_23.BorderSizePixel = 0
1451
Border_23.Position = UDim2.new(0, -12, 0, 0)
1452
Border_23.Size = UDim2.new(0, 12, 1, 0)
1453
Border_23.ZIndex = 120
1454
Border_23.Image = "http://www.roblox.com/asset/?id=238725003"
1455
Border_23.ImageRectOffset = Vector2.new(0, 12)
1456
Border_23.ImageRectSize = Vector2.new(12, 12)
1457
1458
Border_24.Name = "Border"
1459
Border_24.Parent = Borders_3
1460
Border_24.BackgroundColor3 = Color3.new(1, 1, 1)
1461
Border_24.BackgroundTransparency = 1
1462
Border_24.BorderSizePixel = 0
1463
Border_24.Position = UDim2.new(1, 0, 0, 0)
1464
Border_24.Size = UDim2.new(0, 12, 1, 0)
1465
Border_24.ZIndex = 120
1466
Border_24.Image = "http://www.roblox.com/asset/?id=238725003"
1467
Border_24.ImageRectOffset = Vector2.new(24, 12)
1468
Border_24.ImageRectSize = Vector2.new(12, 12)
1469
1470
Vicon_2.Name = "Vicon"
1471
Vicon_2.Parent = AuthFrame
1472
Vicon_2.BackgroundColor3 = Color3.new(1, 1, 1)
1473
Vicon_2.BackgroundTransparency = 1
1474
Vicon_2.BorderSizePixel = 0
1475
Vicon_2.Position = UDim2.new(0, 211, 0, 283)
1476
Vicon_2.Size = UDim2.new(0, 70, 0, 70)
1477
Vicon_2.ZIndex = 110
1478
Vicon_2.Image = "rbxassetid://1677963821"
1479
1480
Title.Name = "Title"
1481
Title.Parent = AuthFrame
1482
Title.BackgroundColor3 = Color3.new(1, 1, 1)
1483
Title.BackgroundTransparency = 1
1484
Title.BorderSizePixel = 0
1485
Title.Position = UDim2.new(0.156661794, 0, 0.334905654, 0)
1486
Title.Size = UDim2.new(0.61200583, 0, 0.0628930852, 0)
1487
Title.ZIndex = 120
1488
Title.Font = Enum.Font.Highway
1489
Title.Text = "This GUI Uses A Whitelist, Please Enter Your Discord Tag."
1490
Title.TextColor3 = Color3.new(1, 1, 1)
1491
Title.TextScaled = true
1492
Title.TextSize = 14
1493
Title.TextWrapped = true
1494
1495
ProceedButton.Name = "ProceedButton"
1496
ProceedButton.Parent = AuthFrame
1497
ProceedButton.BackgroundColor3 = Color3.new(1, 1, 1)
1498
ProceedButton.Position = UDim2.new(0.434846252, 0, 0.606918216, 0)
1499
ProceedButton.Size = UDim2.new(0, 143, 0, 32)
1500
ProceedButton.ZIndex = 120
1501
ProceedButton.Font = Enum.Font.Highway
1502
ProceedButton.Text = "Proceed"
1503
ProceedButton.TextColor3 = Color3.new(0.784314, 0.784314, 0.784314)
1504
ProceedButton.TextScaled = true
1505
ProceedButton.TextSize = 14
1506
ProceedButton.TextWrapped = true
1507
1508
Borders_4.Name = "Borders"
1509
Borders_4.Parent = ProceedButton
1510
Borders_4.BackgroundColor3 = Color3.new(1, 1, 1)
1511
Borders_4.BackgroundTransparency = 1
1512
Borders_4.BorderSizePixel = 0
1513
Borders_4.Size = UDim2.new(1, 0, 1, 0)
1514
Borders_4.ZIndex = 120
1515
1516
Border_25.Name = "Border"
1517
Border_25.Parent = Borders_4
1518
Border_25.BackgroundColor3 = Color3.new(1, 1, 1)
1519
Border_25.BackgroundTransparency = 1
1520
Border_25.BorderSizePixel = 0
1521
Border_25.Position = UDim2.new(0, -12, 0, -12)
1522
Border_25.Size = UDim2.new(0, 12, 0, 12)
1523
Border_25.ZIndex = 120
1524
Border_25.Image = "http://www.roblox.com/asset/?id=238725003"
1525
Border_25.ImageRectSize = Vector2.new(12, 12)
1526
1527
Border_26.Name = "Border"
1528
Border_26.Parent = Borders_4
1529
Border_26.BackgroundColor3 = Color3.new(1, 1, 1)
1530
Border_26.BackgroundTransparency = 1
1531
Border_26.BorderSizePixel = 0
1532
Border_26.Position = UDim2.new(1, 0, 0, -12)
1533
Border_26.Size = UDim2.new(0, 12, 0, 12)
1534
Border_26.ZIndex = 120
1535
Border_26.Image = "http://www.roblox.com/asset/?id=238725003"
1536
Border_26.ImageRectOffset = Vector2.new(24, 0)
1537
Border_26.ImageRectSize = Vector2.new(12, 12)
1538
1539
Border_27.Name = "Border"
1540
Border_27.Parent = Borders_4
1541
Border_27.BackgroundColor3 = Color3.new(1, 1, 1)
1542
Border_27.BackgroundTransparency = 1
1543
Border_27.BorderSizePixel = 0
1544
Border_27.Position = UDim2.new(0, -12, 1, 0)
1545
Border_27.Size = UDim2.new(0, 12, 0, 12)
1546
Border_27.ZIndex = 120
1547
Border_27.Image = "http://www.roblox.com/asset/?id=238725003"
1548
Border_27.ImageRectOffset = Vector2.new(0, 24)
1549
Border_27.ImageRectSize = Vector2.new(12, 12)
1550
1551
Border_28.Name = "Border"
1552
Border_28.Parent = Borders_4
1553
Border_28.BackgroundColor3 = Color3.new(1, 1, 1)
1554
Border_28.BackgroundTransparency = 1
1555
Border_28.BorderSizePixel = 0
1556
Border_28.Position = UDim2.new(1, 0, 1, 0)
1557
Border_28.Size = UDim2.new(0, 12, 0, 12)
1558
Border_28.ZIndex = 120
1559
Border_28.Image = "http://www.roblox.com/asset/?id=238725003"
1560
Border_28.ImageRectOffset = Vector2.new(24, 24)
1561
Border_28.ImageRectSize = Vector2.new(12, 12)
1562
1563
Border_29.Name = "Border"
1564
Border_29.Parent = Borders_4
1565
Border_29.BackgroundColor3 = Color3.new(1, 1, 1)
1566
Border_29.BackgroundTransparency = 1
1567
Border_29.BorderSizePixel = 0
1568
Border_29.Position = UDim2.new(0, 0, 1, 0)
1569
Border_29.Size = UDim2.new(1, 0, 0, 12)
1570
Border_29.ZIndex = 120
1571
Border_29.Image = "http://www.roblox.com/asset/?id=238725003"
1572
Border_29.ImageRectOffset = Vector2.new(12, 24)
1573
Border_29.ImageRectSize = Vector2.new(12, 12)
1574
1575
Border_30.Name = "Border"
1576
Border_30.Parent = Borders_4
1577
Border_30.BackgroundColor3 = Color3.new(1, 1, 1)
1578
Border_30.BackgroundTransparency = 1
1579
Border_30.BorderSizePixel = 0
1580
Border_30.Position = UDim2.new(0, 0, 0, -12)
1581
Border_30.Size = UDim2.new(1, 0, 0, 12)
1582
Border_30.ZIndex = 120
1583
Border_30.Image = "http://www.roblox.com/asset/?id=238725003"
1584
Border_30.ImageRectOffset = Vector2.new(12, 0)
1585
Border_30.ImageRectSize = Vector2.new(12, 12)
1586
1587
Border_31.Name = "Border"
1588
Border_31.Parent = Borders_4
1589
Border_31.BackgroundColor3 = Color3.new(1, 1, 1)
1590
Border_31.BackgroundTransparency = 1
1591
Border_31.BorderSizePixel = 0
1592
Border_31.Position = UDim2.new(0, -12, 0, 0)
1593
Border_31.Size = UDim2.new(0, 12, 1, 0)
1594
Border_31.ZIndex = 120
1595
Border_31.Image = "http://www.roblox.com/asset/?id=238725003"
1596
Border_31.ImageRectOffset = Vector2.new(0, 12)
1597
Border_31.ImageRectSize = Vector2.new(12, 12)
1598
1599
Border_32.Name = "Border"
1600
Border_32.Parent = Borders_4
1601
Border_32.BackgroundColor3 = Color3.new(1, 1, 1)
1602
Border_32.BackgroundTransparency = 1
1603
Border_32.BorderSizePixel = 0
1604
Border_32.Position = UDim2.new(1, 0, 0, 0)
1605
Border_32.Size = UDim2.new(0, 12, 1, 0)
1606
Border_32.ZIndex = 120
1607
Border_32.Image = "http://www.roblox.com/asset/?id=238725003"
1608
Border_32.ImageRectOffset = Vector2.new(24, 12)
1609
Border_32.ImageRectSize = Vector2.new(12, 12)
1610
1611
CancelButton.Name = "CancelButton"
1612
CancelButton.Parent = AuthFrame
1613
CancelButton.BackgroundColor3 = Color3.new(1, 1, 1)
1614
CancelButton.Position = UDim2.new(0.65519762, 0, 0.606918216, 0)
1615
CancelButton.Size = UDim2.new(0, 143, 0, 32)
1616
CancelButton.ZIndex = 120
1617
CancelButton.Font = Enum.Font.Highway
1618
CancelButton.Text = "Cancel"
1619
CancelButton.TextColor3 = Color3.new(1, 0.333333, 0)
1620
CancelButton.TextScaled = true
1621
CancelButton.TextSize = 14
1622
CancelButton.TextWrapped = true
1623
1624
Borders_5.Name = "Borders"
1625
Borders_5.Parent = CancelButton
1626
Borders_5.BackgroundColor3 = Color3.new(1, 1, 1)
1627
Borders_5.BackgroundTransparency = 1
1628
Borders_5.BorderSizePixel = 0
1629
Borders_5.Size = UDim2.new(1, 0, 1, 0)
1630
Borders_5.ZIndex = 120
1631
1632
Border_33.Name = "Border"
1633
Border_33.Parent = Borders_5
1634
Border_33.BackgroundColor3 = Color3.new(1, 1, 1)
1635
Border_33.BackgroundTransparency = 1
1636
Border_33.BorderSizePixel = 0
1637
Border_33.Position = UDim2.new(0, -12, 0, -12)
1638
Border_33.Size = UDim2.new(0, 12, 0, 12)
1639
Border_33.ZIndex = 120
1640
Border_33.Image = "http://www.roblox.com/asset/?id=238725003"
1641
Border_33.ImageRectSize = Vector2.new(12, 12)
1642
1643
Border_34.Name = "Border"
1644
Border_34.Parent = Borders_5
1645
Border_34.BackgroundColor3 = Color3.new(1, 1, 1)
1646
Border_34.BackgroundTransparency = 1
1647
Border_34.BorderSizePixel = 0
1648
Border_34.Position = UDim2.new(1, 0, 0, -12)
1649
Border_34.Size = UDim2.new(0, 12, 0, 12)
1650
Border_34.ZIndex = 120
1651
Border_34.Image = "http://www.roblox.com/asset/?id=238725003"
1652
Border_34.ImageRectOffset = Vector2.new(24, 0)
1653
Border_34.ImageRectSize = Vector2.new(12, 12)
1654
1655
Border_35.Name = "Border"
1656
Border_35.Parent = Borders_5
1657
Border_35.BackgroundColor3 = Color3.new(1, 1, 1)
1658
Border_35.BackgroundTransparency = 1
1659
Border_35.BorderSizePixel = 0
1660
Border_35.Position = UDim2.new(0, -12, 1, 0)
1661
Border_35.Size = UDim2.new(0, 12, 0, 12)
1662
Border_35.ZIndex = 120
1663
Border_35.Image = "http://www.roblox.com/asset/?id=238725003"
1664
Border_35.ImageRectOffset = Vector2.new(0, 24)
1665
Border_35.ImageRectSize = Vector2.new(12, 12)
1666
1667
Border_36.Name = "Border"
1668
Border_36.Parent = Borders_5
1669
Border_36.BackgroundColor3 = Color3.new(1, 1, 1)
1670
Border_36.BackgroundTransparency = 1
1671
Border_36.BorderSizePixel = 0
1672
Border_36.Position = UDim2.new(1, 0, 1, 0)
1673
Border_36.Size = UDim2.new(0, 12, 0, 12)
1674
Border_36.ZIndex = 120
1675
Border_36.Image = "http://www.roblox.com/asset/?id=238725003"
1676
Border_36.ImageRectOffset = Vector2.new(24, 24)
1677
Border_36.ImageRectSize = Vector2.new(12, 12)
1678
1679
Border_37.Name = "Border"
1680
Border_37.Parent = Borders_5
1681
Border_37.BackgroundColor3 = Color3.new(1, 1, 1)
1682
Border_37.BackgroundTransparency = 1
1683
Border_37.BorderSizePixel = 0
1684
Border_37.Position = UDim2.new(0, 0, 1, 0)
1685
Border_37.Size = UDim2.new(1, 0, 0, 12)
1686
Border_37.ZIndex = 120
1687
Border_37.Image = "http://www.roblox.com/asset/?id=238725003"
1688
Border_37.ImageRectOffset = Vector2.new(12, 24)
1689
Border_37.ImageRectSize = Vector2.new(12, 12)
1690
1691
Border_38.Name = "Border"
1692
Border_38.Parent = Borders_5
1693
Border_38.BackgroundColor3 = Color3.new(1, 1, 1)
1694
Border_38.BackgroundTransparency = 1
1695
Border_38.BorderSizePixel = 0
1696
Border_38.Position = UDim2.new(0, 0, 0, -12)
1697
Border_38.Size = UDim2.new(1, 0, 0, 12)
1698
Border_38.ZIndex = 120
1699
Border_38.Image = "http://www.roblox.com/asset/?id=238725003"
1700
Border_38.ImageRectOffset = Vector2.new(12, 0)
1701
Border_38.ImageRectSize = Vector2.new(12, 12)
1702
1703
Border_39.Name = "Border"
1704
Border_39.Parent = Borders_5
1705
Border_39.BackgroundColor3 = Color3.new(1, 1, 1)
1706
Border_39.BackgroundTransparency = 1
1707
Border_39.BorderSizePixel = 0
1708
Border_39.Position = UDim2.new(0, -12, 0, 0)
1709
Border_39.Size = UDim2.new(0, 12, 1, 0)
1710
Border_39.ZIndex = 120
1711
Border_39.Image = "http://www.roblox.com/asset/?id=238725003"
1712
Border_39.ImageRectOffset = Vector2.new(0, 12)
1713
Border_39.ImageRectSize = Vector2.new(12, 12)
1714
1715
Border_40.Name = "Border"
1716
Border_40.Parent = Borders_5
1717
Border_40.BackgroundColor3 = Color3.new(1, 1, 1)
1718
Border_40.BackgroundTransparency = 1
1719
Border_40.BorderSizePixel = 0
1720
Border_40.Position = UDim2.new(1, 0, 0, 0)
1721
Border_40.Size = UDim2.new(0, 12, 1, 0)
1722
Border_40.ZIndex = 120
1723
Border_40.Image = "http://www.roblox.com/asset/?id=238725003"
1724
Border_40.ImageRectOffset = Vector2.new(24, 12)
1725
Border_40.ImageRectSize = Vector2.new(12, 12)
1726
1727
HTBBtn.Name = "HTBBtn"
1728
HTBBtn.Parent = AuthFrame
1729
HTBBtn.BackgroundColor3 = Color3.new(1, 1, 1)
1730
HTBBtn.Position = UDim2.new(0.214494824, 0, 0.606918216, 0)
1731
HTBBtn.Size = UDim2.new(0, 143, 0, 32)
1732
HTBBtn.ZIndex = 120
1733
HTBBtn.Font = Enum.Font.Highway
1734
HTBBtn.Text = "How To Buy"
1735
HTBBtn.TextColor3 = Color3.new(0.392157, 0.784314, 0.392157)
1736
HTBBtn.TextScaled = true
1737
HTBBtn.TextSize = 14
1738
HTBBtn.TextWrapped = true
1739
1740
Borders_6.Name = "Borders"
1741
Borders_6.Parent = HTBBtn
1742
Borders_6.BackgroundColor3 = Color3.new(1, 1, 1)
1743
Borders_6.BackgroundTransparency = 1
1744
Borders_6.BorderSizePixel = 0
1745
Borders_6.Size = UDim2.new(1, 0, 1, 0)
1746
Borders_6.ZIndex = 120
1747
1748
Border_41.Name = "Border"
1749
Border_41.Parent = Borders_6
1750
Border_41.BackgroundColor3 = Color3.new(1, 1, 1)
1751
Border_41.BackgroundTransparency = 1
1752
Border_41.BorderSizePixel = 0
1753
Border_41.Position = UDim2.new(0, -12, 0, -12)
1754
Border_41.Size = UDim2.new(0, 12, 0, 12)
1755
Border_41.ZIndex = 120
1756
Border_41.Image = "http://www.roblox.com/asset/?id=238725003"
1757
Border_41.ImageRectSize = Vector2.new(12, 12)
1758
1759
Border_42.Name = "Border"
1760
Border_42.Parent = Borders_6
1761
Border_42.BackgroundColor3 = Color3.new(1, 1, 1)
1762
Border_42.BackgroundTransparency = 1
1763
Border_42.BorderSizePixel = 0
1764
Border_42.Position = UDim2.new(1, 0, 0, -12)
1765
Border_42.Size = UDim2.new(0, 12, 0, 12)
1766
Border_42.ZIndex = 120
1767
Border_42.Image = "http://www.roblox.com/asset/?id=238725003"
1768
Border_42.ImageRectOffset = Vector2.new(24, 0)
1769
Border_42.ImageRectSize = Vector2.new(12, 12)
1770
1771
Border_43.Name = "Border"
1772
Border_43.Parent = Borders_6
1773
Border_43.BackgroundColor3 = Color3.new(1, 1, 1)
1774
Border_43.BackgroundTransparency = 1
1775
Border_43.BorderSizePixel = 0
1776
Border_43.Position = UDim2.new(0, -12, 1, 0)
1777
Border_43.Size = UDim2.new(0, 12, 0, 12)
1778
Border_43.ZIndex = 120
1779
Border_43.Image = "http://www.roblox.com/asset/?id=238725003"
1780
Border_43.ImageRectOffset = Vector2.new(0, 24)
1781
Border_43.ImageRectSize = Vector2.new(12, 12)
1782
1783
Border_44.Name = "Border"
1784
Border_44.Parent = Borders_6
1785
Border_44.BackgroundColor3 = Color3.new(1, 1, 1)
1786
Border_44.BackgroundTransparency = 1
1787
Border_44.BorderSizePixel = 0
1788
Border_44.Position = UDim2.new(1, 0, 1, 0)
1789
Border_44.Size = UDim2.new(0, 12, 0, 12)
1790
Border_44.ZIndex = 120
1791
Border_44.Image = "http://www.roblox.com/asset/?id=238725003"
1792
Border_44.ImageRectOffset = Vector2.new(24, 24)
1793
Border_44.ImageRectSize = Vector2.new(12, 12)
1794
1795
Border_45.Name = "Border"
1796
Border_45.Parent = Borders_6
1797
Border_45.BackgroundColor3 = Color3.new(1, 1, 1)
1798
Border_45.BackgroundTransparency = 1
1799
Border_45.BorderSizePixel = 0
1800
Border_45.Position = UDim2.new(0, 0, 1, 0)
1801
Border_45.Size = UDim2.new(1, 0, 0, 12)
1802
Border_45.ZIndex = 120
1803
Border_45.Image = "http://www.roblox.com/asset/?id=238725003"
1804
Border_45.ImageRectOffset = Vector2.new(12, 24)
1805
Border_45.ImageRectSize = Vector2.new(12, 12)
1806
1807
Border_46.Name = "Border"
1808
Border_46.Parent = Borders_6
1809
Border_46.BackgroundColor3 = Color3.new(1, 1, 1)
1810
Border_46.BackgroundTransparency = 1
1811
Border_46.BorderSizePixel = 0
1812
Border_46.Position = UDim2.new(0, 0, 0, -12)
1813
Border_46.Size = UDim2.new(1, 0, 0, 12)
1814
Border_46.ZIndex = 120
1815
Border_46.Image = "http://www.roblox.com/asset/?id=238725003"
1816
Border_46.ImageRectOffset = Vector2.new(12, 0)
1817
Border_46.ImageRectSize = Vector2.new(12, 12)
1818
1819
Border_47.Name = "Border"
1820
Border_47.Parent = Borders_6
1821
Border_47.BackgroundColor3 = Color3.new(1, 1, 1)
1822
Border_47.BackgroundTransparency = 1
1823
Border_47.BorderSizePixel = 0
1824
Border_47.Position = UDim2.new(0, -12, 0, 0)
1825
Border_47.Size = UDim2.new(0, 12, 1, 0)
1826
Border_47.ZIndex = 120
1827
Border_47.Image = "http://www.roblox.com/asset/?id=238725003"
1828
Border_47.ImageRectOffset = Vector2.new(0, 12)
1829
Border_47.ImageRectSize = Vector2.new(12, 12)
1830
1831
Border_48.Name = "Border"
1832
Border_48.Parent = Borders_6
1833
Border_48.BackgroundColor3 = Color3.new(1, 1, 1)
1834
Border_48.BackgroundTransparency = 1
1835
Border_48.BorderSizePixel = 0
1836
Border_48.Position = UDim2.new(1, 0, 0, 0)
1837
Border_48.Size = UDim2.new(0, 12, 1, 0)
1838
Border_48.ZIndex = 120
1839
Border_48.Image = "http://www.roblox.com/asset/?id=238725003"
1840
Border_48.ImageRectOffset = Vector2.new(24, 12)
1841
Border_48.ImageRectSize = Vector2.new(12, 12)
1842
1843
QuitButton.Name = "QuitButton"
1844
QuitButton.Parent = AuthFrame
1845
QuitButton.BackgroundColor3 = Color3.new(1, 1, 1)
1846
QuitButton.BorderSizePixel = 0
1847
QuitButton.Position = UDim2.new(0.985358715, 0, 0, 0)
1848
QuitButton.Size = UDim2.new(0, 20, 0, 20)
1849
QuitButton.ZIndex = 120
1850
QuitButton.Image = "rbxassetid://1828839274"
1851
1852
Borders_7.Name = "Borders"
1853
Borders_7.Parent = QuitButton
1854
Borders_7.BackgroundColor3 = Color3.new(1, 1, 1)
1855
Borders_7.BackgroundTransparency = 1
1856
Borders_7.BorderSizePixel = 0
1857
Borders_7.Size = UDim2.new(1, 0, 1, 0)
1858
Borders_7.ZIndex = 120
1859
1860
Border_49.Name = "Border"
1861
Border_49.Parent = Borders_7
1862
Border_49.BackgroundColor3 = Color3.new(1, 1, 1)
1863
Border_49.BackgroundTransparency = 1
1864
Border_49.BorderSizePixel = 0
1865
Border_49.Position = UDim2.new(0, -12, 0, -12)
1866
Border_49.Size = UDim2.new(0, 12, 0, 12)
1867
Border_49.ZIndex = 120
1868
Border_49.Image = "http://www.roblox.com/asset/?id=238725003"
1869
Border_49.ImageRectSize = Vector2.new(12, 12)
1870
1871
Border_50.Name = "Border"
1872
Border_50.Parent = Borders_7
1873
Border_50.BackgroundColor3 = Color3.new(1, 1, 1)
1874
Border_50.BackgroundTransparency = 1
1875
Border_50.BorderSizePixel = 0
1876
Border_50.Position = UDim2.new(1, 0, 0, -12)
1877
Border_50.Size = UDim2.new(0, 12, 0, 12)
1878
Border_50.ZIndex = 120
1879
Border_50.Image = "http://www.roblox.com/asset/?id=238725003"
1880
Border_50.ImageRectOffset = Vector2.new(24, 0)
1881
Border_50.ImageRectSize = Vector2.new(12, 12)
1882
1883
Border_51.Name = "Border"
1884
Border_51.Parent = Borders_7
1885
Border_51.BackgroundColor3 = Color3.new(1, 1, 1)
1886
Border_51.BackgroundTransparency = 1
1887
Border_51.BorderSizePixel = 0
1888
Border_51.Position = UDim2.new(0, -12, 1, 0)
1889
Border_51.Size = UDim2.new(0, 12, 0, 12)
1890
Border_51.ZIndex = 120
1891
Border_51.Image = "http://www.roblox.com/asset/?id=238725003"
1892
Border_51.ImageRectOffset = Vector2.new(0, 24)
1893
Border_51.ImageRectSize = Vector2.new(12, 12)
1894
1895
Border_52.Name = "Border"
1896
Border_52.Parent = Borders_7
1897
Border_52.BackgroundColor3 = Color3.new(1, 1, 1)
1898
Border_52.BackgroundTransparency = 1
1899
Border_52.BorderSizePixel = 0
1900
Border_52.Position = UDim2.new(1, 0, 1, 0)
1901
Border_52.Size = UDim2.new(0, 12, 0, 12)
1902
Border_52.ZIndex = 120
1903
Border_52.Image = "http://www.roblox.com/asset/?id=238725003"
1904
Border_52.ImageRectOffset = Vector2.new(24, 24)
1905
Border_52.ImageRectSize = Vector2.new(12, 12)
1906
1907
Border_53.Name = "Border"
1908
Border_53.Parent = Borders_7
1909
Border_53.BackgroundColor3 = Color3.new(1, 1, 1)
1910
Border_53.BackgroundTransparency = 1
1911
Border_53.BorderSizePixel = 0
1912
Border_53.Position = UDim2.new(0, 0, 1, 0)
1913
Border_53.Size = UDim2.new(1, 0, 0, 12)
1914
Border_53.ZIndex = 120
1915
Border_53.Image = "http://www.roblox.com/asset/?id=238725003"
1916
Border_53.ImageRectOffset = Vector2.new(12, 24)
1917
Border_53.ImageRectSize = Vector2.new(12, 12)
1918
1919
Border_54.Name = "Border"
1920
Border_54.Parent = Borders_7
1921
Border_54.BackgroundColor3 = Color3.new(1, 1, 1)
1922
Border_54.BackgroundTransparency = 1
1923
Border_54.BorderSizePixel = 0
1924
Border_54.Position = UDim2.new(0, 0, 0, -12)
1925
Border_54.Size = UDim2.new(1, 0, 0, 12)
1926
Border_54.ZIndex = 120
1927
Border_54.Image = "http://www.roblox.com/asset/?id=238725003"
1928
Border_54.ImageRectOffset = Vector2.new(12, 0)
1929
Border_54.ImageRectSize = Vector2.new(12, 12)
1930
1931
Border_55.Name = "Border"
1932
Border_55.Parent = Borders_7
1933
Border_55.BackgroundColor3 = Color3.new(1, 1, 1)
1934
Border_55.BackgroundTransparency = 1
1935
Border_55.BorderSizePixel = 0
1936
Border_55.Position = UDim2.new(0, -12, 0, 0)
1937
Border_55.Size = UDim2.new(0, 12, 1, 0)
1938
Border_55.ZIndex = 120
1939
Border_55.Image = "http://www.roblox.com/asset/?id=238725003"
1940
Border_55.ImageRectOffset = Vector2.new(0, 12)
1941
Border_55.ImageRectSize = Vector2.new(12, 12)
1942
1943
Border_56.Name = "Border"
1944
Border_56.Parent = Borders_7
1945
Border_56.BackgroundColor3 = Color3.new(1, 1, 1)
1946
Border_56.BackgroundTransparency = 1
1947
Border_56.BorderSizePixel = 0
1948
Border_56.Position = UDim2.new(1, 0, 0, 0)
1949
Border_56.Size = UDim2.new(0, 12, 1, 0)
1950
Border_56.ZIndex = 120
1951
Border_56.Image = "http://www.roblox.com/asset/?id=238725003"
1952
Border_56.ImageRectOffset = Vector2.new(24, 12)
1953
Border_56.ImageRectSize = Vector2.new(12, 12)
1954
1955
RefreshButton.Name = "RefreshButton"
1956
RefreshButton.Parent = AuthFrame
1957
RefreshButton.BackgroundColor3 = Color3.new(1, 1, 1)
1958
RefreshButton.BorderSizePixel = 0
1959
RefreshButton.Position = UDim2.new(0.789165437, 0, 0.463836491, 0)
1960
RefreshButton.Size = UDim2.new(0, 46, 0, 46)
1961
RefreshButton.ZIndex = 120
1962
RefreshButton.Image = "rbxassetid://1828839620"
1963
1964
Borders_8.Name = "Borders"
1965
Borders_8.Parent = RefreshButton
1966
Borders_8.BackgroundColor3 = Color3.new(1, 1, 1)
1967
Borders_8.BackgroundTransparency = 1
1968
Borders_8.BorderSizePixel = 0
1969
Borders_8.Size = UDim2.new(1, 0, 1, 0)
1970
Borders_8.ZIndex = 120
1971
1972
Border_57.Name = "Border"
1973
Border_57.Parent = Borders_8
1974
Border_57.BackgroundColor3 = Color3.new(1, 1, 1)
1975
Border_57.BackgroundTransparency = 1
1976
Border_57.BorderSizePixel = 0
1977
Border_57.Position = UDim2.new(0, -12, 0, -12)
1978
Border_57.Size = UDim2.new(0, 12, 0, 12)
1979
Border_57.ZIndex = 120
1980
Border_57.Image = "http://www.roblox.com/asset/?id=238725003"
1981
Border_57.ImageRectSize = Vector2.new(12, 12)
1982
1983
Border_58.Name = "Border"
1984
Border_58.Parent = Borders_8
1985
Border_58.BackgroundColor3 = Color3.new(1, 1, 1)
1986
Border_58.BackgroundTransparency = 1
1987
Border_58.BorderSizePixel = 0
1988
Border_58.Position = UDim2.new(1, 0, 0, -12)
1989
Border_58.Size = UDim2.new(0, 12, 0, 12)
1990
Border_58.ZIndex = 120
1991
Border_58.Image = "http://www.roblox.com/asset/?id=238725003"
1992
Border_58.ImageRectOffset = Vector2.new(24, 0)
1993
Border_58.ImageRectSize = Vector2.new(12, 12)
1994
1995
Border_59.Name = "Border"
1996
Border_59.Parent = Borders_8
1997
Border_59.BackgroundColor3 = Color3.new(1, 1, 1)
1998
Border_59.BackgroundTransparency = 1
1999
Border_59.BorderSizePixel = 0
2000
Border_59.Position = UDim2.new(0, -12, 1, 0)
2001
Border_59.Size = UDim2.new(0, 12, 0, 12)
2002
Border_59.ZIndex = 120
2003
Border_59.Image = "http://www.roblox.com/asset/?id=238725003"
2004
Border_59.ImageRectOffset = Vector2.new(0, 24)
2005
Border_59.ImageRectSize = Vector2.new(12, 12)
2006
2007
Border_60.Name = "Border"
2008
Border_60.Parent = Borders_8
2009
Border_60.BackgroundColor3 = Color3.new(1, 1, 1)
2010
Border_60.BackgroundTransparency = 1
2011
Border_60.BorderSizePixel = 0
2012
Border_60.Position = UDim2.new(1, 0, 1, 0)
2013
Border_60.Size = UDim2.new(0, 12, 0, 12)
2014
Border_60.ZIndex = 120
2015
Border_60.Image = "http://www.roblox.com/asset/?id=238725003"
2016
Border_60.ImageRectOffset = Vector2.new(24, 24)
2017
Border_60.ImageRectSize = Vector2.new(12, 12)
2018
2019
Border_61.Name = "Border"
2020
Border_61.Parent = Borders_8
2021
Border_61.BackgroundColor3 = Color3.new(1, 1, 1)
2022
Border_61.BackgroundTransparency = 1
2023
Border_61.BorderSizePixel = 0
2024
Border_61.Position = UDim2.new(0, 0, 1, 0)
2025
Border_61.Size = UDim2.new(1, 0, 0, 12)
2026
Border_61.ZIndex = 120
2027
Border_61.Image = "http://www.roblox.com/asset/?id=238725003"
2028
Border_61.ImageRectOffset = Vector2.new(12, 24)
2029
Border_61.ImageRectSize = Vector2.new(12, 12)
2030
2031
Border_62.Name = "Border"
2032
Border_62.Parent = Borders_8
2033
Border_62.BackgroundColor3 = Color3.new(1, 1, 1)
2034
Border_62.BackgroundTransparency = 1
2035
Border_62.BorderSizePixel = 0
2036
Border_62.Position = UDim2.new(0, 0, 0, -12)
2037
Border_62.Size = UDim2.new(1, 0, 0, 12)
2038
Border_62.ZIndex = 120
2039
Border_62.Image = "http://www.roblox.com/asset/?id=238725003"
2040
Border_62.ImageRectOffset = Vector2.new(12, 0)
2041
Border_62.ImageRectSize = Vector2.new(12, 12)
2042
2043
Border_63.Name = "Border"
2044
Border_63.Parent = Borders_8
2045
Border_63.BackgroundColor3 = Color3.new(1, 1, 1)
2046
Border_63.BackgroundTransparency = 1
2047
Border_63.BorderSizePixel = 0
2048
Border_63.Position = UDim2.new(0, -12, 0, 0)
2049
Border_63.Size = UDim2.new(0, 12, 1, 0)
2050
Border_63.ZIndex = 120
2051
Border_63.Image = "http://www.roblox.com/asset/?id=238725003"
2052
Border_63.ImageRectOffset = Vector2.new(0, 12)
2053
Border_63.ImageRectSize = Vector2.new(12, 12)
2054
2055
Border_64.Name = "Border"
2056
Border_64.Parent = Borders_8
2057
Border_64.BackgroundColor3 = Color3.new(1, 1, 1)
2058
Border_64.BackgroundTransparency = 1
2059
Border_64.BorderSizePixel = 0
2060
Border_64.Position = UDim2.new(1, 0, 0, 0)
2061
Border_64.Size = UDim2.new(0, 12, 1, 0)
2062
Border_64.ZIndex = 120
2063
Border_64.Image = "http://www.roblox.com/asset/?id=238725003"
2064
Border_64.ImageRectOffset = Vector2.new(24, 12)
2065
Border_64.ImageRectSize = Vector2.new(12, 12)
2066
2067
MainButton.Name = "MainButton"
2068
MainButton.Parent = Survivor
2069
MainButton.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
2070
MainButton.BorderSizePixel = 0
2071
MainButton.Position = UDim2.new(0.956076145, 0, 0.905660391, 0)
2072
MainButton.Size = UDim2.new(0, 46, 0, 46)
2073
MainButton.Visible = false
2074
MainButton.ZIndex = 120
2075
MainButton.Image = "rbxassetid://1677963821"
2076
2077
Borders_9.Name = "Borders"
2078
Borders_9.Parent = MainButton
2079
Borders_9.BackgroundColor3 = Color3.new(1, 1, 1)
2080
Borders_9.BackgroundTransparency = 1
2081
Borders_9.BorderSizePixel = 0
2082
Borders_9.Size = UDim2.new(1, 0, 1, 0)
2083
Borders_9.ZIndex = 120
2084
2085
Border_65.Name = "Border"
2086
Border_65.Parent = Borders_9
2087
Border_65.BackgroundColor3 = Color3.new(1, 1, 1)
2088
Border_65.BackgroundTransparency = 1
2089
Border_65.BorderSizePixel = 0
2090
Border_65.Position = UDim2.new(0, -12, 0, -12)
2091
Border_65.Size = UDim2.new(0, 12, 0, 12)
2092
Border_65.ZIndex = 120
2093
Border_65.Image = "http://www.roblox.com/asset/?id=238725003"
2094
Border_65.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
2095
Border_65.ImageRectSize = Vector2.new(12, 12)
2096
2097
Border_66.Name = "Border"
2098
Border_66.Parent = Borders_9
2099
Border_66.BackgroundColor3 = Color3.new(1, 1, 1)
2100
Border_66.BackgroundTransparency = 1
2101
Border_66.BorderSizePixel = 0
2102
Border_66.Position = UDim2.new(1, 0, 0, -12)
2103
Border_66.Size = UDim2.new(0, 12, 0, 12)
2104
Border_66.ZIndex = 120
2105
Border_66.Image = "http://www.roblox.com/asset/?id=238725003"
2106
Border_66.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
2107
Border_66.ImageRectOffset = Vector2.new(24, 0)
2108
Border_66.ImageRectSize = Vector2.new(12, 12)
2109
2110
Border_67.Name = "Border"
2111
Border_67.Parent = Borders_9
2112
Border_67.BackgroundColor3 = Color3.new(1, 1, 1)
2113
Border_67.BackgroundTransparency = 1
2114
Border_67.BorderSizePixel = 0
2115
Border_67.Position = UDim2.new(0, -12, 1, 0)
2116
Border_67.Size = UDim2.new(0, 12, 0, 12)
2117
Border_67.ZIndex = 120
2118
Border_67.Image = "http://www.roblox.com/asset/?id=238725003"
2119
Border_67.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
2120
Border_67.ImageRectOffset = Vector2.new(0, 24)
2121
Border_67.ImageRectSize = Vector2.new(12, 12)
2122
2123
Border_68.Name = "Border"
2124
Border_68.Parent = Borders_9
2125
Border_68.BackgroundColor3 = Color3.new(1, 1, 1)
2126
Border_68.BackgroundTransparency = 1
2127
Border_68.BorderSizePixel = 0
2128
Border_68.Position = UDim2.new(1, 0, 1, 0)
2129
Border_68.Size = UDim2.new(0, 12, 0, 12)
2130
Border_68.ZIndex = 120
2131
Border_68.Image = "http://www.roblox.com/asset/?id=238725003"
2132
Border_68.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
2133
Border_68.ImageRectOffset = Vector2.new(24, 24)
2134
Border_68.ImageRectSize = Vector2.new(12, 12)
2135
2136
Border_69.Name = "Border"
2137
Border_69.Parent = Borders_9
2138
Border_69.BackgroundColor3 = Color3.new(1, 1, 1)
2139
Border_69.BackgroundTransparency = 1
2140
Border_69.BorderSizePixel = 0
2141
Border_69.Position = UDim2.new(0, 0, 1, 0)
2142
Border_69.Size = UDim2.new(1, 0, 0, 12)
2143
Border_69.ZIndex = 120
2144
Border_69.Image = "http://www.roblox.com/asset/?id=238725003"
2145
Border_69.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
2146
Border_69.ImageRectOffset = Vector2.new(12, 24)
2147
Border_69.ImageRectSize = Vector2.new(12, 12)
2148
2149
Border_70.Name = "Border"
2150
Border_70.Parent = Borders_9
2151
Border_70.BackgroundColor3 = Color3.new(1, 1, 1)
2152
Border_70.BackgroundTransparency = 1
2153
Border_70.BorderSizePixel = 0
2154
Border_70.Position = UDim2.new(0, 0, 0, -12)
2155
Border_70.Size = UDim2.new(1, 0, 0, 12)
2156
Border_70.ZIndex = 120
2157
Border_70.Image = "http://www.roblox.com/asset/?id=238725003"
2158
Border_70.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
2159
Border_70.ImageRectOffset = Vector2.new(12, 0)
2160
Border_70.ImageRectSize = Vector2.new(12, 12)
2161
2162
Border_71.Name = "Border"
2163
Border_71.Parent = Borders_9
2164
Border_71.BackgroundColor3 = Color3.new(1, 1, 1)
2165
Border_71.BackgroundTransparency = 1
2166
Border_71.BorderSizePixel = 0
2167
Border_71.Position = UDim2.new(0, -12, 0, 0)
2168
Border_71.Size = UDim2.new(0, 12, 1, 0)
2169
Border_71.ZIndex = 120
2170
Border_71.Image = "http://www.roblox.com/asset/?id=238725003"
2171
Border_71.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
2172
Border_71.ImageRectOffset = Vector2.new(0, 12)
2173
Border_71.ImageRectSize = Vector2.new(12, 12)
2174
2175
Border_72.Name = "Border"
2176
Border_72.Parent = Borders_9
2177
Border_72.BackgroundColor3 = Color3.new(1, 1, 1)
2178
Border_72.BackgroundTransparency = 1
2179
Border_72.BorderSizePixel = 0
2180
Border_72.Position = UDim2.new(1, 0, 0, 0)
2181
Border_72.Size = UDim2.new(0, 12, 1, 0)
2182
Border_72.ZIndex = 120
2183
Border_72.Image = "http://www.roblox.com/asset/?id=238725003"
2184
Border_72.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
2185
Border_72.ImageRectOffset = Vector2.new(24, 12)
2186
Border_72.ImageRectSize = Vector2.new(12, 12)
2187
2188
2189
MainFrame = Instance.new("Frame")
2190
QuitButton = Instance.new("ImageButton")
2191
Borders = Instance.new("Frame")
2192
Border = Instance.new("ImageLabel")
2193
Border_2 = Instance.new("ImageLabel")
2194
Border_3 = Instance.new("ImageLabel")
2195
Border_4 = Instance.new("ImageLabel")
2196
Border_5 = Instance.new("ImageLabel")
2197
Borders_2 = Instance.new("Frame")
2198
Border_6 = Instance.new("ImageLabel")
2199
Border_7 = Instance.new("ImageLabel")
2200
Border_8 = Instance.new("ImageLabel")
2201
Border_9 = Instance.new("ImageLabel")
2202
Border_10 = Instance.new("ImageLabel")
2203
Border_11 = Instance.new("ImageLabel")
2204
Border_12 = Instance.new("ImageLabel")
2205
Border_13 = Instance.new("ImageLabel")
2206
MainCmds = Instance.new("TextButton")
2207
Borders_3 = Instance.new("Frame")
2208
Border_14 = Instance.new("ImageLabel")
2209
Border_15 = Instance.new("ImageLabel")
2210
Border_16 = Instance.new("ImageLabel")
2211
Border_17 = Instance.new("ImageLabel")
2212
Border_18 = Instance.new("ImageLabel")
2213
Challenges = Instance.new("TextButton")
2214
Borders_4 = Instance.new("Frame")
2215
Border_19 = Instance.new("ImageLabel")
2216
Border_20 = Instance.new("ImageLabel")
2217
Border_21 = Instance.new("ImageLabel")
2218
Border_22 = Instance.new("ImageLabel")
2219
Border_23 = Instance.new("ImageLabel")
2220
Extras = Instance.new("TextButton")
2221
Borders_5 = Instance.new("Frame")
2222
Border_24 = Instance.new("ImageLabel")
2223
Border_25 = Instance.new("ImageLabel")
2224
Border_26 = Instance.new("ImageLabel")
2225
Border_27 = Instance.new("ImageLabel")
2226
Border_28 = Instance.new("ImageLabel")
2227
PageFrame = Instance.new("Frame")
2228
Borders_6 = Instance.new("Frame")
2229
Border_29 = Instance.new("ImageLabel")
2230
Border_30 = Instance.new("ImageLabel")
2231
Border_31 = Instance.new("ImageLabel")
2232
Border_32 = Instance.new("ImageLabel")
2233
Border_33 = Instance.new("ImageLabel")
2234
Border_34 = Instance.new("ImageLabel")
2235
Border_35 = Instance.new("ImageLabel")
2236
Border_36 = Instance.new("ImageLabel")
2237
2238
2239
MainFrame.Name = "MainFrame"
2240
MainFrame.Parent = Survivor
2241
MainFrame.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
2242
MainFrame.Position = UDim2.new(0.30856514, 0, 0.23977989, 0)
2243
MainFrame.Size = UDim2.new(0.382869691, 0, 0.52044028, 0)
2244
MainFrame.Visible = false
2245
MainFrame.ZIndex = 100
2246
2247
QuitButton.Name = "QuitButton"
2248
QuitButton.Parent = MainFrame
2249
QuitButton.BackgroundColor3 = Color3.new(1, 1, 1)
2250
QuitButton.BorderSizePixel = 0
2251
QuitButton.Position = UDim2.new(0.962586403, 0, 0, 0)
2252
QuitButton.Size = UDim2.new(0, 20, 0, 20)
2253
QuitButton.ZIndex = 120
2254
QuitButton.Image = "rbxassetid://1828839274"
2255
2256
Borders.Name = "Borders"
2257
Borders.Parent = QuitButton
2258
Borders.BackgroundColor3 = Color3.new(1, 1, 1)
2259
Borders.BackgroundTransparency = 1
2260
Borders.BorderSizePixel = 0
2261
Borders.Size = UDim2.new(1, 0, 1, 0)
2262
Borders.ZIndex = 120
2263
2264
Border.Name = "Border"
2265
Border.Parent = Borders
2266
Border.BackgroundColor3 = Color3.new(1, 1, 1)
2267
Border.BackgroundTransparency = 1
2268
Border.BorderSizePixel = 0
2269
Border.Position = UDim2.new(0, -12, 1, 0)
2270
Border.Size = UDim2.new(0, 12, 0, 12)
2271
Border.ZIndex = 120
2272
Border.Image = "http://www.roblox.com/asset/?id=238725003"
2273
Border.ImageRectOffset = Vector2.new(0, 24)
2274
Border.ImageRectSize = Vector2.new(12, 12)
2275
2276
Border_2.Name = "Border"
2277
Border_2.Parent = Borders
2278
Border_2.BackgroundColor3 = Color3.new(1, 1, 1)
2279
Border_2.BackgroundTransparency = 1
2280
Border_2.BorderSizePixel = 0
2281
Border_2.Position = UDim2.new(1, 0, 1, 0)
2282
Border_2.Size = UDim2.new(0, 12, 0, 12)
2283
Border_2.ZIndex = 120
2284
Border_2.Image = "http://www.roblox.com/asset/?id=238725003"
2285
Border_2.ImageRectOffset = Vector2.new(24, 24)
2286
Border_2.ImageRectSize = Vector2.new(12, 12)
2287
2288
Border_3.Name = "Border"
2289
Border_3.Parent = Borders
2290
Border_3.BackgroundColor3 = Color3.new(1, 1, 1)
2291
Border_3.BackgroundTransparency = 1
2292
Border_3.BorderSizePixel = 0
2293
Border_3.Position = UDim2.new(0, 0, 1, 0)
2294
Border_3.Size = UDim2.new(1, 0, 0, 12)
2295
Border_3.ZIndex = 120
2296
Border_3.Image = "http://www.roblox.com/asset/?id=238725003"
2297
Border_3.ImageRectOffset = Vector2.new(12, 24)
2298
Border_3.ImageRectSize = Vector2.new(12, 12)
2299
2300
Border_4.Name = "Border"
2301
Border_4.Parent = Borders
2302
Border_4.BackgroundColor3 = Color3.new(1, 1, 1)
2303
Border_4.BackgroundTransparency = 1
2304
Border_4.BorderSizePixel = 0
2305
Border_4.Position = UDim2.new(0, -12, 0, 0)
2306
Border_4.Size = UDim2.new(0, 12, 1, 0)
2307
Border_4.ZIndex = 120
2308
Border_4.Image = "http://www.roblox.com/asset/?id=238725003"
2309
Border_4.ImageRectOffset = Vector2.new(0, 12)
2310
Border_4.ImageRectSize = Vector2.new(12, 12)
2311
2312
Border_5.Name = "Border"
2313
Border_5.Parent = Borders
2314
Border_5.BackgroundColor3 = Color3.new(1, 1, 1)
2315
Border_5.BackgroundTransparency = 1
2316
Border_5.BorderSizePixel = 0
2317
Border_5.Position = UDim2.new(1, 0, 0, 0)
2318
Border_5.Size = UDim2.new(0, 12, 1, 0)
2319
Border_5.ZIndex = 120
2320
Border_5.Image = "http://www.roblox.com/asset/?id=238725003"
2321
Border_5.ImageRectOffset = Vector2.new(24, 12)
2322
Border_5.ImageRectSize = Vector2.new(12, 12)
2323
2324
Borders_2.Name = "Borders"
2325
Borders_2.Parent = MainFrame
2326
Borders_2.BackgroundColor3 = Color3.new(1, 1, 1)
2327
Borders_2.BackgroundTransparency = 1
2328
Borders_2.BorderSizePixel = 0
2329
Borders_2.Size = UDim2.new(1, 0, 1, 0)
2330
Borders_2.ZIndex = 120
2331
2332
Border_6.Name = "Border"
2333
Border_6.Parent = Borders_2
2334
Border_6.BackgroundColor3 = Color3.new(1, 1, 1)
2335
Border_6.BackgroundTransparency = 1
2336
Border_6.BorderSizePixel = 0
2337
Border_6.Position = UDim2.new(0, -12, 0, -12)
2338
Border_6.Size = UDim2.new(0, 12, 0, 12)
2339
Border_6.ZIndex = 110
2340
Border_6.Image = "http://www.roblox.com/asset/?id=238725003"
2341
Border_6.ImageRectSize = Vector2.new(12, 12)
2342
2343
Border_7.Name = "Border"
2344
Border_7.Parent = Borders_2
2345
Border_7.BackgroundColor3 = Color3.new(1, 1, 1)
2346
Border_7.BackgroundTransparency = 1
2347
Border_7.BorderSizePixel = 0
2348
Border_7.Position = UDim2.new(1, 0, 0, -12)
2349
Border_7.Size = UDim2.new(0, 12, 0, 12)
2350
Border_7.ZIndex = 110
2351
Border_7.Image = "http://www.roblox.com/asset/?id=238725003"
2352
Border_7.ImageRectOffset = Vector2.new(24, 0)
2353
Border_7.ImageRectSize = Vector2.new(12, 12)
2354
2355
Border_8.Name = "Border"
2356
Border_8.Parent = Borders_2
2357
Border_8.BackgroundColor3 = Color3.new(1, 1, 1)
2358
Border_8.BackgroundTransparency = 1
2359
Border_8.BorderSizePixel = 0
2360
Border_8.Position = UDim2.new(0, -12, 1, 0)
2361
Border_8.Size = UDim2.new(0, 12, 0, 12)
2362
Border_8.ZIndex = 110
2363
Border_8.Image = "http://www.roblox.com/asset/?id=238725003"
2364
Border_8.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
2365
Border_8.ImageRectOffset = Vector2.new(0, 24)
2366
Border_8.ImageRectSize = Vector2.new(12, 12)
2367
2368
Border_9.Name = "Border"
2369
Border_9.Parent = Borders_2
2370
Border_9.BackgroundColor3 = Color3.new(1, 1, 1)
2371
Border_9.BackgroundTransparency = 1
2372
Border_9.BorderSizePixel = 0
2373
Border_9.Position = UDim2.new(1, 0, 1, 0)
2374
Border_9.Size = UDim2.new(0, 12, 0, 12)
2375
Border_9.ZIndex = 110
2376
Border_9.Image = "http://www.roblox.com/asset/?id=238725003"
2377
Border_9.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
2378
Border_9.ImageRectOffset = Vector2.new(24, 24)
2379
Border_9.ImageRectSize = Vector2.new(12, 12)
2380
2381
Border_10.Name = "Border"
2382
Border_10.Parent = Borders_2
2383
Border_10.BackgroundColor3 = Color3.new(1, 1, 1)
2384
Border_10.BackgroundTransparency = 1
2385
Border_10.BorderSizePixel = 0
2386
Border_10.Position = UDim2.new(0, 0, 1, 0)
2387
Border_10.Size = UDim2.new(1, 0, 0, 12)
2388
Border_10.ZIndex = 110
2389
Border_10.Image = "http://www.roblox.com/asset/?id=238725003"
2390
Border_10.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
2391
Border_10.ImageRectOffset = Vector2.new(12, 24)
2392
Border_10.ImageRectSize = Vector2.new(12, 12)
2393
2394
Border_11.Name = "Border"
2395
Border_11.Parent = Borders_2
2396
Border_11.BackgroundColor3 = Color3.new(1, 1, 1)
2397
Border_11.BackgroundTransparency = 1
2398
Border_11.BorderSizePixel = 0
2399
Border_11.Position = UDim2.new(0, 0, 0, -12)
2400
Border_11.Size = UDim2.new(1, 0, 0, 12)
2401
Border_11.ZIndex = 110
2402
Border_11.Image = "http://www.roblox.com/asset/?id=238725003"
2403
Border_11.ImageRectOffset = Vector2.new(12, 0)
2404
Border_11.ImageRectSize = Vector2.new(12, 12)
2405
2406
Border_12.Name = "Border"
2407
Border_12.Parent = Borders_2
2408
Border_12.BackgroundColor3 = Color3.new(1, 1, 1)
2409
Border_12.BackgroundTransparency = 1
2410
Border_12.BorderSizePixel = 0
2411
Border_12.Position = UDim2.new(0, -12, 0, 0)
2412
Border_12.Size = UDim2.new(0, 12, 1, 0)
2413
Border_12.ZIndex = 110
2414
Border_12.Image = "http://www.roblox.com/asset/?id=238725003"
2415
Border_12.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
2416
Border_12.ImageRectOffset = Vector2.new(0, 12)
2417
Border_12.ImageRectSize = Vector2.new(12, 12)
2418
2419
Border_13.Name = "Border"
2420
Border_13.Parent = Borders_2
2421
Border_13.BackgroundColor3 = Color3.new(1, 1, 1)
2422
Border_13.BackgroundTransparency = 1
2423
Border_13.BorderSizePixel = 0
2424
Border_13.Position = UDim2.new(1, 0, 0, 0)
2425
Border_13.Size = UDim2.new(0, 12, 1, 0)
2426
Border_13.ZIndex = 110
2427
Border_13.Image = "http://www.roblox.com/asset/?id=238725003"
2428
Border_13.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
2429
Border_13.ImageRectOffset = Vector2.new(24, 12)
2430
Border_13.ImageRectSize = Vector2.new(12, 12)
2431
2432
MainCmds.Name = "MainCmds"
2433
MainCmds.Parent = MainFrame
2434
MainCmds.BackgroundColor3 = Color3.new(0, 0.666667, 1)
2435
MainCmds.BorderSizePixel = 0
2436
MainCmds.Size = UDim2.new(0, 100, 0, 20)
2437
MainCmds.ZIndex = 120
2438
MainCmds.Font = Enum.Font.Highway
2439
MainCmds.Text = "Main Commands"
2440
MainCmds.TextColor3 = Color3.new(1, 1, 1)
2441
MainCmds.TextScaled = true
2442
MainCmds.TextSize = 14
2443
MainCmds.TextWrapped = true
2444
2445
Borders_3.Name = "Borders"
2446
Borders_3.Parent = MainCmds
2447
Borders_3.BackgroundColor3 = Color3.new(1, 1, 1)
2448
Borders_3.BackgroundTransparency = 1
2449
Borders_3.BorderSizePixel = 0
2450
Borders_3.Size = UDim2.new(1, 0, 1, 0)
2451
Borders_3.ZIndex = 120
2452
2453
Border_14.Name = "Border"
2454
Border_14.Parent = Borders_3
2455
Border_14.BackgroundColor3 = Color3.new(1, 1, 1)
2456
Border_14.BackgroundTransparency = 1
2457
Border_14.BorderSizePixel = 0
2458
Border_14.Position = UDim2.new(0, -12, 1, 0)
2459
Border_14.Size = UDim2.new(0, 12, 0, 12)
2460
Border_14.ZIndex = 120
2461
Border_14.Image = "http://www.roblox.com/asset/?id=238725003"
2462
Border_14.ImageColor3 = Color3.new(0, 0.666667, 1)
2463
Border_14.ImageRectOffset = Vector2.new(0, 24)
2464
Border_14.ImageRectSize = Vector2.new(12, 12)
2465
2466
Border_15.Name = "Border"
2467
Border_15.Parent = Borders_3
2468
Border_15.BackgroundColor3 = Color3.new(1, 1, 1)
2469
Border_15.BackgroundTransparency = 1
2470
Border_15.BorderSizePixel = 0
2471
Border_15.Position = UDim2.new(1, 0, 1, 0)
2472
Border_15.Size = UDim2.new(0, 12, 0, 12)
2473
Border_15.ZIndex = 120
2474
Border_15.Image = "http://www.roblox.com/asset/?id=238725003"
2475
Border_15.ImageColor3 = Color3.new(0, 0.666667, 1)
2476
Border_15.ImageRectOffset = Vector2.new(24, 24)
2477
Border_15.ImageRectSize = Vector2.new(12, 12)
2478
2479
Border_16.Name = "Border"
2480
Border_16.Parent = Borders_3
2481
Border_16.BackgroundColor3 = Color3.new(1, 1, 1)
2482
Border_16.BackgroundTransparency = 1
2483
Border_16.BorderSizePixel = 0
2484
Border_16.Position = UDim2.new(0, 0, 1, 0)
2485
Border_16.Size = UDim2.new(1, 0, 0, 12)
2486
Border_16.ZIndex = 120
2487
Border_16.Image = "http://www.roblox.com/asset/?id=238725003"
2488
Border_16.ImageColor3 = Color3.new(0, 0.666667, 1)
2489
Border_16.ImageRectOffset = Vector2.new(12, 24)
2490
Border_16.ImageRectSize = Vector2.new(12, 12)
2491
2492
Border_17.Name = "Border"
2493
Border_17.Parent = Borders_3
2494
Border_17.BackgroundColor3 = Color3.new(1, 1, 1)
2495
Border_17.BackgroundTransparency = 1
2496
Border_17.BorderSizePixel = 0
2497
Border_17.Position = UDim2.new(0, -12, 0, 0)
2498
Border_17.Size = UDim2.new(0, 12, 1, 0)
2499
Border_17.ZIndex = 120
2500
Border_17.Image = "http://www.roblox.com/asset/?id=238725003"
2501
Border_17.ImageColor3 = Color3.new(0, 0.666667, 1)
2502
Border_17.ImageRectOffset = Vector2.new(0, 12)
2503
Border_17.ImageRectSize = Vector2.new(12, 12)
2504
2505
Border_18.Name = "Border"
2506
Border_18.Parent = Borders_3
2507
Border_18.BackgroundColor3 = Color3.new(1, 1, 1)
2508
Border_18.BackgroundTransparency = 1
2509
Border_18.BorderSizePixel = 0
2510
Border_18.Position = UDim2.new(1, 0, 0, 0)
2511
Border_18.Size = UDim2.new(0, 12, 1, 0)
2512
Border_18.ZIndex = 120
2513
Border_18.Image = "http://www.roblox.com/asset/?id=238725003"
2514
Border_18.ImageColor3 = Color3.new(0, 0.666667, 1)
2515
Border_18.ImageRectOffset = Vector2.new(24, 12)
2516
Border_18.ImageRectSize = Vector2.new(12, 12)
2517
2518
Challenges.Name = "Challenges"
2519
Challenges.Parent = MainFrame
2520
Challenges.BackgroundColor3 = Color3.new(1, 1, 1)
2521
Challenges.BorderSizePixel = 0
2522
Challenges.Position = UDim2.new(0.33365199, 0, 0, 0)
2523
Challenges.Size = UDim2.new(0, 100, 0, 20)
2524
Challenges.ZIndex = 120
2525
Challenges.Font = Enum.Font.Highway
2526
Challenges.Text = "Challenges"
2527
Challenges.TextColor3 = Color3.new(0.784314, 0.784314, 0.784314)
2528
Challenges.TextScaled = true
2529
Challenges.TextSize = 14
2530
Challenges.TextWrapped = true
2531
2532
Borders_4.Name = "Borders"
2533
Borders_4.Parent = Challenges
2534
Borders_4.BackgroundColor3 = Color3.new(1, 1, 1)
2535
Borders_4.BackgroundTransparency = 1
2536
Borders_4.BorderSizePixel = 0
2537
Borders_4.Size = UDim2.new(1, 0, 1, 0)
2538
Borders_4.ZIndex = 120
2539
2540
Border_19.Name = "Border"
2541
Border_19.Parent = Borders_4
2542
Border_19.BackgroundColor3 = Color3.new(1, 1, 1)
2543
Border_19.BackgroundTransparency = 1
2544
Border_19.BorderSizePixel = 0
2545
Border_19.Position = UDim2.new(0, -12, 1, 0)
2546
Border_19.Size = UDim2.new(0, 12, 0, 12)
2547
Border_19.ZIndex = 120
2548
Border_19.Image = "http://www.roblox.com/asset/?id=238725003"
2549
Border_19.ImageRectOffset = Vector2.new(0, 24)
2550
Border_19.ImageRectSize = Vector2.new(12, 12)
2551
2552
Border_20.Name = "Border"
2553
Border_20.Parent = Borders_4
2554
Border_20.BackgroundColor3 = Color3.new(1, 1, 1)
2555
Border_20.BackgroundTransparency = 1
2556
Border_20.BorderSizePixel = 0
2557
Border_20.Position = UDim2.new(1, 0, 1, 0)
2558
Border_20.Size = UDim2.new(0, 12, 0, 12)
2559
Border_20.ZIndex = 120
2560
Border_20.Image = "http://www.roblox.com/asset/?id=238725003"
2561
Border_20.ImageRectOffset = Vector2.new(24, 24)
2562
Border_20.ImageRectSize = Vector2.new(12, 12)
2563
2564
Border_21.Name = "Border"
2565
Border_21.Parent = Borders_4
2566
Border_21.BackgroundColor3 = Color3.new(1, 1, 1)
2567
Border_21.BackgroundTransparency = 1
2568
Border_21.BorderSizePixel = 0
2569
Border_21.Position = UDim2.new(0, 0, 1, 0)
2570
Border_21.Size = UDim2.new(1, 0, 0, 12)
2571
Border_21.ZIndex = 120
2572
Border_21.Image = "http://www.roblox.com/asset/?id=238725003"
2573
Border_21.ImageRectOffset = Vector2.new(12, 24)
2574
Border_21.ImageRectSize = Vector2.new(12, 12)
2575
2576
Border_22.Name = "Border"
2577
Border_22.Parent = Borders_4
2578
Border_22.BackgroundColor3 = Color3.new(1, 1, 1)
2579
Border_22.BackgroundTransparency = 1
2580
Border_22.BorderSizePixel = 0
2581
Border_22.Position = UDim2.new(0, -12, 0, 0)
2582
Border_22.Size = UDim2.new(0, 12, 1, 0)
2583
Border_22.ZIndex = 120
2584
Border_22.Image = "http://www.roblox.com/asset/?id=238725003"
2585
Border_22.ImageRectOffset = Vector2.new(0, 12)
2586
Border_22.ImageRectSize = Vector2.new(12, 12)
2587
2588
Border_23.Name = "Border"
2589
Border_23.Parent = Borders_4
2590
Border_23.BackgroundColor3 = Color3.new(1, 1, 1)
2591
Border_23.BackgroundTransparency = 1
2592
Border_23.BorderSizePixel = 0
2593
Border_23.Position = UDim2.new(1, 0, 0, 0)
2594
Border_23.Size = UDim2.new(0, 12, 1, 0)
2595
Border_23.ZIndex = 120
2596
Border_23.Image = "http://www.roblox.com/asset/?id=238725003"
2597
Border_23.ImageRectOffset = Vector2.new(24, 12)
2598
Border_23.ImageRectSize = Vector2.new(12, 12)
2599
2600
Extras.Name = "Extras"
2601
Extras.Parent = MainFrame
2602
Extras.BackgroundColor3 = Color3.new(1, 1, 1)
2603
Extras.BorderSizePixel = 0
2604
Extras.Position = UDim2.new(0.660611868, 0, 0, 0)
2605
Extras.Size = UDim2.new(0, 100, 0, 20)
2606
Extras.ZIndex = 120
2607
Extras.Font = Enum.Font.Highway
2608
Extras.Text = "Extras"
2609
Extras.TextColor3 = Color3.new(0.784314, 0.784314, 0.784314)
2610
Extras.TextScaled = true
2611
Extras.TextSize = 14
2612
Extras.TextWrapped = true
2613
2614
Borders_5.Name = "Borders"
2615
Borders_5.Parent = Extras
2616
Borders_5.BackgroundColor3 = Color3.new(1, 1, 1)
2617
Borders_5.BackgroundTransparency = 1
2618
Borders_5.BorderSizePixel = 0
2619
Borders_5.Size = UDim2.new(1, 0, 1, 0)
2620
Borders_5.ZIndex = 120
2621
2622
Border_24.Name = "Border"
2623
Border_24.Parent = Borders_5
2624
Border_24.BackgroundColor3 = Color3.new(1, 1, 1)
2625
Border_24.BackgroundTransparency = 1
2626
Border_24.BorderSizePixel = 0
2627
Border_24.Position = UDim2.new(0, -12, 1, 0)
2628
Border_24.Size = UDim2.new(0, 12, 0, 12)
2629
Border_24.ZIndex = 120
2630
Border_24.Image = "http://www.roblox.com/asset/?id=238725003"
2631
Border_24.ImageRectOffset = Vector2.new(0, 24)
2632
Border_24.ImageRectSize = Vector2.new(12, 12)
2633
2634
Border_25.Name = "Border"
2635
Border_25.Parent = Borders_5
2636
Border_25.BackgroundColor3 = Color3.new(1, 1, 1)
2637
Border_25.BackgroundTransparency = 1
2638
Border_25.BorderSizePixel = 0
2639
Border_25.Position = UDim2.new(1, 0, 1, 0)
2640
Border_25.Size = UDim2.new(0, 12, 0, 12)
2641
Border_25.ZIndex = 120
2642
Border_25.Image = "http://www.roblox.com/asset/?id=238725003"
2643
Border_25.ImageRectOffset = Vector2.new(24, 24)
2644
Border_25.ImageRectSize = Vector2.new(12, 12)
2645
2646
Border_26.Name = "Border"
2647
Border_26.Parent = Borders_5
2648
Border_26.BackgroundColor3 = Color3.new(1, 1, 1)
2649
Border_26.BackgroundTransparency = 1
2650
Border_26.BorderSizePixel = 0
2651
Border_26.Position = UDim2.new(0, 0, 1, 0)
2652
Border_26.Size = UDim2.new(1, 0, 0, 12)
2653
Border_26.ZIndex = 120
2654
Border_26.Image = "http://www.roblox.com/asset/?id=238725003"
2655
Border_26.ImageRectOffset = Vector2.new(12, 24)
2656
Border_26.ImageRectSize = Vector2.new(12, 12)
2657
2658
Border_27.Name = "Border"
2659
Border_27.Parent = Borders_5
2660
Border_27.BackgroundColor3 = Color3.new(1, 1, 1)
2661
Border_27.BackgroundTransparency = 1
2662
Border_27.BorderSizePixel = 0
2663
Border_27.Position = UDim2.new(0, -12, 0, 0)
2664
Border_27.Size = UDim2.new(0, 12, 1, 0)
2665
Border_27.ZIndex = 120
2666
Border_27.Image = "http://www.roblox.com/asset/?id=238725003"
2667
Border_27.ImageRectOffset = Vector2.new(0, 12)
2668
Border_27.ImageRectSize = Vector2.new(12, 12)
2669
2670
Border_28.Name = "Border"
2671
Border_28.Parent = Borders_5
2672
Border_28.BackgroundColor3 = Color3.new(1, 1, 1)
2673
Border_28.BackgroundTransparency = 1
2674
Border_28.BorderSizePixel = 0
2675
Border_28.Position = UDim2.new(1, 0, 0, 0)
2676
Border_28.Size = UDim2.new(0, 12, 1, 0)
2677
Border_28.ZIndex = 120
2678
Border_28.Image = "http://www.roblox.com/asset/?id=238725003"
2679
Border_28.ImageRectOffset = Vector2.new(24, 12)
2680
Border_28.ImageRectSize = Vector2.new(12, 12)
2681
2682
PageFrame.Name = "PageFrame"
2683
PageFrame.Parent = MainFrame
2684
PageFrame.BackgroundColor3 = Color3.new(1, 1, 1)
2685
PageFrame.Position = UDim2.new(0, 0, 0.238670692, 0)
2686
PageFrame.Size = UDim2.new(1, 0, 0.761329293, 0)
2687
PageFrame.ZIndex = 100
2688
2689
Borders_6.Name = "Borders"
2690
Borders_6.Parent = PageFrame
2691
Borders_6.BackgroundColor3 = Color3.new(1, 1, 1)
2692
Borders_6.BackgroundTransparency = 1
2693
Borders_6.BorderSizePixel = 0
2694
Borders_6.Size = UDim2.new(1, 0, 1, 0)
2695
Borders_6.ZIndex = 120
2696
2697
Border_29.Name = "Border"
2698
Border_29.Parent = Borders_6
2699
Border_29.BackgroundColor3 = Color3.new(1, 1, 1)
2700
Border_29.BackgroundTransparency = 1
2701
Border_29.BorderSizePixel = 0
2702
Border_29.Position = UDim2.new(0, -12, 0, -12)
2703
Border_29.Size = UDim2.new(0, 12, 0, 12)
2704
Border_29.ZIndex = 110
2705
Border_29.Image = "http://www.roblox.com/asset/?id=238725003"
2706
Border_29.ImageRectSize = Vector2.new(12, 12)
2707
2708
Border_30.Name = "Border"
2709
Border_30.Parent = Borders_6
2710
Border_30.BackgroundColor3 = Color3.new(1, 1, 1)
2711
Border_30.BackgroundTransparency = 1
2712
Border_30.BorderSizePixel = 0
2713
Border_30.Position = UDim2.new(1, 0, 0, -12)
2714
Border_30.Size = UDim2.new(0, 12, 0, 12)
2715
Border_30.ZIndex = 110
2716
Border_30.Image = "http://www.roblox.com/asset/?id=238725003"
2717
Border_30.ImageRectOffset = Vector2.new(24, 0)
2718
Border_30.ImageRectSize = Vector2.new(12, 12)
2719
2720
Border_31.Name = "Border"
2721
Border_31.Parent = Borders_6
2722
Border_31.BackgroundColor3 = Color3.new(1, 1, 1)
2723
Border_31.BackgroundTransparency = 1
2724
Border_31.BorderSizePixel = 0
2725
Border_31.Position = UDim2.new(0, -12, 1, 0)
2726
Border_31.Size = UDim2.new(0, 12, 0, 12)
2727
Border_31.ZIndex = 110
2728
Border_31.Image = "http://www.roblox.com/asset/?id=238725003"
2729
Border_31.ImageRectOffset = Vector2.new(0, 24)
2730
Border_31.ImageRectSize = Vector2.new(12, 12)
2731
2732
Border_32.Name = "Border"
2733
Border_32.Parent = Borders_6
2734
Border_32.BackgroundColor3 = Color3.new(1, 1, 1)
2735
Border_32.BackgroundTransparency = 1
2736
Border_32.BorderSizePixel = 0
2737
Border_32.Position = UDim2.new(1, 0, 1, 0)
2738
Border_32.Size = UDim2.new(0, 12, 0, 12)
2739
Border_32.ZIndex = 110
2740
Border_32.Image = "http://www.roblox.com/asset/?id=238725003"
2741
Border_32.ImageRectOffset = Vector2.new(24, 24)
2742
Border_32.ImageRectSize = Vector2.new(12, 12)
2743
2744
Border_33.Name = "Border"
2745
Border_33.Parent = Borders_6
2746
Border_33.BackgroundColor3 = Color3.new(1, 1, 1)
2747
Border_33.BackgroundTransparency = 1
2748
Border_33.BorderSizePixel = 0
2749
Border_33.Position = UDim2.new(0, 0, 1, 0)
2750
Border_33.Size = UDim2.new(1, 0, 0, 12)
2751
Border_33.ZIndex = 110
2752
Border_33.Image = "http://www.roblox.com/asset/?id=238725003"
2753
Border_33.ImageRectOffset = Vector2.new(12, 24)
2754
Border_33.ImageRectSize = Vector2.new(12, 12)
2755
2756
Border_34.Name = "Border"
2757
Border_34.Parent = Borders_6
2758
Border_34.BackgroundColor3 = Color3.new(1, 1, 1)
2759
Border_34.BackgroundTransparency = 1
2760
Border_34.BorderSizePixel = 0
2761
Border_34.Position = UDim2.new(0, 0, 0, -12)
2762
Border_34.Size = UDim2.new(1, 0, 0, 12)
2763
Border_34.ZIndex = 110
2764
Border_34.Image = "http://www.roblox.com/asset/?id=238725003"
2765
Border_34.ImageRectOffset = Vector2.new(12, 0)
2766
Border_34.ImageRectSize = Vector2.new(12, 12)
2767
2768
Border_35.Name = "Border"
2769
Border_35.Parent = Borders_6
2770
Border_35.BackgroundColor3 = Color3.new(1, 1, 1)
2771
Border_35.BackgroundTransparency = 1
2772
Border_35.BorderSizePixel = 0
2773
Border_35.Position = UDim2.new(0, -12, 0, 0)
2774
Border_35.Size = UDim2.new(0, 12, 1, 0)
2775
Border_35.ZIndex = 110
2776
Border_35.Image = "http://www.roblox.com/asset/?id=238725003"
2777
Border_35.ImageRectOffset = Vector2.new(0, 12)
2778
Border_35.ImageRectSize = Vector2.new(12, 12)
2779
2780
Border_36.Name = "Border"
2781
Border_36.Parent = Borders_6
2782
Border_36.BackgroundColor3 = Color3.new(1, 1, 1)
2783
Border_36.BackgroundTransparency = 1
2784
Border_36.BorderSizePixel = 0
2785
Border_36.Position = UDim2.new(1, 0, 0, 0)
2786
Border_36.Size = UDim2.new(0, 12, 1, 0)
2787
Border_36.ZIndex = 110
2788
Border_36.Image = "http://www.roblox.com/asset/?id=238725003"
2789
Border_36.ImageRectOffset = Vector2.new(24, 12)
2790
Border_36.ImageRectSize = Vector2.new(12, 12)
2791
2792
2793
2794
 
2795
 -- Objects
2796
2797
ChallengesFrame = Instance.new("Frame")
2798
ChallengeLabel = Instance.new("TextLabel")
2799
NoChallengeFrame = Instance.new("Frame")
2800
Borders = Instance.new("Frame")
2801
Border = Instance.new("ImageLabel")
2802
Border_2 = Instance.new("ImageLabel")
2803
Border_3 = Instance.new("ImageLabel")
2804
Border_4 = Instance.new("ImageLabel")
2805
Border_5 = Instance.new("ImageLabel")
2806
Border_6 = Instance.new("ImageLabel")
2807
Border_7 = Instance.new("ImageLabel")
2808
Border_8 = Instance.new("ImageLabel")
2809
ChallengeInfo = Instance.new("TextLabel")
2810
TidepoolFrame = Instance.new("Frame")
2811
Borders_2 = Instance.new("Frame")
2812
Border_9 = Instance.new("ImageLabel")
2813
Border_10 = Instance.new("ImageLabel")
2814
Border_11 = Instance.new("ImageLabel")
2815
Border_12 = Instance.new("ImageLabel")
2816
Border_13 = Instance.new("ImageLabel")
2817
Border_14 = Instance.new("ImageLabel")
2818
Border_15 = Instance.new("ImageLabel")
2819
Border_16 = Instance.new("ImageLabel")
2820
InsWin = Instance.new("TextButton")
2821
Borders_3 = Instance.new("Frame")
2822
Border_17 = Instance.new("ImageLabel")
2823
Border_18 = Instance.new("ImageLabel")
2824
Border_19 = Instance.new("ImageLabel")
2825
Border_20 = Instance.new("ImageLabel")
2826
Border_21 = Instance.new("ImageLabel")
2827
Border_22 = Instance.new("ImageLabel")
2828
Border_23 = Instance.new("ImageLabel")
2829
Border_24 = Instance.new("ImageLabel")
2830
ChallengeInfo_2 = Instance.new("TextLabel")
2831
GetAGripFrame = Instance.new("Frame")
2832
Borders_4 = Instance.new("Frame")
2833
Border_25 = Instance.new("ImageLabel")
2834
Border_26 = Instance.new("ImageLabel")
2835
Border_27 = Instance.new("ImageLabel")
2836
Border_28 = Instance.new("ImageLabel")
2837
Border_29 = Instance.new("ImageLabel")
2838
Border_30 = Instance.new("ImageLabel")
2839
Border_31 = Instance.new("ImageLabel")
2840
Border_32 = Instance.new("ImageLabel")
2841
Immunity = Instance.new("TextButton")
2842
Borders_5 = Instance.new("Frame")
2843
Border_33 = Instance.new("ImageLabel")
2844
Border_34 = Instance.new("ImageLabel")
2845
Border_35 = Instance.new("ImageLabel")
2846
Border_36 = Instance.new("ImageLabel")
2847
Border_37 = Instance.new("ImageLabel")
2848
Border_38 = Instance.new("ImageLabel")
2849
Border_39 = Instance.new("ImageLabel")
2850
Border_40 = Instance.new("ImageLabel")
2851
ChallengeInfo_3 = Instance.new("TextLabel")
2852
Playername = Instance.new("TextBox")
2853
Borders_6 = Instance.new("Frame")
2854
Border_41 = Instance.new("ImageLabel")
2855
Border_42 = Instance.new("ImageLabel")
2856
Border_43 = Instance.new("ImageLabel")
2857
Border_44 = Instance.new("ImageLabel")
2858
Border_45 = Instance.new("ImageLabel")
2859
Border_46 = Instance.new("ImageLabel")
2860
Border_47 = Instance.new("ImageLabel")
2861
Border_48 = Instance.new("ImageLabel")
2862
ForceLose = Instance.new("TextButton")
2863
Borders_7 = Instance.new("Frame")
2864
Border_49 = Instance.new("ImageLabel")
2865
Border_50 = Instance.new("ImageLabel")
2866
Border_51 = Instance.new("ImageLabel")
2867
Border_52 = Instance.new("ImageLabel")
2868
Border_53 = Instance.new("ImageLabel")
2869
Border_54 = Instance.new("ImageLabel")
2870
Border_55 = Instance.new("ImageLabel")
2871
Border_56 = Instance.new("ImageLabel")
2872
CrypticComboFrame = Instance.new("Frame")
2873
Borders_8 = Instance.new("Frame")
2874
Border_57 = Instance.new("ImageLabel")
2875
Border_58 = Instance.new("ImageLabel")
2876
Border_59 = Instance.new("ImageLabel")
2877
Border_60 = Instance.new("ImageLabel")
2878
Border_61 = Instance.new("ImageLabel")
2879
Border_62 = Instance.new("ImageLabel")
2880
Border_63 = Instance.new("ImageLabel")
2881
Border_64 = Instance.new("ImageLabel")
2882
ChallengeInfo_4 = Instance.new("TextLabel")
2883
BotWin = Instance.new("TextButton")
2884
Borders_9 = Instance.new("Frame")
2885
Border_65 = Instance.new("ImageLabel")
2886
Border_66 = Instance.new("ImageLabel")
2887
Border_67 = Instance.new("ImageLabel")
2888
Border_68 = Instance.new("ImageLabel")
2889
Border_69 = Instance.new("ImageLabel")
2890
Border_70 = Instance.new("ImageLabel")
2891
Border_71 = Instance.new("ImageLabel")
2892
Border_72 = Instance.new("ImageLabel")
2893
BywayBustleFrame = Instance.new("Frame")
2894
Borders_10 = Instance.new("Frame")
2895
Border_73 = Instance.new("ImageLabel")
2896
Border_74 = Instance.new("ImageLabel")
2897
Border_75 = Instance.new("ImageLabel")
2898
Border_76 = Instance.new("ImageLabel")
2899
Border_77 = Instance.new("ImageLabel")
2900
Border_78 = Instance.new("ImageLabel")
2901
Border_79 = Instance.new("ImageLabel")
2902
Border_80 = Instance.new("ImageLabel")
2903
BotWin_2 = Instance.new("TextButton")
2904
Borders_11 = Instance.new("Frame")
2905
Border_81 = Instance.new("ImageLabel")
2906
Border_82 = Instance.new("ImageLabel")
2907
Border_83 = Instance.new("ImageLabel")
2908
Border_84 = Instance.new("ImageLabel")
2909
Border_85 = Instance.new("ImageLabel")
2910
Border_86 = Instance.new("ImageLabel")
2911
Border_87 = Instance.new("ImageLabel")
2912
Border_88 = Instance.new("ImageLabel")
2913
ChallengeInfo_5 = Instance.new("TextLabel")
2914
KeysToVictoryFrame = Instance.new("Frame")
2915
Borders_12 = Instance.new("Frame")
2916
Border_89 = Instance.new("ImageLabel")
2917
Border_90 = Instance.new("ImageLabel")
2918
Border_91 = Instance.new("ImageLabel")
2919
Border_92 = Instance.new("ImageLabel")
2920
Border_93 = Instance.new("ImageLabel")
2921
Border_94 = Instance.new("ImageLabel")
2922
Border_95 = Instance.new("ImageLabel")
2923
Border_96 = Instance.new("ImageLabel")
2924
ChallengeInfo_6 = Instance.new("TextLabel")
2925
BotWin_3 = Instance.new("TextButton")
2926
Borders_13 = Instance.new("Frame")
2927
Border_97 = Instance.new("ImageLabel")
2928
Border_98 = Instance.new("ImageLabel")
2929
Border_99 = Instance.new("ImageLabel")
2930
Border_100 = Instance.new("ImageLabel")
2931
Border_101 = Instance.new("ImageLabel")
2932
Border_102 = Instance.new("ImageLabel")
2933
Border_103 = Instance.new("ImageLabel")
2934
Border_104 = Instance.new("ImageLabel")
2935
DiveDwellingFrame = Instance.new("Frame")
2936
Borders_14 = Instance.new("Frame")
2937
Border_105 = Instance.new("ImageLabel")
2938
Border_106 = Instance.new("ImageLabel")
2939
Border_107 = Instance.new("ImageLabel")
2940
Border_108 = Instance.new("ImageLabel")
2941
Border_109 = Instance.new("ImageLabel")
2942
Border_110 = Instance.new("ImageLabel")
2943
Border_111 = Instance.new("ImageLabel")
2944
Border_112 = Instance.new("ImageLabel")
2945
ChallengeInfo_7 = Instance.new("TextLabel")
2946
BotWin_4 = Instance.new("TextButton")
2947
Borders_15 = Instance.new("Frame")
2948
Border_113 = Instance.new("ImageLabel")
2949
Border_114 = Instance.new("ImageLabel")
2950
Border_115 = Instance.new("ImageLabel")
2951
Border_116 = Instance.new("ImageLabel")
2952
Border_117 = Instance.new("ImageLabel")
2953
Border_118 = Instance.new("ImageLabel")
2954
Border_119 = Instance.new("ImageLabel")
2955
Border_120 = Instance.new("ImageLabel")
2956
BeatToThePunchFrame = Instance.new("Frame")
2957
Borders_16 = Instance.new("Frame")
2958
Border_121 = Instance.new("ImageLabel")
2959
Border_122 = Instance.new("ImageLabel")
2960
Border_123 = Instance.new("ImageLabel")
2961
Border_124 = Instance.new("ImageLabel")
2962
Border_125 = Instance.new("ImageLabel")
2963
Border_126 = Instance.new("ImageLabel")
2964
Border_127 = Instance.new("ImageLabel")
2965
Border_128 = Instance.new("ImageLabel")
2966
ChallengeInfo_8 = Instance.new("TextLabel")
2967
BotWin_5 = Instance.new("TextButton")
2968
Borders_17 = Instance.new("Frame")
2969
Border_129 = Instance.new("ImageLabel")
2970
Border_130 = Instance.new("ImageLabel")
2971
Border_131 = Instance.new("ImageLabel")
2972
Border_132 = Instance.new("ImageLabel")
2973
Border_133 = Instance.new("ImageLabel")
2974
Border_134 = Instance.new("ImageLabel")
2975
Border_135 = Instance.new("ImageLabel")
2976
Border_136 = Instance.new("ImageLabel")
2977
2978
-- Properties
2979
2980
ChallengesFrame.Name = "ChallengesFrame"
2981
ChallengesFrame.BackgroundColor3 = Color3.new(1, 1, 1)
2982
ChallengesFrame.BackgroundTransparency = 1
2983
ChallengesFrame.BorderSizePixel = 0
2984
ChallengesFrame.Size = UDim2.new(1, 0, 1, 0)
2985
ChallengesFrame.Visible = false
2986
2987
ChallengeLabel.Name = "ChallengeLabel"
2988
ChallengeLabel.Parent = ChallengesFrame
2989
ChallengeLabel.BackgroundColor3 = Color3.new(1, 1, 1)
2990
ChallengeLabel.BackgroundTransparency = 1
2991
ChallengeLabel.BorderSizePixel = 0
2992
ChallengeLabel.Position = UDim2.new(0.0076481835, 0, 0, 0)
2993
ChallengeLabel.Size = UDim2.new(0.99235183, 0, 0.134920642, 0)
2994
ChallengeLabel.ZIndex = 120
2995
ChallengeLabel.Font = Enum.Font.Highway
2996
ChallengeLabel.Text = "Current Challenge : Not Found"
2997
ChallengeLabel.TextColor3 = Color3.new(0.784314, 0.784314, 0.784314)
2998
ChallengeLabel.TextScaled = true
2999
ChallengeLabel.TextSize = 14
3000
ChallengeLabel.TextWrapped = true
3001
ChallengeLabel.TextXAlignment = Enum.TextXAlignment.Left
3002
3003
NoChallengeFrame.Name = "NoChallengeFrame"
3004
NoChallengeFrame.Parent = ChallengesFrame
3005
NoChallengeFrame.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3006
NoChallengeFrame.Position = UDim2.new(0, 0, 0.238670692, 0)
3007
NoChallengeFrame.Size = UDim2.new(1, 0, 0.761329293, 0)
3008
NoChallengeFrame.ZIndex = 100
3009
3010
Borders.Name = "Borders"
3011
Borders.Parent = NoChallengeFrame
3012
Borders.BackgroundColor3 = Color3.new(1, 1, 1)
3013
Borders.BackgroundTransparency = 1
3014
Borders.BorderSizePixel = 0
3015
Borders.Size = UDim2.new(1, 0, 1, 0)
3016
Borders.ZIndex = 120
3017
3018
Border.Name = "Border"
3019
Border.Parent = Borders
3020
Border.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3021
Border.BackgroundTransparency = 1
3022
Border.BorderSizePixel = 0
3023
Border.Position = UDim2.new(0, -12, 0, -12)
3024
Border.Size = UDim2.new(0, 12, 0, 12)
3025
Border.ZIndex = 110
3026
Border.Image = "http://www.roblox.com/asset/?id=238725003"
3027
Border.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3028
Border.ImageRectSize = Vector2.new(12, 12)
3029
3030
Border_2.Name = "Border"
3031
Border_2.Parent = Borders
3032
Border_2.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3033
Border_2.BackgroundTransparency = 1
3034
Border_2.BorderSizePixel = 0
3035
Border_2.Position = UDim2.new(1, 0, 0, -12)
3036
Border_2.Size = UDim2.new(0, 12, 0, 12)
3037
Border_2.ZIndex = 110
3038
Border_2.Image = "http://www.roblox.com/asset/?id=238725003"
3039
Border_2.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3040
Border_2.ImageRectOffset = Vector2.new(24, 0)
3041
Border_2.ImageRectSize = Vector2.new(12, 12)
3042
3043
Border_3.Name = "Border"
3044
Border_3.Parent = Borders
3045
Border_3.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3046
Border_3.BackgroundTransparency = 1
3047
Border_3.BorderSizePixel = 0
3048
Border_3.Position = UDim2.new(0, -12, 1, 0)
3049
Border_3.Size = UDim2.new(0, 12, 0, 12)
3050
Border_3.ZIndex = 110
3051
Border_3.Image = "http://www.roblox.com/asset/?id=238725003"
3052
Border_3.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3053
Border_3.ImageRectOffset = Vector2.new(0, 24)
3054
Border_3.ImageRectSize = Vector2.new(12, 12)
3055
3056
Border_4.Name = "Border"
3057
Border_4.Parent = Borders
3058
Border_4.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3059
Border_4.BackgroundTransparency = 1
3060
Border_4.BorderSizePixel = 0
3061
Border_4.Position = UDim2.new(1, 0, 1, 0)
3062
Border_4.Size = UDim2.new(0, 12, 0, 12)
3063
Border_4.ZIndex = 110
3064
Border_4.Image = "http://www.roblox.com/asset/?id=238725003"
3065
Border_4.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3066
Border_4.ImageRectOffset = Vector2.new(24, 24)
3067
Border_4.ImageRectSize = Vector2.new(12, 12)
3068
3069
Border_5.Name = "Border"
3070
Border_5.Parent = Borders
3071
Border_5.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3072
Border_5.BackgroundTransparency = 1
3073
Border_5.BorderSizePixel = 0
3074
Border_5.Position = UDim2.new(0, 0, 1, 0)
3075
Border_5.Size = UDim2.new(1, 0, 0, 12)
3076
Border_5.ZIndex = 110
3077
Border_5.Image = "http://www.roblox.com/asset/?id=238725003"
3078
Border_5.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3079
Border_5.ImageRectOffset = Vector2.new(12, 24)
3080
Border_5.ImageRectSize = Vector2.new(12, 12)
3081
3082
Border_6.Name = "Border"
3083
Border_6.Parent = Borders
3084
Border_6.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3085
Border_6.BackgroundTransparency = 1
3086
Border_6.BorderSizePixel = 0
3087
Border_6.Position = UDim2.new(0, 0, 0, -12)
3088
Border_6.Size = UDim2.new(1, 0, 0, 12)
3089
Border_6.ZIndex = 110
3090
Border_6.Image = "http://www.roblox.com/asset/?id=238725003"
3091
Border_6.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3092
Border_6.ImageRectOffset = Vector2.new(12, 0)
3093
Border_6.ImageRectSize = Vector2.new(12, 12)
3094
3095
Border_7.Name = "Border"
3096
Border_7.Parent = Borders
3097
Border_7.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3098
Border_7.BackgroundTransparency = 1
3099
Border_7.BorderSizePixel = 0
3100
Border_7.Position = UDim2.new(0, -12, 0, 0)
3101
Border_7.Size = UDim2.new(0, 12, 1, 0)
3102
Border_7.ZIndex = 110
3103
Border_7.Image = "http://www.roblox.com/asset/?id=238725003"
3104
Border_7.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3105
Border_7.ImageRectOffset = Vector2.new(0, 12)
3106
Border_7.ImageRectSize = Vector2.new(12, 12)
3107
3108
Border_8.Name = "Border"
3109
Border_8.Parent = Borders
3110
Border_8.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3111
Border_8.BackgroundTransparency = 1
3112
Border_8.BorderSizePixel = 0
3113
Border_8.Position = UDim2.new(1, 0, 0, 0)
3114
Border_8.Size = UDim2.new(0, 12, 1, 0)
3115
Border_8.ZIndex = 110
3116
Border_8.Image = "http://www.roblox.com/asset/?id=238725003"
3117
Border_8.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3118
Border_8.ImageRectOffset = Vector2.new(24, 12)
3119
Border_8.ImageRectSize = Vector2.new(12, 12)
3120
3121
ChallengeInfo.Name = "ChallengeInfo"
3122
ChallengeInfo.Parent = NoChallengeFrame
3123
ChallengeInfo.BackgroundColor3 = Color3.new(1, 1, 1)
3124
ChallengeInfo.BackgroundTransparency = 1
3125
ChallengeInfo.BorderSizePixel = 0
3126
ChallengeInfo.Position = UDim2.new(0.0076481835, 0, 0, 0)
3127
ChallengeInfo.Size = UDim2.new(0.99235183, 0, 0.134920642, 0)
3128
ChallengeInfo.ZIndex = 120
3129
ChallengeInfo.Font = Enum.Font.Highway
3130
ChallengeInfo.Text = "The Current Challenge Isn't Supported,"
3131
ChallengeInfo.TextColor3 = Color3.new(0.784314, 0.784314, 0.784314)
3132
ChallengeInfo.TextScaled = true
3133
ChallengeInfo.TextSize = 14
3134
ChallengeInfo.TextWrapped = true
3135
3136
TidepoolFrame.Name = "TidepoolFrame"
3137
TidepoolFrame.Parent = ChallengesFrame
3138
TidepoolFrame.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3139
TidepoolFrame.Position = UDim2.new(0, 0, 0.238670692, 0)
3140
TidepoolFrame.Size = UDim2.new(1, 0, 0.761329293, 0)
3141
TidepoolFrame.Visible = false
3142
TidepoolFrame.ZIndex = 100
3143
3144
Borders_2.Name = "Borders"
3145
Borders_2.Parent = TidepoolFrame
3146
Borders_2.BackgroundColor3 = Color3.new(1, 1, 1)
3147
Borders_2.BackgroundTransparency = 1
3148
Borders_2.BorderSizePixel = 0
3149
Borders_2.Size = UDim2.new(1, 0, 1, 0)
3150
Borders_2.ZIndex = 120
3151
3152
Border_9.Name = "Border"
3153
Border_9.Parent = Borders_2
3154
Border_9.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3155
Border_9.BackgroundTransparency = 1
3156
Border_9.BorderSizePixel = 0
3157
Border_9.Position = UDim2.new(0, -12, 0, -12)
3158
Border_9.Size = UDim2.new(0, 12, 0, 12)
3159
Border_9.ZIndex = 110
3160
Border_9.Image = "http://www.roblox.com/asset/?id=238725003"
3161
Border_9.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3162
Border_9.ImageRectSize = Vector2.new(12, 12)
3163
3164
Border_10.Name = "Border"
3165
Border_10.Parent = Borders_2
3166
Border_10.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3167
Border_10.BackgroundTransparency = 1
3168
Border_10.BorderSizePixel = 0
3169
Border_10.Position = UDim2.new(1, 0, 0, -12)
3170
Border_10.Size = UDim2.new(0, 12, 0, 12)
3171
Border_10.ZIndex = 110
3172
Border_10.Image = "http://www.roblox.com/asset/?id=238725003"
3173
Border_10.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3174
Border_10.ImageRectOffset = Vector2.new(24, 0)
3175
Border_10.ImageRectSize = Vector2.new(12, 12)
3176
3177
Border_11.Name = "Border"
3178
Border_11.Parent = Borders_2
3179
Border_11.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3180
Border_11.BackgroundTransparency = 1
3181
Border_11.BorderSizePixel = 0
3182
Border_11.Position = UDim2.new(0, -12, 1, 0)
3183
Border_11.Size = UDim2.new(0, 12, 0, 12)
3184
Border_11.ZIndex = 110
3185
Border_11.Image = "http://www.roblox.com/asset/?id=238725003"
3186
Border_11.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3187
Border_11.ImageRectOffset = Vector2.new(0, 24)
3188
Border_11.ImageRectSize = Vector2.new(12, 12)
3189
3190
Border_12.Name = "Border"
3191
Border_12.Parent = Borders_2
3192
Border_12.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3193
Border_12.BackgroundTransparency = 1
3194
Border_12.BorderSizePixel = 0
3195
Border_12.Position = UDim2.new(1, 0, 1, 0)
3196
Border_12.Size = UDim2.new(0, 12, 0, 12)
3197
Border_12.ZIndex = 110
3198
Border_12.Image = "http://www.roblox.com/asset/?id=238725003"
3199
Border_12.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3200
Border_12.ImageRectOffset = Vector2.new(24, 24)
3201
Border_12.ImageRectSize = Vector2.new(12, 12)
3202
3203
Border_13.Name = "Border"
3204
Border_13.Parent = Borders_2
3205
Border_13.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3206
Border_13.BackgroundTransparency = 1
3207
Border_13.BorderSizePixel = 0
3208
Border_13.Position = UDim2.new(0, 0, 1, 0)
3209
Border_13.Size = UDim2.new(1, 0, 0, 12)
3210
Border_13.ZIndex = 110
3211
Border_13.Image = "http://www.roblox.com/asset/?id=238725003"
3212
Border_13.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3213
Border_13.ImageRectOffset = Vector2.new(12, 24)
3214
Border_13.ImageRectSize = Vector2.new(12, 12)
3215
3216
Border_14.Name = "Border"
3217
Border_14.Parent = Borders_2
3218
Border_14.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3219
Border_14.BackgroundTransparency = 1
3220
Border_14.BorderSizePixel = 0
3221
Border_14.Position = UDim2.new(0, 0, 0, -12)
3222
Border_14.Size = UDim2.new(1, 0, 0, 12)
3223
Border_14.ZIndex = 110
3224
Border_14.Image = "http://www.roblox.com/asset/?id=238725003"
3225
Border_14.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3226
Border_14.ImageRectOffset = Vector2.new(12, 0)
3227
Border_14.ImageRectSize = Vector2.new(12, 12)
3228
3229
Border_15.Name = "Border"
3230
Border_15.Parent = Borders_2
3231
Border_15.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3232
Border_15.BackgroundTransparency = 1
3233
Border_15.BorderSizePixel = 0
3234
Border_15.Position = UDim2.new(0, -12, 0, 0)
3235
Border_15.Size = UDim2.new(0, 12, 1, 0)
3236
Border_15.ZIndex = 110
3237
Border_15.Image = "http://www.roblox.com/asset/?id=238725003"
3238
Border_15.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3239
Border_15.ImageRectOffset = Vector2.new(0, 12)
3240
Border_15.ImageRectSize = Vector2.new(12, 12)
3241
3242
Border_16.Name = "Border"
3243
Border_16.Parent = Borders_2
3244
Border_16.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3245
Border_16.BackgroundTransparency = 1
3246
Border_16.BorderSizePixel = 0
3247
Border_16.Position = UDim2.new(1, 0, 0, 0)
3248
Border_16.Size = UDim2.new(0, 12, 1, 0)
3249
Border_16.ZIndex = 110
3250
Border_16.Image = "http://www.roblox.com/asset/?id=238725003"
3251
Border_16.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3252
Border_16.ImageRectOffset = Vector2.new(24, 12)
3253
Border_16.ImageRectSize = Vector2.new(12, 12)
3254
3255
InsWin.Name = "InsWin"
3256
InsWin.Parent = TidepoolFrame
3257
InsWin.BackgroundColor3 = Color3.new(1, 1, 1)
3258
InsWin.BorderSizePixel = 0
3259
InsWin.Position = UDim2.new(0, 0, 0.34375, 0)
3260
InsWin.Size = UDim2.new(0, 523, 0, 17)
3261
InsWin.ZIndex = 120
3262
InsWin.Font = Enum.Font.Highway
3263
InsWin.Text = "Insta-Win"
3264
InsWin.TextColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3265
InsWin.TextScaled = true
3266
InsWin.TextSize = 14
3267
InsWin.TextWrapped = true
3268
3269
Borders_3.Name = "Borders"
3270
Borders_3.Parent = InsWin
3271
Borders_3.BackgroundColor3 = Color3.new(1, 1, 1)
3272
Borders_3.BackgroundTransparency = 1
3273
Borders_3.BorderSizePixel = 0
3274
Borders_3.Size = UDim2.new(1, 0, 1, 0)
3275
Borders_3.ZIndex = 120
3276
3277
Border_17.Name = "Border"
3278
Border_17.Parent = Borders_3
3279
Border_17.BackgroundColor3 = Color3.new(1, 1, 1)
3280
Border_17.BackgroundTransparency = 1
3281
Border_17.BorderSizePixel = 0
3282
Border_17.Position = UDim2.new(0, -12, 0, -12)
3283
Border_17.Size = UDim2.new(0, 12, 0, 12)
3284
Border_17.ZIndex = 110
3285
Border_17.Image = "http://www.roblox.com/asset/?id=238725003"
3286
Border_17.ImageRectSize = Vector2.new(12, 12)
3287
3288
Border_18.Name = "Border"
3289
Border_18.Parent = Borders_3
3290
Border_18.BackgroundColor3 = Color3.new(1, 1, 1)
3291
Border_18.BackgroundTransparency = 1
3292
Border_18.BorderSizePixel = 0
3293
Border_18.Position = UDim2.new(1, 0, 0, -12)
3294
Border_18.Size = UDim2.new(0, 12, 0, 12)
3295
Border_18.ZIndex = 110
3296
Border_18.Image = "http://www.roblox.com/asset/?id=238725003"
3297
Border_18.ImageRectOffset = Vector2.new(24, 0)
3298
Border_18.ImageRectSize = Vector2.new(12, 12)
3299
3300
Border_19.Name = "Border"
3301
Border_19.Parent = Borders_3
3302
Border_19.BackgroundColor3 = Color3.new(1, 1, 1)
3303
Border_19.BackgroundTransparency = 1
3304
Border_19.BorderSizePixel = 0
3305
Border_19.Position = UDim2.new(0, -12, 1, 0)
3306
Border_19.Size = UDim2.new(0, 12, 0, 12)
3307
Border_19.ZIndex = 110
3308
Border_19.Image = "http://www.roblox.com/asset/?id=238725003"
3309
Border_19.ImageRectOffset = Vector2.new(0, 24)
3310
Border_19.ImageRectSize = Vector2.new(12, 12)
3311
3312
Border_20.Name = "Border"
3313
Border_20.Parent = Borders_3
3314
Border_20.BackgroundColor3 = Color3.new(1, 1, 1)
3315
Border_20.BackgroundTransparency = 1
3316
Border_20.BorderSizePixel = 0
3317
Border_20.Position = UDim2.new(1, 0, 1, 0)
3318
Border_20.Size = UDim2.new(0, 12, 0, 12)
3319
Border_20.ZIndex = 110
3320
Border_20.Image = "http://www.roblox.com/asset/?id=238725003"
3321
Border_20.ImageRectOffset = Vector2.new(24, 24)
3322
Border_20.ImageRectSize = Vector2.new(12, 12)
3323
3324
Border_21.Name = "Border"
3325
Border_21.Parent = Borders_3
3326
Border_21.BackgroundColor3 = Color3.new(1, 1, 1)
3327
Border_21.BackgroundTransparency = 1
3328
Border_21.BorderSizePixel = 0
3329
Border_21.Position = UDim2.new(0, 0, 1, 0)
3330
Border_21.Size = UDim2.new(1, 0, 0, 12)
3331
Border_21.ZIndex = 110
3332
Border_21.Image = "http://www.roblox.com/asset/?id=238725003"
3333
Border_21.ImageRectOffset = Vector2.new(12, 24)
3334
Border_21.ImageRectSize = Vector2.new(12, 12)
3335
3336
Border_22.Name = "Border"
3337
Border_22.Parent = Borders_3
3338
Border_22.BackgroundColor3 = Color3.new(1, 1, 1)
3339
Border_22.BackgroundTransparency = 1
3340
Border_22.BorderSizePixel = 0
3341
Border_22.Position = UDim2.new(0, 0, 0, -12)
3342
Border_22.Size = UDim2.new(1, 0, 0, 12)
3343
Border_22.ZIndex = 110
3344
Border_22.Image = "http://www.roblox.com/asset/?id=238725003"
3345
Border_22.ImageRectOffset = Vector2.new(12, 0)
3346
Border_22.ImageRectSize = Vector2.new(12, 12)
3347
3348
Border_23.Name = "Border"
3349
Border_23.Parent = Borders_3
3350
Border_23.BackgroundColor3 = Color3.new(1, 1, 1)
3351
Border_23.BackgroundTransparency = 1
3352
Border_23.BorderSizePixel = 0
3353
Border_23.Position = UDim2.new(0, -12, 0, 0)
3354
Border_23.Size = UDim2.new(0, 12, 1, 0)
3355
Border_23.ZIndex = 110
3356
Border_23.Image = "http://www.roblox.com/asset/?id=238725003"
3357
Border_23.ImageRectOffset = Vector2.new(0, 12)
3358
Border_23.ImageRectSize = Vector2.new(12, 12)
3359
3360
Border_24.Name = "Border"
3361
Border_24.Parent = Borders_3
3362
Border_24.BackgroundColor3 = Color3.new(1, 1, 1)
3363
Border_24.BackgroundTransparency = 1
3364
Border_24.BorderSizePixel = 0
3365
Border_24.Position = UDim2.new(1, 0, 0, 0)
3366
Border_24.Size = UDim2.new(0, 12, 1, 0)
3367
Border_24.ZIndex = 110
3368
Border_24.Image = "http://www.roblox.com/asset/?id=238725003"
3369
Border_24.ImageRectOffset = Vector2.new(24, 12)
3370
Border_24.ImageRectSize = Vector2.new(12, 12)
3371
3372
ChallengeInfo_2.Name = "ChallengeInfo"
3373
ChallengeInfo_2.Parent = TidepoolFrame
3374
ChallengeInfo_2.BackgroundColor3 = Color3.new(1, 1, 1)
3375
ChallengeInfo_2.BackgroundTransparency = 1
3376
ChallengeInfo_2.BorderSizePixel = 0
3377
ChallengeInfo_2.Position = UDim2.new(0.0076481835, 0, 0, 0)
3378
ChallengeInfo_2.Size = UDim2.new(0.99235183, 0, 0.134920642, 0)
3379
ChallengeInfo_2.ZIndex = 120
3380
ChallengeInfo_2.Font = Enum.Font.Highway
3381
ChallengeInfo_2.Text = "All Tidepool Commands :"
3382
ChallengeInfo_2.TextColor3 = Color3.new(0.784314, 0.784314, 0.784314)
3383
ChallengeInfo_2.TextScaled = true
3384
ChallengeInfo_2.TextSize = 14
3385
ChallengeInfo_2.TextWrapped = true
3386
3387
GetAGripFrame.Name = "GetAGripFrame"
3388
GetAGripFrame.Parent = ChallengesFrame
3389
GetAGripFrame.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3390
GetAGripFrame.Position = UDim2.new(0, 0, 0.238670692, 0)
3391
GetAGripFrame.Size = UDim2.new(1, 0, 0.761329293, 0)
3392
GetAGripFrame.Visible = false
3393
GetAGripFrame.ZIndex = 100
3394
3395
Borders_4.Name = "Borders"
3396
Borders_4.Parent = GetAGripFrame
3397
Borders_4.BackgroundColor3 = Color3.new(1, 1, 1)
3398
Borders_4.BackgroundTransparency = 1
3399
Borders_4.BorderSizePixel = 0
3400
Borders_4.Size = UDim2.new(1, 0, 1, 0)
3401
Borders_4.ZIndex = 120
3402
3403
Border_25.Name = "Border"
3404
Border_25.Parent = Borders_4
3405
Border_25.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3406
Border_25.BackgroundTransparency = 1
3407
Border_25.BorderSizePixel = 0
3408
Border_25.Position = UDim2.new(0, -12, 0, -12)
3409
Border_25.Size = UDim2.new(0, 12, 0, 12)
3410
Border_25.ZIndex = 110
3411
Border_25.Image = "http://www.roblox.com/asset/?id=238725003"
3412
Border_25.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3413
Border_25.ImageRectSize = Vector2.new(12, 12)
3414
3415
Border_26.Name = "Border"
3416
Border_26.Parent = Borders_4
3417
Border_26.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3418
Border_26.BackgroundTransparency = 1
3419
Border_26.BorderSizePixel = 0
3420
Border_26.Position = UDim2.new(1, 0, 0, -12)
3421
Border_26.Size = UDim2.new(0, 12, 0, 12)
3422
Border_26.ZIndex = 110
3423
Border_26.Image = "http://www.roblox.com/asset/?id=238725003"
3424
Border_26.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3425
Border_26.ImageRectOffset = Vector2.new(24, 0)
3426
Border_26.ImageRectSize = Vector2.new(12, 12)
3427
3428
Border_27.Name = "Border"
3429
Border_27.Parent = Borders_4
3430
Border_27.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3431
Border_27.BackgroundTransparency = 1
3432
Border_27.BorderSizePixel = 0
3433
Border_27.Position = UDim2.new(0, -12, 1, 0)
3434
Border_27.Size = UDim2.new(0, 12, 0, 12)
3435
Border_27.ZIndex = 110
3436
Border_27.Image = "http://www.roblox.com/asset/?id=238725003"
3437
Border_27.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3438
Border_27.ImageRectOffset = Vector2.new(0, 24)
3439
Border_27.ImageRectSize = Vector2.new(12, 12)
3440
3441
Border_28.Name = "Border"
3442
Border_28.Parent = Borders_4
3443
Border_28.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3444
Border_28.BackgroundTransparency = 1
3445
Border_28.BorderSizePixel = 0
3446
Border_28.Position = UDim2.new(1, 0, 1, 0)
3447
Border_28.Size = UDim2.new(0, 12, 0, 12)
3448
Border_28.ZIndex = 110
3449
Border_28.Image = "http://www.roblox.com/asset/?id=238725003"
3450
Border_28.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3451
Border_28.ImageRectOffset = Vector2.new(24, 24)
3452
Border_28.ImageRectSize = Vector2.new(12, 12)
3453
3454
Border_29.Name = "Border"
3455
Border_29.Parent = Borders_4
3456
Border_29.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3457
Border_29.BackgroundTransparency = 1
3458
Border_29.BorderSizePixel = 0
3459
Border_29.Position = UDim2.new(0, 0, 1, 0)
3460
Border_29.Size = UDim2.new(1, 0, 0, 12)
3461
Border_29.ZIndex = 110
3462
Border_29.Image = "http://www.roblox.com/asset/?id=238725003"
3463
Border_29.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3464
Border_29.ImageRectOffset = Vector2.new(12, 24)
3465
Border_29.ImageRectSize = Vector2.new(12, 12)
3466
3467
Border_30.Name = "Border"
3468
Border_30.Parent = Borders_4
3469
Border_30.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3470
Border_30.BackgroundTransparency = 1
3471
Border_30.BorderSizePixel = 0
3472
Border_30.Position = UDim2.new(0, 0, 0, -12)
3473
Border_30.Size = UDim2.new(1, 0, 0, 12)
3474
Border_30.ZIndex = 110
3475
Border_30.Image = "http://www.roblox.com/asset/?id=238725003"
3476
Border_30.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3477
Border_30.ImageRectOffset = Vector2.new(12, 0)
3478
Border_30.ImageRectSize = Vector2.new(12, 12)
3479
3480
Border_31.Name = "Border"
3481
Border_31.Parent = Borders_4
3482
Border_31.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3483
Border_31.BackgroundTransparency = 1
3484
Border_31.BorderSizePixel = 0
3485
Border_31.Position = UDim2.new(0, -12, 0, 0)
3486
Border_31.Size = UDim2.new(0, 12, 1, 0)
3487
Border_31.ZIndex = 110
3488
Border_31.Image = "http://www.roblox.com/asset/?id=238725003"
3489
Border_31.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3490
Border_31.ImageRectOffset = Vector2.new(0, 12)
3491
Border_31.ImageRectSize = Vector2.new(12, 12)
3492
3493
Border_32.Name = "Border"
3494
Border_32.Parent = Borders_4
3495
Border_32.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3496
Border_32.BackgroundTransparency = 1
3497
Border_32.BorderSizePixel = 0
3498
Border_32.Position = UDim2.new(1, 0, 0, 0)
3499
Border_32.Size = UDim2.new(0, 12, 1, 0)
3500
Border_32.ZIndex = 110
3501
Border_32.Image = "http://www.roblox.com/asset/?id=238725003"
3502
Border_32.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3503
Border_32.ImageRectOffset = Vector2.new(24, 12)
3504
Border_32.ImageRectSize = Vector2.new(12, 12)
3505
3506
Immunity.Name = "Immunity"
3507
Immunity.Parent = GetAGripFrame
3508
Immunity.BackgroundColor3 = Color3.new(1, 1, 1)
3509
Immunity.BorderSizePixel = 0
3510
Immunity.Position = UDim2.new(0, 0, 0.34375, 0)
3511
Immunity.Size = UDim2.new(0, 523, 0, 17)
3512
Immunity.ZIndex = 120
3513
Immunity.Font = Enum.Font.Highway
3514
Immunity.Text = "Immunity"
3515
Immunity.TextColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3516
Immunity.TextScaled = true
3517
Immunity.TextSize = 14
3518
Immunity.TextWrapped = true
3519
3520
Borders_5.Name = "Borders"
3521
Borders_5.Parent = Immunity
3522
Borders_5.BackgroundColor3 = Color3.new(1, 1, 1)
3523
Borders_5.BackgroundTransparency = 1
3524
Borders_5.BorderSizePixel = 0
3525
Borders_5.Size = UDim2.new(1, 0, 1, 0)
3526
Borders_5.ZIndex = 120
3527
3528
Border_33.Name = "Border"
3529
Border_33.Parent = Borders_5
3530
Border_33.BackgroundColor3 = Color3.new(1, 1, 1)
3531
Border_33.BackgroundTransparency = 1
3532
Border_33.BorderSizePixel = 0
3533
Border_33.Position = UDim2.new(0, -12, 0, -12)
3534
Border_33.Size = UDim2.new(0, 12, 0, 12)
3535
Border_33.ZIndex = 110
3536
Border_33.Image = "http://www.roblox.com/asset/?id=238725003"
3537
Border_33.ImageRectSize = Vector2.new(12, 12)
3538
3539
Border_34.Name = "Border"
3540
Border_34.Parent = Borders_5
3541
Border_34.BackgroundColor3 = Color3.new(1, 1, 1)
3542
Border_34.BackgroundTransparency = 1
3543
Border_34.BorderSizePixel = 0
3544
Border_34.Position = UDim2.new(1, 0, 0, -12)
3545
Border_34.Size = UDim2.new(0, 12, 0, 12)
3546
Border_34.ZIndex = 110
3547
Border_34.Image = "http://www.roblox.com/asset/?id=238725003"
3548
Border_34.ImageRectOffset = Vector2.new(24, 0)
3549
Border_34.ImageRectSize = Vector2.new(12, 12)
3550
3551
Border_35.Name = "Border"
3552
Border_35.Parent = Borders_5
3553
Border_35.BackgroundColor3 = Color3.new(1, 1, 1)
3554
Border_35.BackgroundTransparency = 1
3555
Border_35.BorderSizePixel = 0
3556
Border_35.Position = UDim2.new(0, -12, 1, 0)
3557
Border_35.Size = UDim2.new(0, 12, 0, 12)
3558
Border_35.ZIndex = 110
3559
Border_35.Image = "http://www.roblox.com/asset/?id=238725003"
3560
Border_35.ImageRectOffset = Vector2.new(0, 24)
3561
Border_35.ImageRectSize = Vector2.new(12, 12)
3562
3563
Border_36.Name = "Border"
3564
Border_36.Parent = Borders_5
3565
Border_36.BackgroundColor3 = Color3.new(1, 1, 1)
3566
Border_36.BackgroundTransparency = 1
3567
Border_36.BorderSizePixel = 0
3568
Border_36.Position = UDim2.new(1, 0, 1, 0)
3569
Border_36.Size = UDim2.new(0, 12, 0, 12)
3570
Border_36.ZIndex = 110
3571
Border_36.Image = "http://www.roblox.com/asset/?id=238725003"
3572
Border_36.ImageRectOffset = Vector2.new(24, 24)
3573
Border_36.ImageRectSize = Vector2.new(12, 12)
3574
3575
Border_37.Name = "Border"
3576
Border_37.Parent = Borders_5
3577
Border_37.BackgroundColor3 = Color3.new(1, 1, 1)
3578
Border_37.BackgroundTransparency = 1
3579
Border_37.BorderSizePixel = 0
3580
Border_37.Position = UDim2.new(0, 0, 1, 0)
3581
Border_37.Size = UDim2.new(1, 0, 0, 12)
3582
Border_37.ZIndex = 110
3583
Border_37.Image = "http://www.roblox.com/asset/?id=238725003"
3584
Border_37.ImageRectOffset = Vector2.new(12, 24)
3585
Border_37.ImageRectSize = Vector2.new(12, 12)
3586
3587
Border_38.Name = "Border"
3588
Border_38.Parent = Borders_5
3589
Border_38.BackgroundColor3 = Color3.new(1, 1, 1)
3590
Border_38.BackgroundTransparency = 1
3591
Border_38.BorderSizePixel = 0
3592
Border_38.Position = UDim2.new(0, 0, 0, -12)
3593
Border_38.Size = UDim2.new(1, 0, 0, 12)
3594
Border_38.ZIndex = 110
3595
Border_38.Image = "http://www.roblox.com/asset/?id=238725003"
3596
Border_38.ImageRectOffset = Vector2.new(12, 0)
3597
Border_38.ImageRectSize = Vector2.new(12, 12)
3598
3599
Border_39.Name = "Border"
3600
Border_39.Parent = Borders_5
3601
Border_39.BackgroundColor3 = Color3.new(1, 1, 1)
3602
Border_39.BackgroundTransparency = 1
3603
Border_39.BorderSizePixel = 0
3604
Border_39.Position = UDim2.new(0, -12, 0, 0)
3605
Border_39.Size = UDim2.new(0, 12, 1, 0)
3606
Border_39.ZIndex = 110
3607
Border_39.Image = "http://www.roblox.com/asset/?id=238725003"
3608
Border_39.ImageRectOffset = Vector2.new(0, 12)
3609
Border_39.ImageRectSize = Vector2.new(12, 12)
3610
3611
Border_40.Name = "Border"
3612
Border_40.Parent = Borders_5
3613
Border_40.BackgroundColor3 = Color3.new(1, 1, 1)
3614
Border_40.BackgroundTransparency = 1
3615
Border_40.BorderSizePixel = 0
3616
Border_40.Position = UDim2.new(1, 0, 0, 0)
3617
Border_40.Size = UDim2.new(0, 12, 1, 0)
3618
Border_40.ZIndex = 110
3619
Border_40.Image = "http://www.roblox.com/asset/?id=238725003"
3620
Border_40.ImageRectOffset = Vector2.new(24, 12)
3621
Border_40.ImageRectSize = Vector2.new(12, 12)
3622
3623
ChallengeInfo_3.Name = "ChallengeInfo"
3624
ChallengeInfo_3.Parent = GetAGripFrame
3625
ChallengeInfo_3.BackgroundColor3 = Color3.new(1, 1, 1)
3626
ChallengeInfo_3.BackgroundTransparency = 1
3627
ChallengeInfo_3.BorderSizePixel = 0
3628
ChallengeInfo_3.Position = UDim2.new(0.0076481835, 0, 0, 0)
3629
ChallengeInfo_3.Size = UDim2.new(0.99235183, 0, 0.134920642, 0)
3630
ChallengeInfo_3.ZIndex = 120
3631
ChallengeInfo_3.Font = Enum.Font.Highway
3632
ChallengeInfo_3.Text = "All Get A Grip Commands"
3633
ChallengeInfo_3.TextColor3 = Color3.new(0.784314, 0.784314, 0.784314)
3634
ChallengeInfo_3.TextScaled = true
3635
ChallengeInfo_3.TextSize = 14
3636
ChallengeInfo_3.TextWrapped = true
3637
3638
Playername.Name = "Playername"
3639
Playername.Parent = GetAGripFrame
3640
Playername.BackgroundColor3 = Color3.new(1, 1, 1)
3641
Playername.BorderSizePixel = 0
3642
Playername.Position = UDim2.new(-0.000956022937, 0, 0.598958313, 0)
3643
Playername.Size = UDim2.new(1, 0, 0.0729166642, 0)
3644
Playername.ZIndex = 120
3645
Playername.Font = Enum.Font.Highway
3646
Playername.PlaceholderColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3647
Playername.Text = "Victim Name"
3648
Playername.TextColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3649
Playername.TextScaled = true
3650
Playername.TextSize = 14
3651
Playername.TextWrapped = true
3652
Playername.TextXAlignment = Enum.TextXAlignment.Left
3653
3654
Borders_6.Name = "Borders"
3655
Borders_6.Parent = Playername
3656
Borders_6.BackgroundColor3 = Color3.new(1, 1, 1)
3657
Borders_6.BackgroundTransparency = 1
3658
Borders_6.BorderSizePixel = 0
3659
Borders_6.Size = UDim2.new(1, 0, 1, 0)
3660
Borders_6.ZIndex = 120
3661
3662
Border_41.Name = "Border"
3663
Border_41.Parent = Borders_6
3664
Border_41.BackgroundColor3 = Color3.new(1, 1, 1)
3665
Border_41.BackgroundTransparency = 1
3666
Border_41.BorderSizePixel = 0
3667
Border_41.Position = UDim2.new(0, -12, 0, -12)
3668
Border_41.Size = UDim2.new(0, 12, 0, 12)
3669
Border_41.ZIndex = 110
3670
Border_41.Image = "http://www.roblox.com/asset/?id=238725003"
3671
Border_41.ImageRectSize = Vector2.new(12, 12)
3672
3673
Border_42.Name = "Border"
3674
Border_42.Parent = Borders_6
3675
Border_42.BackgroundColor3 = Color3.new(1, 1, 1)
3676
Border_42.BackgroundTransparency = 1
3677
Border_42.BorderSizePixel = 0
3678
Border_42.Position = UDim2.new(1, 0, 0, -12)
3679
Border_42.Size = UDim2.new(0, 12, 0, 12)
3680
Border_42.ZIndex = 110
3681
Border_42.Image = "http://www.roblox.com/asset/?id=238725003"
3682
Border_42.ImageRectOffset = Vector2.new(24, 0)
3683
Border_42.ImageRectSize = Vector2.new(12, 12)
3684
3685
Border_43.Name = "Border"
3686
Border_43.Parent = Borders_6
3687
Border_43.BackgroundColor3 = Color3.new(1, 1, 1)
3688
Border_43.BackgroundTransparency = 1
3689
Border_43.BorderSizePixel = 0
3690
Border_43.Position = UDim2.new(0, -12, 1, 0)
3691
Border_43.Size = UDim2.new(0, 12, 0, 12)
3692
Border_43.ZIndex = 110
3693
Border_43.Image = "http://www.roblox.com/asset/?id=238725003"
3694
Border_43.ImageRectOffset = Vector2.new(0, 24)
3695
Border_43.ImageRectSize = Vector2.new(12, 12)
3696
3697
Border_44.Name = "Border"
3698
Border_44.Parent = Borders_6
3699
Border_44.BackgroundColor3 = Color3.new(1, 1, 1)
3700
Border_44.BackgroundTransparency = 1
3701
Border_44.BorderSizePixel = 0
3702
Border_44.Position = UDim2.new(1, 0, 1, 0)
3703
Border_44.Size = UDim2.new(0, 12, 0, 12)
3704
Border_44.ZIndex = 110
3705
Border_44.Image = "http://www.roblox.com/asset/?id=238725003"
3706
Border_44.ImageRectOffset = Vector2.new(24, 24)
3707
Border_44.ImageRectSize = Vector2.new(12, 12)
3708
3709
Border_45.Name = "Border"
3710
Border_45.Parent = Borders_6
3711
Border_45.BackgroundColor3 = Color3.new(1, 1, 1)
3712
Border_45.BackgroundTransparency = 1
3713
Border_45.BorderSizePixel = 0
3714
Border_45.Position = UDim2.new(0, 0, 1, 0)
3715
Border_45.Size = UDim2.new(1, 0, 0, 12)
3716
Border_45.ZIndex = 110
3717
Border_45.Image = "http://www.roblox.com/asset/?id=238725003"
3718
Border_45.ImageRectOffset = Vector2.new(12, 24)
3719
Border_45.ImageRectSize = Vector2.new(12, 12)
3720
3721
Border_46.Name = "Border"
3722
Border_46.Parent = Borders_6
3723
Border_46.BackgroundColor3 = Color3.new(1, 1, 1)
3724
Border_46.BackgroundTransparency = 1
3725
Border_46.BorderSizePixel = 0
3726
Border_46.Position = UDim2.new(0, 0, 0, -12)
3727
Border_46.Size = UDim2.new(1, 0, 0, 12)
3728
Border_46.ZIndex = 110
3729
Border_46.Image = "http://www.roblox.com/asset/?id=238725003"
3730
Border_46.ImageRectOffset = Vector2.new(12, 0)
3731
Border_46.ImageRectSize = Vector2.new(12, 12)
3732
3733
Border_47.Name = "Border"
3734
Border_47.Parent = Borders_6
3735
Border_47.BackgroundColor3 = Color3.new(1, 1, 1)
3736
Border_47.BackgroundTransparency = 1
3737
Border_47.BorderSizePixel = 0
3738
Border_47.Position = UDim2.new(0, -12, 0, 0)
3739
Border_47.Size = UDim2.new(0, 12, 1, 0)
3740
Border_47.ZIndex = 110
3741
Border_47.Image = "http://www.roblox.com/asset/?id=238725003"
3742
Border_47.ImageRectOffset = Vector2.new(0, 12)
3743
Border_47.ImageRectSize = Vector2.new(12, 12)
3744
3745
Border_48.Name = "Border"
3746
Border_48.Parent = Borders_6
3747
Border_48.BackgroundColor3 = Color3.new(1, 1, 1)
3748
Border_48.BackgroundTransparency = 1
3749
Border_48.BorderSizePixel = 0
3750
Border_48.Position = UDim2.new(1, 0, 0, 0)
3751
Border_48.Size = UDim2.new(0, 12, 1, 0)
3752
Border_48.ZIndex = 110
3753
Border_48.Image = "http://www.roblox.com/asset/?id=238725003"
3754
Border_48.ImageRectOffset = Vector2.new(24, 12)
3755
Border_48.ImageRectSize = Vector2.new(12, 12)
3756
3757
ForceLose.Name = "ForceLose"
3758
ForceLose.Parent = GetAGripFrame
3759
ForceLose.BackgroundColor3 = Color3.new(1, 1, 1)
3760
ForceLose.BorderSizePixel = 0
3761
ForceLose.Position = UDim2.new(-0.000956022937, 0, 0.838541627, 0)
3762
ForceLose.Size = UDim2.new(0, 523, 0, 17)
3763
ForceLose.ZIndex = 120
3764
ForceLose.Font = Enum.Font.Highway
3765
ForceLose.Text = "Force Lose (Experimental Mode)"
3766
ForceLose.TextColor3 = Color3.new(1, 0.333333, 0)
3767
ForceLose.TextScaled = true
3768
ForceLose.TextSize = 14
3769
ForceLose.TextWrapped = true
3770
3771
Borders_7.Name = "Borders"
3772
Borders_7.Parent = ForceLose
3773
Borders_7.BackgroundColor3 = Color3.new(1, 1, 1)
3774
Borders_7.BackgroundTransparency = 1
3775
Borders_7.BorderSizePixel = 0
3776
Borders_7.Size = UDim2.new(1, 0, 1, 0)
3777
Borders_7.ZIndex = 120
3778
3779
Border_49.Name = "Border"
3780
Border_49.Parent = Borders_7
3781
Border_49.BackgroundColor3 = Color3.new(1, 1, 1)
3782
Border_49.BackgroundTransparency = 1
3783
Border_49.BorderSizePixel = 0
3784
Border_49.Position = UDim2.new(0, -12, 0, -12)
3785
Border_49.Size = UDim2.new(0, 12, 0, 12)
3786
Border_49.ZIndex = 110
3787
Border_49.Image = "http://www.roblox.com/asset/?id=238725003"
3788
Border_49.ImageRectSize = Vector2.new(12, 12)
3789
3790
Border_50.Name = "Border"
3791
Border_50.Parent = Borders_7
3792
Border_50.BackgroundColor3 = Color3.new(1, 1, 1)
3793
Border_50.BackgroundTransparency = 1
3794
Border_50.BorderSizePixel = 0
3795
Border_50.Position = UDim2.new(1, 0, 0, -12)
3796
Border_50.Size = UDim2.new(0, 12, 0, 12)
3797
Border_50.ZIndex = 110
3798
Border_50.Image = "http://www.roblox.com/asset/?id=238725003"
3799
Border_50.ImageRectOffset = Vector2.new(24, 0)
3800
Border_50.ImageRectSize = Vector2.new(12, 12)
3801
3802
Border_51.Name = "Border"
3803
Border_51.Parent = Borders_7
3804
Border_51.BackgroundColor3 = Color3.new(1, 1, 1)
3805
Border_51.BackgroundTransparency = 1
3806
Border_51.BorderSizePixel = 0
3807
Border_51.Position = UDim2.new(0, -12, 1, 0)
3808
Border_51.Size = UDim2.new(0, 12, 0, 12)
3809
Border_51.ZIndex = 110
3810
Border_51.Image = "http://www.roblox.com/asset/?id=238725003"
3811
Border_51.ImageRectOffset = Vector2.new(0, 24)
3812
Border_51.ImageRectSize = Vector2.new(12, 12)
3813
3814
Border_52.Name = "Border"
3815
Border_52.Parent = Borders_7
3816
Border_52.BackgroundColor3 = Color3.new(1, 1, 1)
3817
Border_52.BackgroundTransparency = 1
3818
Border_52.BorderSizePixel = 0
3819
Border_52.Position = UDim2.new(1, 0, 1, 0)
3820
Border_52.Size = UDim2.new(0, 12, 0, 12)
3821
Border_52.ZIndex = 110
3822
Border_52.Image = "http://www.roblox.com/asset/?id=238725003"
3823
Border_52.ImageRectOffset = Vector2.new(24, 24)
3824
Border_52.ImageRectSize = Vector2.new(12, 12)
3825
3826
Border_53.Name = "Border"
3827
Border_53.Parent = Borders_7
3828
Border_53.BackgroundColor3 = Color3.new(1, 1, 1)
3829
Border_53.BackgroundTransparency = 1
3830
Border_53.BorderSizePixel = 0
3831
Border_53.Position = UDim2.new(0, 0, 1, 0)
3832
Border_53.Size = UDim2.new(1, 0, 0, 12)
3833
Border_53.ZIndex = 110
3834
Border_53.Image = "http://www.roblox.com/asset/?id=238725003"
3835
Border_53.ImageRectOffset = Vector2.new(12, 24)
3836
Border_53.ImageRectSize = Vector2.new(12, 12)
3837
3838
Border_54.Name = "Border"
3839
Border_54.Parent = Borders_7
3840
Border_54.BackgroundColor3 = Color3.new(1, 1, 1)
3841
Border_54.BackgroundTransparency = 1
3842
Border_54.BorderSizePixel = 0
3843
Border_54.Position = UDim2.new(0, 0, 0, -12)
3844
Border_54.Size = UDim2.new(1, 0, 0, 12)
3845
Border_54.ZIndex = 110
3846
Border_54.Image = "http://www.roblox.com/asset/?id=238725003"
3847
Border_54.ImageRectOffset = Vector2.new(12, 0)
3848
Border_54.ImageRectSize = Vector2.new(12, 12)
3849
3850
Border_55.Name = "Border"
3851
Border_55.Parent = Borders_7
3852
Border_55.BackgroundColor3 = Color3.new(1, 1, 1)
3853
Border_55.BackgroundTransparency = 1
3854
Border_55.BorderSizePixel = 0
3855
Border_55.Position = UDim2.new(0, -12, 0, 0)
3856
Border_55.Size = UDim2.new(0, 12, 1, 0)
3857
Border_55.ZIndex = 110
3858
Border_55.Image = "http://www.roblox.com/asset/?id=238725003"
3859
Border_55.ImageRectOffset = Vector2.new(0, 12)
3860
Border_55.ImageRectSize = Vector2.new(12, 12)
3861
3862
Border_56.Name = "Border"
3863
Border_56.Parent = Borders_7
3864
Border_56.BackgroundColor3 = Color3.new(1, 1, 1)
3865
Border_56.BackgroundTransparency = 1
3866
Border_56.BorderSizePixel = 0
3867
Border_56.Position = UDim2.new(1, 0, 0, 0)
3868
Border_56.Size = UDim2.new(0, 12, 1, 0)
3869
Border_56.ZIndex = 110
3870
Border_56.Image = "http://www.roblox.com/asset/?id=238725003"
3871
Border_56.ImageRectOffset = Vector2.new(24, 12)
3872
Border_56.ImageRectSize = Vector2.new(12, 12)
3873
3874
CrypticComboFrame.Name = "CrypticComboFrame"
3875
CrypticComboFrame.Parent = ChallengesFrame
3876
CrypticComboFrame.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3877
CrypticComboFrame.Position = UDim2.new(0, 0, 0.238670692, 0)
3878
CrypticComboFrame.Size = UDim2.new(1, 0, 0.761329293, 0)
3879
CrypticComboFrame.Visible = false
3880
CrypticComboFrame.ZIndex = 100
3881
3882
Borders_8.Name = "Borders"
3883
Borders_8.Parent = CrypticComboFrame
3884
Borders_8.BackgroundColor3 = Color3.new(1, 1, 1)
3885
Borders_8.BackgroundTransparency = 1
3886
Borders_8.BorderSizePixel = 0
3887
Borders_8.Size = UDim2.new(1, 0, 1, 0)
3888
Borders_8.ZIndex = 120
3889
3890
Border_57.Name = "Border"
3891
Border_57.Parent = Borders_8
3892
Border_57.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3893
Border_57.BackgroundTransparency = 1
3894
Border_57.BorderSizePixel = 0
3895
Border_57.Position = UDim2.new(0, -12, 0, -12)
3896
Border_57.Size = UDim2.new(0, 12, 0, 12)
3897
Border_57.ZIndex = 110
3898
Border_57.Image = "http://www.roblox.com/asset/?id=238725003"
3899
Border_57.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3900
Border_57.ImageRectSize = Vector2.new(12, 12)
3901
3902
Border_58.Name = "Border"
3903
Border_58.Parent = Borders_8
3904
Border_58.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3905
Border_58.BackgroundTransparency = 1
3906
Border_58.BorderSizePixel = 0
3907
Border_58.Position = UDim2.new(1, 0, 0, -12)
3908
Border_58.Size = UDim2.new(0, 12, 0, 12)
3909
Border_58.ZIndex = 110
3910
Border_58.Image = "http://www.roblox.com/asset/?id=238725003"
3911
Border_58.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3912
Border_58.ImageRectOffset = Vector2.new(24, 0)
3913
Border_58.ImageRectSize = Vector2.new(12, 12)
3914
3915
Border_59.Name = "Border"
3916
Border_59.Parent = Borders_8
3917
Border_59.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3918
Border_59.BackgroundTransparency = 1
3919
Border_59.BorderSizePixel = 0
3920
Border_59.Position = UDim2.new(0, -12, 1, 0)
3921
Border_59.Size = UDim2.new(0, 12, 0, 12)
3922
Border_59.ZIndex = 110
3923
Border_59.Image = "http://www.roblox.com/asset/?id=238725003"
3924
Border_59.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3925
Border_59.ImageRectOffset = Vector2.new(0, 24)
3926
Border_59.ImageRectSize = Vector2.new(12, 12)
3927
3928
Border_60.Name = "Border"
3929
Border_60.Parent = Borders_8
3930
Border_60.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3931
Border_60.BackgroundTransparency = 1
3932
Border_60.BorderSizePixel = 0
3933
Border_60.Position = UDim2.new(1, 0, 1, 0)
3934
Border_60.Size = UDim2.new(0, 12, 0, 12)
3935
Border_60.ZIndex = 110
3936
Border_60.Image = "http://www.roblox.com/asset/?id=238725003"
3937
Border_60.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3938
Border_60.ImageRectOffset = Vector2.new(24, 24)
3939
Border_60.ImageRectSize = Vector2.new(12, 12)
3940
3941
Border_61.Name = "Border"
3942
Border_61.Parent = Borders_8
3943
Border_61.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3944
Border_61.BackgroundTransparency = 1
3945
Border_61.BorderSizePixel = 0
3946
Border_61.Position = UDim2.new(0, 0, 1, 0)
3947
Border_61.Size = UDim2.new(1, 0, 0, 12)
3948
Border_61.ZIndex = 110
3949
Border_61.Image = "http://www.roblox.com/asset/?id=238725003"
3950
Border_61.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3951
Border_61.ImageRectOffset = Vector2.new(12, 24)
3952
Border_61.ImageRectSize = Vector2.new(12, 12)
3953
3954
Border_62.Name = "Border"
3955
Border_62.Parent = Borders_8
3956
Border_62.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3957
Border_62.BackgroundTransparency = 1
3958
Border_62.BorderSizePixel = 0
3959
Border_62.Position = UDim2.new(0, 0, 0, -12)
3960
Border_62.Size = UDim2.new(1, 0, 0, 12)
3961
Border_62.ZIndex = 110
3962
Border_62.Image = "http://www.roblox.com/asset/?id=238725003"
3963
Border_62.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3964
Border_62.ImageRectOffset = Vector2.new(12, 0)
3965
Border_62.ImageRectSize = Vector2.new(12, 12)
3966
3967
Border_63.Name = "Border"
3968
Border_63.Parent = Borders_8
3969
Border_63.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3970
Border_63.BackgroundTransparency = 1
3971
Border_63.BorderSizePixel = 0
3972
Border_63.Position = UDim2.new(0, -12, 0, 0)
3973
Border_63.Size = UDim2.new(0, 12, 1, 0)
3974
Border_63.ZIndex = 110
3975
Border_63.Image = "http://www.roblox.com/asset/?id=238725003"
3976
Border_63.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3977
Border_63.ImageRectOffset = Vector2.new(0, 12)
3978
Border_63.ImageRectSize = Vector2.new(12, 12)
3979
3980
Border_64.Name = "Border"
3981
Border_64.Parent = Borders_8
3982
Border_64.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3983
Border_64.BackgroundTransparency = 1
3984
Border_64.BorderSizePixel = 0
3985
Border_64.Position = UDim2.new(1, 0, 0, 0)
3986
Border_64.Size = UDim2.new(0, 12, 1, 0)
3987
Border_64.ZIndex = 110
3988
Border_64.Image = "http://www.roblox.com/asset/?id=238725003"
3989
Border_64.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
3990
Border_64.ImageRectOffset = Vector2.new(24, 12)
3991
Border_64.ImageRectSize = Vector2.new(12, 12)
3992
3993
ChallengeInfo_4.Name = "ChallengeInfo"
3994
ChallengeInfo_4.Parent = CrypticComboFrame
3995
ChallengeInfo_4.BackgroundColor3 = Color3.new(1, 1, 1)
3996
ChallengeInfo_4.BackgroundTransparency = 1
3997
ChallengeInfo_4.BorderSizePixel = 0
3998
ChallengeInfo_4.Position = UDim2.new(0.0076481835, 0, 0, 0)
3999
ChallengeInfo_4.Size = UDim2.new(0.99235183, 0, 0.134920642, 0)
4000
ChallengeInfo_4.ZIndex = 120
4001
ChallengeInfo_4.Font = Enum.Font.Highway
4002
ChallengeInfo_4.Text = "All Cryptic Combo Commands :"
4003
ChallengeInfo_4.TextColor3 = Color3.new(0.784314, 0.784314, 0.784314)
4004
ChallengeInfo_4.TextScaled = true
4005
ChallengeInfo_4.TextSize = 14
4006
ChallengeInfo_4.TextWrapped = true
4007
4008
BotWin.Name = "BotWin"
4009
BotWin.Parent = CrypticComboFrame
4010
BotWin.BackgroundColor3 = Color3.new(1, 1, 1)
4011
BotWin.BorderSizePixel = 0
4012
BotWin.Position = UDim2.new(0, 0, 0.34375, 0)
4013
BotWin.Size = UDim2.new(0, 523, 0, 17)
4014
BotWin.ZIndex = 120
4015
BotWin.Font = Enum.Font.Highway
4016
BotWin.Text = "Trycode"
4017
BotWin.TextColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4018
BotWin.TextScaled = true
4019
BotWin.TextSize = 14
4020
BotWin.TextWrapped = true
4021
4022
Borders_9.Name = "Borders"
4023
Borders_9.Parent = BotWin
4024
Borders_9.BackgroundColor3 = Color3.new(1, 1, 1)
4025
Borders_9.BackgroundTransparency = 1
4026
Borders_9.BorderSizePixel = 0
4027
Borders_9.Size = UDim2.new(1, 0, 1, 0)
4028
Borders_9.ZIndex = 120
4029
4030
Border_65.Name = "Border"
4031
Border_65.Parent = Borders_9
4032
Border_65.BackgroundColor3 = Color3.new(1, 1, 1)
4033
Border_65.BackgroundTransparency = 1
4034
Border_65.BorderSizePixel = 0
4035
Border_65.Position = UDim2.new(0, -12, 0, -12)
4036
Border_65.Size = UDim2.new(0, 12, 0, 12)
4037
Border_65.ZIndex = 110
4038
Border_65.Image = "http://www.roblox.com/asset/?id=238725003"
4039
Border_65.ImageRectSize = Vector2.new(12, 12)
4040
4041
Border_66.Name = "Border"
4042
Border_66.Parent = Borders_9
4043
Border_66.BackgroundColor3 = Color3.new(1, 1, 1)
4044
Border_66.BackgroundTransparency = 1
4045
Border_66.BorderSizePixel = 0
4046
Border_66.Position = UDim2.new(1, 0, 0, -12)
4047
Border_66.Size = UDim2.new(0, 12, 0, 12)
4048
Border_66.ZIndex = 110
4049
Border_66.Image = "http://www.roblox.com/asset/?id=238725003"
4050
Border_66.ImageRectOffset = Vector2.new(24, 0)
4051
Border_66.ImageRectSize = Vector2.new(12, 12)
4052
4053
Border_67.Name = "Border"
4054
Border_67.Parent = Borders_9
4055
Border_67.BackgroundColor3 = Color3.new(1, 1, 1)
4056
Border_67.BackgroundTransparency = 1
4057
Border_67.BorderSizePixel = 0
4058
Border_67.Position = UDim2.new(0, -12, 1, 0)
4059
Border_67.Size = UDim2.new(0, 12, 0, 12)
4060
Border_67.ZIndex = 110
4061
Border_67.Image = "http://www.roblox.com/asset/?id=238725003"
4062
Border_67.ImageRectOffset = Vector2.new(0, 24)
4063
Border_67.ImageRectSize = Vector2.new(12, 12)
4064
4065
Border_68.Name = "Border"
4066
Border_68.Parent = Borders_9
4067
Border_68.BackgroundColor3 = Color3.new(1, 1, 1)
4068
Border_68.BackgroundTransparency = 1
4069
Border_68.BorderSizePixel = 0
4070
Border_68.Position = UDim2.new(1, 0, 1, 0)
4071
Border_68.Size = UDim2.new(0, 12, 0, 12)
4072
Border_68.ZIndex = 110
4073
Border_68.Image = "http://www.roblox.com/asset/?id=238725003"
4074
Border_68.ImageRectOffset = Vector2.new(24, 24)
4075
Border_68.ImageRectSize = Vector2.new(12, 12)
4076
4077
Border_69.Name = "Border"
4078
Border_69.Parent = Borders_9
4079
Border_69.BackgroundColor3 = Color3.new(1, 1, 1)
4080
Border_69.BackgroundTransparency = 1
4081
Border_69.BorderSizePixel = 0
4082
Border_69.Position = UDim2.new(0, 0, 1, 0)
4083
Border_69.Size = UDim2.new(1, 0, 0, 12)
4084
Border_69.ZIndex = 110
4085
Border_69.Image = "http://www.roblox.com/asset/?id=238725003"
4086
Border_69.ImageRectOffset = Vector2.new(12, 24)
4087
Border_69.ImageRectSize = Vector2.new(12, 12)
4088
4089
Border_70.Name = "Border"
4090
Border_70.Parent = Borders_9
4091
Border_70.BackgroundColor3 = Color3.new(1, 1, 1)
4092
Border_70.BackgroundTransparency = 1
4093
Border_70.BorderSizePixel = 0
4094
Border_70.Position = UDim2.new(0, 0, 0, -12)
4095
Border_70.Size = UDim2.new(1, 0, 0, 12)
4096
Border_70.ZIndex = 110
4097
Border_70.Image = "http://www.roblox.com/asset/?id=238725003"
4098
Border_70.ImageRectOffset = Vector2.new(12, 0)
4099
Border_70.ImageRectSize = Vector2.new(12, 12)
4100
4101
Border_71.Name = "Border"
4102
Border_71.Parent = Borders_9
4103
Border_71.BackgroundColor3 = Color3.new(1, 1, 1)
4104
Border_71.BackgroundTransparency = 1
4105
Border_71.BorderSizePixel = 0
4106
Border_71.Position = UDim2.new(0, -12, 0, 0)
4107
Border_71.Size = UDim2.new(0, 12, 1, 0)
4108
Border_71.ZIndex = 110
4109
Border_71.Image = "http://www.roblox.com/asset/?id=238725003"
4110
Border_71.ImageRectOffset = Vector2.new(0, 12)
4111
Border_71.ImageRectSize = Vector2.new(12, 12)
4112
4113
Border_72.Name = "Border"
4114
Border_72.Parent = Borders_9
4115
Border_72.BackgroundColor3 = Color3.new(1, 1, 1)
4116
Border_72.BackgroundTransparency = 1
4117
Border_72.BorderSizePixel = 0
4118
Border_72.Position = UDim2.new(1, 0, 0, 0)
4119
Border_72.Size = UDim2.new(0, 12, 1, 0)
4120
Border_72.ZIndex = 110
4121
Border_72.Image = "http://www.roblox.com/asset/?id=238725003"
4122
Border_72.ImageRectOffset = Vector2.new(24, 12)
4123
Border_72.ImageRectSize = Vector2.new(12, 12)
4124
4125
BywayBustleFrame.Name = "BywayBustleFrame"
4126
BywayBustleFrame.Parent = ChallengesFrame
4127
BywayBustleFrame.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4128
BywayBustleFrame.Position = UDim2.new(0, 0, 0.238670692, 0)
4129
BywayBustleFrame.Size = UDim2.new(1, 0, 0.761329293, 0)
4130
BywayBustleFrame.Visible = false
4131
BywayBustleFrame.ZIndex = 100
4132
4133
Borders_10.Name = "Borders"
4134
Borders_10.Parent = BywayBustleFrame
4135
Borders_10.BackgroundColor3 = Color3.new(1, 1, 1)
4136
Borders_10.BackgroundTransparency = 1
4137
Borders_10.BorderSizePixel = 0
4138
Borders_10.Size = UDim2.new(1, 0, 1, 0)
4139
Borders_10.ZIndex = 120
4140
4141
Border_73.Name = "Border"
4142
Border_73.Parent = Borders_10
4143
Border_73.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4144
Border_73.BackgroundTransparency = 1
4145
Border_73.BorderSizePixel = 0
4146
Border_73.Position = UDim2.new(0, -12, 0, -12)
4147
Border_73.Size = UDim2.new(0, 12, 0, 12)
4148
Border_73.ZIndex = 110
4149
Border_73.Image = "http://www.roblox.com/asset/?id=238725003"
4150
Border_73.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4151
Border_73.ImageRectSize = Vector2.new(12, 12)
4152
4153
Border_74.Name = "Border"
4154
Border_74.Parent = Borders_10
4155
Border_74.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4156
Border_74.BackgroundTransparency = 1
4157
Border_74.BorderSizePixel = 0
4158
Border_74.Position = UDim2.new(1, 0, 0, -12)
4159
Border_74.Size = UDim2.new(0, 12, 0, 12)
4160
Border_74.ZIndex = 110
4161
Border_74.Image = "http://www.roblox.com/asset/?id=238725003"
4162
Border_74.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4163
Border_74.ImageRectOffset = Vector2.new(24, 0)
4164
Border_74.ImageRectSize = Vector2.new(12, 12)
4165
4166
Border_75.Name = "Border"
4167
Border_75.Parent = Borders_10
4168
Border_75.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4169
Border_75.BackgroundTransparency = 1
4170
Border_75.BorderSizePixel = 0
4171
Border_75.Position = UDim2.new(0, -12, 1, 0)
4172
Border_75.Size = UDim2.new(0, 12, 0, 12)
4173
Border_75.ZIndex = 110
4174
Border_75.Image = "http://www.roblox.com/asset/?id=238725003"
4175
Border_75.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4176
Border_75.ImageRectOffset = Vector2.new(0, 24)
4177
Border_75.ImageRectSize = Vector2.new(12, 12)
4178
4179
Border_76.Name = "Border"
4180
Border_76.Parent = Borders_10
4181
Border_76.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4182
Border_76.BackgroundTransparency = 1
4183
Border_76.BorderSizePixel = 0
4184
Border_76.Position = UDim2.new(1, 0, 1, 0)
4185
Border_76.Size = UDim2.new(0, 12, 0, 12)
4186
Border_76.ZIndex = 110
4187
Border_76.Image = "http://www.roblox.com/asset/?id=238725003"
4188
Border_76.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4189
Border_76.ImageRectOffset = Vector2.new(24, 24)
4190
Border_76.ImageRectSize = Vector2.new(12, 12)
4191
4192
Border_77.Name = "Border"
4193
Border_77.Parent = Borders_10
4194
Border_77.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4195
Border_77.BackgroundTransparency = 1
4196
Border_77.BorderSizePixel = 0
4197
Border_77.Position = UDim2.new(0, 0, 1, 0)
4198
Border_77.Size = UDim2.new(1, 0, 0, 12)
4199
Border_77.ZIndex = 110
4200
Border_77.Image = "http://www.roblox.com/asset/?id=238725003"
4201
Border_77.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4202
Border_77.ImageRectOffset = Vector2.new(12, 24)
4203
Border_77.ImageRectSize = Vector2.new(12, 12)
4204
4205
Border_78.Name = "Border"
4206
Border_78.Parent = Borders_10
4207
Border_78.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4208
Border_78.BackgroundTransparency = 1
4209
Border_78.BorderSizePixel = 0
4210
Border_78.Position = UDim2.new(0, 0, 0, -12)
4211
Border_78.Size = UDim2.new(1, 0, 0, 12)
4212
Border_78.ZIndex = 110
4213
Border_78.Image = "http://www.roblox.com/asset/?id=238725003"
4214
Border_78.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4215
Border_78.ImageRectOffset = Vector2.new(12, 0)
4216
Border_78.ImageRectSize = Vector2.new(12, 12)
4217
4218
Border_79.Name = "Border"
4219
Border_79.Parent = Borders_10
4220
Border_79.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4221
Border_79.BackgroundTransparency = 1
4222
Border_79.BorderSizePixel = 0
4223
Border_79.Position = UDim2.new(0, -12, 0, 0)
4224
Border_79.Size = UDim2.new(0, 12, 1, 0)
4225
Border_79.ZIndex = 110
4226
Border_79.Image = "http://www.roblox.com/asset/?id=238725003"
4227
Border_79.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4228
Border_79.ImageRectOffset = Vector2.new(0, 12)
4229
Border_79.ImageRectSize = Vector2.new(12, 12)
4230
4231
Border_80.Name = "Border"
4232
Border_80.Parent = Borders_10
4233
Border_80.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4234
Border_80.BackgroundTransparency = 1
4235
Border_80.BorderSizePixel = 0
4236
Border_80.Position = UDim2.new(1, 0, 0, 0)
4237
Border_80.Size = UDim2.new(0, 12, 1, 0)
4238
Border_80.ZIndex = 110
4239
Border_80.Image = "http://www.roblox.com/asset/?id=238725003"
4240
Border_80.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4241
Border_80.ImageRectOffset = Vector2.new(24, 12)
4242
Border_80.ImageRectSize = Vector2.new(12, 12)
4243
4244
BotWin_2.Name = "BotWin"
4245
BotWin_2.Parent = BywayBustleFrame
4246
BotWin_2.BackgroundColor3 = Color3.new(1, 1, 1)
4247
BotWin_2.BorderSizePixel = 0
4248
BotWin_2.Position = UDim2.new(0, 0, 0.34375, 0)
4249
BotWin_2.Size = UDim2.new(0, 523, 0, 17)
4250
BotWin_2.ZIndex = 120
4251
BotWin_2.Font = Enum.Font.Highway
4252
BotWin_2.Text = "Bot Win"
4253
BotWin_2.TextColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4254
BotWin_2.TextScaled = true
4255
BotWin_2.TextSize = 14
4256
BotWin_2.TextWrapped = true
4257
4258
Borders_11.Name = "Borders"
4259
Borders_11.Parent = BotWin_2
4260
Borders_11.BackgroundColor3 = Color3.new(1, 1, 1)
4261
Borders_11.BackgroundTransparency = 1
4262
Borders_11.BorderSizePixel = 0
4263
Borders_11.Size = UDim2.new(1, 0, 1, 0)
4264
Borders_11.ZIndex = 120
4265
4266
Border_81.Name = "Border"
4267
Border_81.Parent = Borders_11
4268
Border_81.BackgroundColor3 = Color3.new(1, 1, 1)
4269
Border_81.BackgroundTransparency = 1
4270
Border_81.BorderSizePixel = 0
4271
Border_81.Position = UDim2.new(0, -12, 0, -12)
4272
Border_81.Size = UDim2.new(0, 12, 0, 12)
4273
Border_81.ZIndex = 110
4274
Border_81.Image = "http://www.roblox.com/asset/?id=238725003"
4275
Border_81.ImageRectSize = Vector2.new(12, 12)
4276
4277
Border_82.Name = "Border"
4278
Border_82.Parent = Borders_11
4279
Border_82.BackgroundColor3 = Color3.new(1, 1, 1)
4280
Border_82.BackgroundTransparency = 1
4281
Border_82.BorderSizePixel = 0
4282
Border_82.Position = UDim2.new(1, 0, 0, -12)
4283
Border_82.Size = UDim2.new(0, 12, 0, 12)
4284
Border_82.ZIndex = 110
4285
Border_82.Image = "http://www.roblox.com/asset/?id=238725003"
4286
Border_82.ImageRectOffset = Vector2.new(24, 0)
4287
Border_82.ImageRectSize = Vector2.new(12, 12)
4288
4289
Border_83.Name = "Border"
4290
Border_83.Parent = Borders_11
4291
Border_83.BackgroundColor3 = Color3.new(1, 1, 1)
4292
Border_83.BackgroundTransparency = 1
4293
Border_83.BorderSizePixel = 0
4294
Border_83.Position = UDim2.new(0, -12, 1, 0)
4295
Border_83.Size = UDim2.new(0, 12, 0, 12)
4296
Border_83.ZIndex = 110
4297
Border_83.Image = "http://www.roblox.com/asset/?id=238725003"
4298
Border_83.ImageRectOffset = Vector2.new(0, 24)
4299
Border_83.ImageRectSize = Vector2.new(12, 12)
4300
4301
Border_84.Name = "Border"
4302
Border_84.Parent = Borders_11
4303
Border_84.BackgroundColor3 = Color3.new(1, 1, 1)
4304
Border_84.BackgroundTransparency = 1
4305
Border_84.BorderSizePixel = 0
4306
Border_84.Position = UDim2.new(1, 0, 1, 0)
4307
Border_84.Size = UDim2.new(0, 12, 0, 12)
4308
Border_84.ZIndex = 110
4309
Border_84.Image = "http://www.roblox.com/asset/?id=238725003"
4310
Border_84.ImageRectOffset = Vector2.new(24, 24)
4311
Border_84.ImageRectSize = Vector2.new(12, 12)
4312
4313
Border_85.Name = "Border"
4314
Border_85.Parent = Borders_11
4315
Border_85.BackgroundColor3 = Color3.new(1, 1, 1)
4316
Border_85.BackgroundTransparency = 1
4317
Border_85.BorderSizePixel = 0
4318
Border_85.Position = UDim2.new(0, 0, 1, 0)
4319
Border_85.Size = UDim2.new(1, 0, 0, 12)
4320
Border_85.ZIndex = 110
4321
Border_85.Image = "http://www.roblox.com/asset/?id=238725003"
4322
Border_85.ImageRectOffset = Vector2.new(12, 24)
4323
Border_85.ImageRectSize = Vector2.new(12, 12)
4324
4325
Border_86.Name = "Border"
4326
Border_86.Parent = Borders_11
4327
Border_86.BackgroundColor3 = Color3.new(1, 1, 1)
4328
Border_86.BackgroundTransparency = 1
4329
Border_86.BorderSizePixel = 0
4330
Border_86.Position = UDim2.new(0, 0, 0, -12)
4331
Border_86.Size = UDim2.new(1, 0, 0, 12)
4332
Border_86.ZIndex = 110
4333
Border_86.Image = "http://www.roblox.com/asset/?id=238725003"
4334
Border_86.ImageRectOffset = Vector2.new(12, 0)
4335
Border_86.ImageRectSize = Vector2.new(12, 12)
4336
4337
Border_87.Name = "Border"
4338
Border_87.Parent = Borders_11
4339
Border_87.BackgroundColor3 = Color3.new(1, 1, 1)
4340
Border_87.BackgroundTransparency = 1
4341
Border_87.BorderSizePixel = 0
4342
Border_87.Position = UDim2.new(0, -12, 0, 0)
4343
Border_87.Size = UDim2.new(0, 12, 1, 0)
4344
Border_87.ZIndex = 110
4345
Border_87.Image = "http://www.roblox.com/asset/?id=238725003"
4346
Border_87.ImageRectOffset = Vector2.new(0, 12)
4347
Border_87.ImageRectSize = Vector2.new(12, 12)
4348
4349
Border_88.Name = "Border"
4350
Border_88.Parent = Borders_11
4351
Border_88.BackgroundColor3 = Color3.new(1, 1, 1)
4352
Border_88.BackgroundTransparency = 1
4353
Border_88.BorderSizePixel = 0
4354
Border_88.Position = UDim2.new(1, 0, 0, 0)
4355
Border_88.Size = UDim2.new(0, 12, 1, 0)
4356
Border_88.ZIndex = 110
4357
Border_88.Image = "http://www.roblox.com/asset/?id=238725003"
4358
Border_88.ImageRectOffset = Vector2.new(24, 12)
4359
Border_88.ImageRectSize = Vector2.new(12, 12)
4360
4361
ChallengeInfo_5.Name = "ChallengeInfo"
4362
ChallengeInfo_5.Parent = BywayBustleFrame
4363
ChallengeInfo_5.BackgroundColor3 = Color3.new(1, 1, 1)
4364
ChallengeInfo_5.BackgroundTransparency = 1
4365
ChallengeInfo_5.BorderSizePixel = 0
4366
ChallengeInfo_5.Position = UDim2.new(0.0076481835, 0, 0, 0)
4367
ChallengeInfo_5.Size = UDim2.new(0.99235183, 0, 0.134920642, 0)
4368
ChallengeInfo_5.ZIndex = 120
4369
ChallengeInfo_5.Font = Enum.Font.Highway
4370
ChallengeInfo_5.Text = "All Byway Bustle Commands :"
4371
ChallengeInfo_5.TextColor3 = Color3.new(0.784314, 0.784314, 0.784314)
4372
ChallengeInfo_5.TextScaled = true
4373
ChallengeInfo_5.TextSize = 14
4374
ChallengeInfo_5.TextWrapped = true
4375
4376
KeysToVictoryFrame.Name = "KeysToVictoryFrame"
4377
KeysToVictoryFrame.Parent = ChallengesFrame
4378
KeysToVictoryFrame.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4379
KeysToVictoryFrame.Position = UDim2.new(0, 0, 0.238670692, 0)
4380
KeysToVictoryFrame.Size = UDim2.new(1, 0, 0.761329293, 0)
4381
KeysToVictoryFrame.Visible = false
4382
KeysToVictoryFrame.ZIndex = 100
4383
4384
Borders_12.Name = "Borders"
4385
Borders_12.Parent = KeysToVictoryFrame
4386
Borders_12.BackgroundColor3 = Color3.new(1, 1, 1)
4387
Borders_12.BackgroundTransparency = 1
4388
Borders_12.BorderSizePixel = 0
4389
Borders_12.Size = UDim2.new(1, 0, 1, 0)
4390
Borders_12.ZIndex = 120
4391
4392
Border_89.Name = "Border"
4393
Border_89.Parent = Borders_12
4394
Border_89.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4395
Border_89.BackgroundTransparency = 1
4396
Border_89.BorderSizePixel = 0
4397
Border_89.Position = UDim2.new(0, -12, 0, -12)
4398
Border_89.Size = UDim2.new(0, 12, 0, 12)
4399
Border_89.ZIndex = 110
4400
Border_89.Image = "http://www.roblox.com/asset/?id=238725003"
4401
Border_89.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4402
Border_89.ImageRectSize = Vector2.new(12, 12)
4403
4404
Border_90.Name = "Border"
4405
Border_90.Parent = Borders_12
4406
Border_90.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4407
Border_90.BackgroundTransparency = 1
4408
Border_90.BorderSizePixel = 0
4409
Border_90.Position = UDim2.new(1, 0, 0, -12)
4410
Border_90.Size = UDim2.new(0, 12, 0, 12)
4411
Border_90.ZIndex = 110
4412
Border_90.Image = "http://www.roblox.com/asset/?id=238725003"
4413
Border_90.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4414
Border_90.ImageRectOffset = Vector2.new(24, 0)
4415
Border_90.ImageRectSize = Vector2.new(12, 12)
4416
4417
Border_91.Name = "Border"
4418
Border_91.Parent = Borders_12
4419
Border_91.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4420
Border_91.BackgroundTransparency = 1
4421
Border_91.BorderSizePixel = 0
4422
Border_91.Position = UDim2.new(0, -12, 1, 0)
4423
Border_91.Size = UDim2.new(0, 12, 0, 12)
4424
Border_91.ZIndex = 110
4425
Border_91.Image = "http://www.roblox.com/asset/?id=238725003"
4426
Border_91.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4427
Border_91.ImageRectOffset = Vector2.new(0, 24)
4428
Border_91.ImageRectSize = Vector2.new(12, 12)
4429
4430
Border_92.Name = "Border"
4431
Border_92.Parent = Borders_12
4432
Border_92.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4433
Border_92.BackgroundTransparency = 1
4434
Border_92.BorderSizePixel = 0
4435
Border_92.Position = UDim2.new(1, 0, 1, 0)
4436
Border_92.Size = UDim2.new(0, 12, 0, 12)
4437
Border_92.ZIndex = 110
4438
Border_92.Image = "http://www.roblox.com/asset/?id=238725003"
4439
Border_92.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4440
Border_92.ImageRectOffset = Vector2.new(24, 24)
4441
Border_92.ImageRectSize = Vector2.new(12, 12)
4442
4443
Border_93.Name = "Border"
4444
Border_93.Parent = Borders_12
4445
Border_93.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4446
Border_93.BackgroundTransparency = 1
4447
Border_93.BorderSizePixel = 0
4448
Border_93.Position = UDim2.new(0, 0, 1, 0)
4449
Border_93.Size = UDim2.new(1, 0, 0, 12)
4450
Border_93.ZIndex = 110
4451
Border_93.Image = "http://www.roblox.com/asset/?id=238725003"
4452
Border_93.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4453
Border_93.ImageRectOffset = Vector2.new(12, 24)
4454
Border_93.ImageRectSize = Vector2.new(12, 12)
4455
4456
Border_94.Name = "Border"
4457
Border_94.Parent = Borders_12
4458
Border_94.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4459
Border_94.BackgroundTransparency = 1
4460
Border_94.BorderSizePixel = 0
4461
Border_94.Position = UDim2.new(0, 0, 0, -12)
4462
Border_94.Size = UDim2.new(1, 0, 0, 12)
4463
Border_94.ZIndex = 110
4464
Border_94.Image = "http://www.roblox.com/asset/?id=238725003"
4465
Border_94.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4466
Border_94.ImageRectOffset = Vector2.new(12, 0)
4467
Border_94.ImageRectSize = Vector2.new(12, 12)
4468
4469
Border_95.Name = "Border"
4470
Border_95.Parent = Borders_12
4471
Border_95.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4472
Border_95.BackgroundTransparency = 1
4473
Border_95.BorderSizePixel = 0
4474
Border_95.Position = UDim2.new(0, -12, 0, 0)
4475
Border_95.Size = UDim2.new(0, 12, 1, 0)
4476
Border_95.ZIndex = 110
4477
Border_95.Image = "http://www.roblox.com/asset/?id=238725003"
4478
Border_95.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4479
Border_95.ImageRectOffset = Vector2.new(0, 12)
4480
Border_95.ImageRectSize = Vector2.new(12, 12)
4481
4482
Border_96.Name = "Border"
4483
Border_96.Parent = Borders_12
4484
Border_96.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4485
Border_96.BackgroundTransparency = 1
4486
Border_96.BorderSizePixel = 0
4487
Border_96.Position = UDim2.new(1, 0, 0, 0)
4488
Border_96.Size = UDim2.new(0, 12, 1, 0)
4489
Border_96.ZIndex = 110
4490
Border_96.Image = "http://www.roblox.com/asset/?id=238725003"
4491
Border_96.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4492
Border_96.ImageRectOffset = Vector2.new(24, 12)
4493
Border_96.ImageRectSize = Vector2.new(12, 12)
4494
4495
ChallengeInfo_6.Name = "ChallengeInfo"
4496
ChallengeInfo_6.Parent = KeysToVictoryFrame
4497
ChallengeInfo_6.BackgroundColor3 = Color3.new(1, 1, 1)
4498
ChallengeInfo_6.BackgroundTransparency = 1
4499
ChallengeInfo_6.BorderSizePixel = 0
4500
ChallengeInfo_6.Position = UDim2.new(0.0076481835, 0, 0, 0)
4501
ChallengeInfo_6.Size = UDim2.new(0.99235183, 0, 0.134920642, 0)
4502
ChallengeInfo_6.ZIndex = 120
4503
ChallengeInfo_6.Font = Enum.Font.Highway
4504
ChallengeInfo_6.Text = "All Keys To Victory Commands :"
4505
ChallengeInfo_6.TextColor3 = Color3.new(0.784314, 0.784314, 0.784314)
4506
ChallengeInfo_6.TextScaled = true
4507
ChallengeInfo_6.TextSize = 14
4508
ChallengeInfo_6.TextWrapped = true
4509
4510
BotWin_3.Name = "BotWin"
4511
BotWin_3.Parent = KeysToVictoryFrame
4512
BotWin_3.BackgroundColor3 = Color3.new(1, 1, 1)
4513
BotWin_3.BorderSizePixel = 0
4514
BotWin_3.Position = UDim2.new(0, 0, 0.34375, 0)
4515
BotWin_3.Size = UDim2.new(0, 523, 0, 17)
4516
BotWin_3.ZIndex = 120
4517
BotWin_3.Font = Enum.Font.Highway
4518
BotWin_3.Text = "Insta Win"
4519
BotWin_3.TextColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4520
BotWin_3.TextScaled = true
4521
BotWin_3.TextSize = 14
4522
BotWin_3.TextWrapped = true
4523
4524
Borders_13.Name = "Borders"
4525
Borders_13.Parent = BotWin_3
4526
Borders_13.BackgroundColor3 = Color3.new(1, 1, 1)
4527
Borders_13.BackgroundTransparency = 1
4528
Borders_13.BorderSizePixel = 0
4529
Borders_13.Size = UDim2.new(1, 0, 1, 0)
4530
Borders_13.ZIndex = 120
4531
4532
Border_97.Name = "Border"
4533
Border_97.Parent = Borders_13
4534
Border_97.BackgroundColor3 = Color3.new(1, 1, 1)
4535
Border_97.BackgroundTransparency = 1
4536
Border_97.BorderSizePixel = 0
4537
Border_97.Position = UDim2.new(0, -12, 0, -12)
4538
Border_97.Size = UDim2.new(0, 12, 0, 12)
4539
Border_97.ZIndex = 110
4540
Border_97.Image = "http://www.roblox.com/asset/?id=238725003"
4541
Border_97.ImageRectSize = Vector2.new(12, 12)
4542
4543
Border_98.Name = "Border"
4544
Border_98.Parent = Borders_13
4545
Border_98.BackgroundColor3 = Color3.new(1, 1, 1)
4546
Border_98.BackgroundTransparency = 1
4547
Border_98.BorderSizePixel = 0
4548
Border_98.Position = UDim2.new(1, 0, 0, -12)
4549
Border_98.Size = UDim2.new(0, 12, 0, 12)
4550
Border_98.ZIndex = 110
4551
Border_98.Image = "http://www.roblox.com/asset/?id=238725003"
4552
Border_98.ImageRectOffset = Vector2.new(24, 0)
4553
Border_98.ImageRectSize = Vector2.new(12, 12)
4554
4555
Border_99.Name = "Border"
4556
Border_99.Parent = Borders_13
4557
Border_99.BackgroundColor3 = Color3.new(1, 1, 1)
4558
Border_99.BackgroundTransparency = 1
4559
Border_99.BorderSizePixel = 0
4560
Border_99.Position = UDim2.new(0, -12, 1, 0)
4561
Border_99.Size = UDim2.new(0, 12, 0, 12)
4562
Border_99.ZIndex = 110
4563
Border_99.Image = "http://www.roblox.com/asset/?id=238725003"
4564
Border_99.ImageRectOffset = Vector2.new(0, 24)
4565
Border_99.ImageRectSize = Vector2.new(12, 12)
4566
4567
Border_100.Name = "Border"
4568
Border_100.Parent = Borders_13
4569
Border_100.BackgroundColor3 = Color3.new(1, 1, 1)
4570
Border_100.BackgroundTransparency = 1
4571
Border_100.BorderSizePixel = 0
4572
Border_100.Position = UDim2.new(1, 0, 1, 0)
4573
Border_100.Size = UDim2.new(0, 12, 0, 12)
4574
Border_100.ZIndex = 110
4575
Border_100.Image = "http://www.roblox.com/asset/?id=238725003"
4576
Border_100.ImageRectOffset = Vector2.new(24, 24)
4577
Border_100.ImageRectSize = Vector2.new(12, 12)
4578
4579
Border_101.Name = "Border"
4580
Border_101.Parent = Borders_13
4581
Border_101.BackgroundColor3 = Color3.new(1, 1, 1)
4582
Border_101.BackgroundTransparency = 1
4583
Border_101.BorderSizePixel = 0
4584
Border_101.Position = UDim2.new(0, 0, 1, 0)
4585
Border_101.Size = UDim2.new(1, 0, 0, 12)
4586
Border_101.ZIndex = 110
4587
Border_101.Image = "http://www.roblox.com/asset/?id=238725003"
4588
Border_101.ImageRectOffset = Vector2.new(12, 24)
4589
Border_101.ImageRectSize = Vector2.new(12, 12)
4590
4591
Border_102.Name = "Border"
4592
Border_102.Parent = Borders_13
4593
Border_102.BackgroundColor3 = Color3.new(1, 1, 1)
4594
Border_102.BackgroundTransparency = 1
4595
Border_102.BorderSizePixel = 0
4596
Border_102.Position = UDim2.new(0, 0, 0, -12)
4597
Border_102.Size = UDim2.new(1, 0, 0, 12)
4598
Border_102.ZIndex = 110
4599
Border_102.Image = "http://www.roblox.com/asset/?id=238725003"
4600
Border_102.ImageRectOffset = Vector2.new(12, 0)
4601
Border_102.ImageRectSize = Vector2.new(12, 12)
4602
4603
Border_103.Name = "Border"
4604
Border_103.Parent = Borders_13
4605
Border_103.BackgroundColor3 = Color3.new(1, 1, 1)
4606
Border_103.BackgroundTransparency = 1
4607
Border_103.BorderSizePixel = 0
4608
Border_103.Position = UDim2.new(0, -12, 0, 0)
4609
Border_103.Size = UDim2.new(0, 12, 1, 0)
4610
Border_103.ZIndex = 110
4611
Border_103.Image = "http://www.roblox.com/asset/?id=238725003"
4612
Border_103.ImageRectOffset = Vector2.new(0, 12)
4613
Border_103.ImageRectSize = Vector2.new(12, 12)
4614
4615
Border_104.Name = "Border"
4616
Border_104.Parent = Borders_13
4617
Border_104.BackgroundColor3 = Color3.new(1, 1, 1)
4618
Border_104.BackgroundTransparency = 1
4619
Border_104.BorderSizePixel = 0
4620
Border_104.Position = UDim2.new(1, 0, 0, 0)
4621
Border_104.Size = UDim2.new(0, 12, 1, 0)
4622
Border_104.ZIndex = 110
4623
Border_104.Image = "http://www.roblox.com/asset/?id=238725003"
4624
Border_104.ImageRectOffset = Vector2.new(24, 12)
4625
Border_104.ImageRectSize = Vector2.new(12, 12)
4626
4627
DiveDwellingFrame.Name = "DiveDwellingFrame"
4628
DiveDwellingFrame.Parent = ChallengesFrame
4629
DiveDwellingFrame.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4630
DiveDwellingFrame.Position = UDim2.new(0, 0, 0.238670692, 0)
4631
DiveDwellingFrame.Size = UDim2.new(1, 0, 0.761329293, 0)
4632
DiveDwellingFrame.Visible = false
4633
DiveDwellingFrame.ZIndex = 100
4634
4635
Borders_14.Name = "Borders"
4636
Borders_14.Parent = DiveDwellingFrame
4637
Borders_14.BackgroundColor3 = Color3.new(1, 1, 1)
4638
Borders_14.BackgroundTransparency = 1
4639
Borders_14.BorderSizePixel = 0
4640
Borders_14.Size = UDim2.new(1, 0, 1, 0)
4641
Borders_14.ZIndex = 120
4642
4643
Border_105.Name = "Border"
4644
Border_105.Parent = Borders_14
4645
Border_105.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4646
Border_105.BackgroundTransparency = 1
4647
Border_105.BorderSizePixel = 0
4648
Border_105.Position = UDim2.new(0, -12, 0, -12)
4649
Border_105.Size = UDim2.new(0, 12, 0, 12)
4650
Border_105.ZIndex = 110
4651
Border_105.Image = "http://www.roblox.com/asset/?id=238725003"
4652
Border_105.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4653
Border_105.ImageRectSize = Vector2.new(12, 12)
4654
4655
Border_106.Name = "Border"
4656
Border_106.Parent = Borders_14
4657
Border_106.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4658
Border_106.BackgroundTransparency = 1
4659
Border_106.BorderSizePixel = 0
4660
Border_106.Position = UDim2.new(1, 0, 0, -12)
4661
Border_106.Size = UDim2.new(0, 12, 0, 12)
4662
Border_106.ZIndex = 110
4663
Border_106.Image = "http://www.roblox.com/asset/?id=238725003"
4664
Border_106.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4665
Border_106.ImageRectOffset = Vector2.new(24, 0)
4666
Border_106.ImageRectSize = Vector2.new(12, 12)
4667
4668
Border_107.Name = "Border"
4669
Border_107.Parent = Borders_14
4670
Border_107.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4671
Border_107.BackgroundTransparency = 1
4672
Border_107.BorderSizePixel = 0
4673
Border_107.Position = UDim2.new(0, -12, 1, 0)
4674
Border_107.Size = UDim2.new(0, 12, 0, 12)
4675
Border_107.ZIndex = 110
4676
Border_107.Image = "http://www.roblox.com/asset/?id=238725003"
4677
Border_107.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4678
Border_107.ImageRectOffset = Vector2.new(0, 24)
4679
Border_107.ImageRectSize = Vector2.new(12, 12)
4680
4681
Border_108.Name = "Border"
4682
Border_108.Parent = Borders_14
4683
Border_108.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4684
Border_108.BackgroundTransparency = 1
4685
Border_108.BorderSizePixel = 0
4686
Border_108.Position = UDim2.new(1, 0, 1, 0)
4687
Border_108.Size = UDim2.new(0, 12, 0, 12)
4688
Border_108.ZIndex = 110
4689
Border_108.Image = "http://www.roblox.com/asset/?id=238725003"
4690
Border_108.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4691
Border_108.ImageRectOffset = Vector2.new(24, 24)
4692
Border_108.ImageRectSize = Vector2.new(12, 12)
4693
4694
Border_109.Name = "Border"
4695
Border_109.Parent = Borders_14
4696
Border_109.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4697
Border_109.BackgroundTransparency = 1
4698
Border_109.BorderSizePixel = 0
4699
Border_109.Position = UDim2.new(0, 0, 1, 0)
4700
Border_109.Size = UDim2.new(1, 0, 0, 12)
4701
Border_109.ZIndex = 110
4702
Border_109.Image = "http://www.roblox.com/asset/?id=238725003"
4703
Border_109.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4704
Border_109.ImageRectOffset = Vector2.new(12, 24)
4705
Border_109.ImageRectSize = Vector2.new(12, 12)
4706
4707
Border_110.Name = "Border"
4708
Border_110.Parent = Borders_14
4709
Border_110.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4710
Border_110.BackgroundTransparency = 1
4711
Border_110.BorderSizePixel = 0
4712
Border_110.Position = UDim2.new(0, 0, 0, -12)
4713
Border_110.Size = UDim2.new(1, 0, 0, 12)
4714
Border_110.ZIndex = 110
4715
Border_110.Image = "http://www.roblox.com/asset/?id=238725003"
4716
Border_110.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4717
Border_110.ImageRectOffset = Vector2.new(12, 0)
4718
Border_110.ImageRectSize = Vector2.new(12, 12)
4719
4720
Border_111.Name = "Border"
4721
Border_111.Parent = Borders_14
4722
Border_111.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4723
Border_111.BackgroundTransparency = 1
4724
Border_111.BorderSizePixel = 0
4725
Border_111.Position = UDim2.new(0, -12, 0, 0)
4726
Border_111.Size = UDim2.new(0, 12, 1, 0)
4727
Border_111.ZIndex = 110
4728
Border_111.Image = "http://www.roblox.com/asset/?id=238725003"
4729
Border_111.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4730
Border_111.ImageRectOffset = Vector2.new(0, 12)
4731
Border_111.ImageRectSize = Vector2.new(12, 12)
4732
4733
Border_112.Name = "Border"
4734
Border_112.Parent = Borders_14
4735
Border_112.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4736
Border_112.BackgroundTransparency = 1
4737
Border_112.BorderSizePixel = 0
4738
Border_112.Position = UDim2.new(1, 0, 0, 0)
4739
Border_112.Size = UDim2.new(0, 12, 1, 0)
4740
Border_112.ZIndex = 110
4741
Border_112.Image = "http://www.roblox.com/asset/?id=238725003"
4742
Border_112.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4743
Border_112.ImageRectOffset = Vector2.new(24, 12)
4744
Border_112.ImageRectSize = Vector2.new(12, 12)
4745
4746
ChallengeInfo_7.Name = "ChallengeInfo"
4747
ChallengeInfo_7.Parent = DiveDwellingFrame
4748
ChallengeInfo_7.BackgroundColor3 = Color3.new(1, 1, 1)
4749
ChallengeInfo_7.BackgroundTransparency = 1
4750
ChallengeInfo_7.BorderSizePixel = 0
4751
ChallengeInfo_7.Position = UDim2.new(0.0076481835, 0, 0, 0)
4752
ChallengeInfo_7.Size = UDim2.new(0.99235183, 0, 0.134920642, 0)
4753
ChallengeInfo_7.ZIndex = 120
4754
ChallengeInfo_7.Font = Enum.Font.Highway
4755
ChallengeInfo_7.Text = "All Dive Dwelling Commands :"
4756
ChallengeInfo_7.TextColor3 = Color3.new(0.784314, 0.784314, 0.784314)
4757
ChallengeInfo_7.TextScaled = true
4758
ChallengeInfo_7.TextSize = 14
4759
ChallengeInfo_7.TextWrapped = true
4760
4761
BotWin_4.Name = "BotWin"
4762
BotWin_4.Parent = DiveDwellingFrame
4763
BotWin_4.BackgroundColor3 = Color3.new(1, 1, 1)
4764
BotWin_4.BorderSizePixel = 0
4765
BotWin_4.Position = UDim2.new(0, 0, 0.34375, 0)
4766
BotWin_4.Size = UDim2.new(0, 523, 0, 17)
4767
BotWin_4.ZIndex = 120
4768
BotWin_4.Font = Enum.Font.Highway
4769
BotWin_4.Text = "Insta Win"
4770
BotWin_4.TextColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4771
BotWin_4.TextScaled = true
4772
BotWin_4.TextSize = 14
4773
BotWin_4.TextWrapped = true
4774
4775
Borders_15.Name = "Borders"
4776
Borders_15.Parent = BotWin_4
4777
Borders_15.BackgroundColor3 = Color3.new(1, 1, 1)
4778
Borders_15.BackgroundTransparency = 1
4779
Borders_15.BorderSizePixel = 0
4780
Borders_15.Size = UDim2.new(1, 0, 1, 0)
4781
Borders_15.ZIndex = 120
4782
4783
Border_113.Name = "Border"
4784
Border_113.Parent = Borders_15
4785
Border_113.BackgroundColor3 = Color3.new(1, 1, 1)
4786
Border_113.BackgroundTransparency = 1
4787
Border_113.BorderSizePixel = 0
4788
Border_113.Position = UDim2.new(0, -12, 0, -12)
4789
Border_113.Size = UDim2.new(0, 12, 0, 12)
4790
Border_113.ZIndex = 110
4791
Border_113.Image = "http://www.roblox.com/asset/?id=238725003"
4792
Border_113.ImageRectSize = Vector2.new(12, 12)
4793
4794
Border_114.Name = "Border"
4795
Border_114.Parent = Borders_15
4796
Border_114.BackgroundColor3 = Color3.new(1, 1, 1)
4797
Border_114.BackgroundTransparency = 1
4798
Border_114.BorderSizePixel = 0
4799
Border_114.Position = UDim2.new(1, 0, 0, -12)
4800
Border_114.Size = UDim2.new(0, 12, 0, 12)
4801
Border_114.ZIndex = 110
4802
Border_114.Image = "http://www.roblox.com/asset/?id=238725003"
4803
Border_114.ImageRectOffset = Vector2.new(24, 0)
4804
Border_114.ImageRectSize = Vector2.new(12, 12)
4805
4806
Border_115.Name = "Border"
4807
Border_115.Parent = Borders_15
4808
Border_115.BackgroundColor3 = Color3.new(1, 1, 1)
4809
Border_115.BackgroundTransparency = 1
4810
Border_115.BorderSizePixel = 0
4811
Border_115.Position = UDim2.new(0, -12, 1, 0)
4812
Border_115.Size = UDim2.new(0, 12, 0, 12)
4813
Border_115.ZIndex = 110
4814
Border_115.Image = "http://www.roblox.com/asset/?id=238725003"
4815
Border_115.ImageRectOffset = Vector2.new(0, 24)
4816
Border_115.ImageRectSize = Vector2.new(12, 12)
4817
4818
Border_116.Name = "Border"
4819
Border_116.Parent = Borders_15
4820
Border_116.BackgroundColor3 = Color3.new(1, 1, 1)
4821
Border_116.BackgroundTransparency = 1
4822
Border_116.BorderSizePixel = 0
4823
Border_116.Position = UDim2.new(1, 0, 1, 0)
4824
Border_116.Size = UDim2.new(0, 12, 0, 12)
4825
Border_116.ZIndex = 110
4826
Border_116.Image = "http://www.roblox.com/asset/?id=238725003"
4827
Border_116.ImageRectOffset = Vector2.new(24, 24)
4828
Border_116.ImageRectSize = Vector2.new(12, 12)
4829
4830
Border_117.Name = "Border"
4831
Border_117.Parent = Borders_15
4832
Border_117.BackgroundColor3 = Color3.new(1, 1, 1)
4833
Border_117.BackgroundTransparency = 1
4834
Border_117.BorderSizePixel = 0
4835
Border_117.Position = UDim2.new(0, 0, 1, 0)
4836
Border_117.Size = UDim2.new(1, 0, 0, 12)
4837
Border_117.ZIndex = 110
4838
Border_117.Image = "http://www.roblox.com/asset/?id=238725003"
4839
Border_117.ImageRectOffset = Vector2.new(12, 24)
4840
Border_117.ImageRectSize = Vector2.new(12, 12)
4841
4842
Border_118.Name = "Border"
4843
Border_118.Parent = Borders_15
4844
Border_118.BackgroundColor3 = Color3.new(1, 1, 1)
4845
Border_118.BackgroundTransparency = 1
4846
Border_118.BorderSizePixel = 0
4847
Border_118.Position = UDim2.new(0, 0, 0, -12)
4848
Border_118.Size = UDim2.new(1, 0, 0, 12)
4849
Border_118.ZIndex = 110
4850
Border_118.Image = "http://www.roblox.com/asset/?id=238725003"
4851
Border_118.ImageRectOffset = Vector2.new(12, 0)
4852
Border_118.ImageRectSize = Vector2.new(12, 12)
4853
4854
Border_119.Name = "Border"
4855
Border_119.Parent = Borders_15
4856
Border_119.BackgroundColor3 = Color3.new(1, 1, 1)
4857
Border_119.BackgroundTransparency = 1
4858
Border_119.BorderSizePixel = 0
4859
Border_119.Position = UDim2.new(0, -12, 0, 0)
4860
Border_119.Size = UDim2.new(0, 12, 1, 0)
4861
Border_119.ZIndex = 110
4862
Border_119.Image = "http://www.roblox.com/asset/?id=238725003"
4863
Border_119.ImageRectOffset = Vector2.new(0, 12)
4864
Border_119.ImageRectSize = Vector2.new(12, 12)
4865
4866
Border_120.Name = "Border"
4867
Border_120.Parent = Borders_15
4868
Border_120.BackgroundColor3 = Color3.new(1, 1, 1)
4869
Border_120.BackgroundTransparency = 1
4870
Border_120.BorderSizePixel = 0
4871
Border_120.Position = UDim2.new(1, 0, 0, 0)
4872
Border_120.Size = UDim2.new(0, 12, 1, 0)
4873
Border_120.ZIndex = 110
4874
Border_120.Image = "http://www.roblox.com/asset/?id=238725003"
4875
Border_120.ImageRectOffset = Vector2.new(24, 12)
4876
Border_120.ImageRectSize = Vector2.new(12, 12)
4877
4878
BeatToThePunchFrame.Name = "BeatToThePunchFrame"
4879
BeatToThePunchFrame.Parent = ChallengesFrame
4880
BeatToThePunchFrame.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4881
BeatToThePunchFrame.Position = UDim2.new(0, 0, 0.238670692, 0)
4882
BeatToThePunchFrame.Size = UDim2.new(1, 0, 0.761329293, 0)
4883
BeatToThePunchFrame.Visible = false
4884
BeatToThePunchFrame.ZIndex = 100
4885
4886
Borders_16.Name = "Borders"
4887
Borders_16.Parent = BeatToThePunchFrame
4888
Borders_16.BackgroundColor3 = Color3.new(1, 1, 1)
4889
Borders_16.BackgroundTransparency = 1
4890
Borders_16.BorderSizePixel = 0
4891
Borders_16.Size = UDim2.new(1, 0, 1, 0)
4892
Borders_16.ZIndex = 120
4893
4894
Border_121.Name = "Border"
4895
Border_121.Parent = Borders_16
4896
Border_121.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4897
Border_121.BackgroundTransparency = 1
4898
Border_121.BorderSizePixel = 0
4899
Border_121.Position = UDim2.new(0, -12, 0, -12)
4900
Border_121.Size = UDim2.new(0, 12, 0, 12)
4901
Border_121.ZIndex = 110
4902
Border_121.Image = "http://www.roblox.com/asset/?id=238725003"
4903
Border_121.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4904
Border_121.ImageRectSize = Vector2.new(12, 12)
4905
4906
Border_122.Name = "Border"
4907
Border_122.Parent = Borders_16
4908
Border_122.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4909
Border_122.BackgroundTransparency = 1
4910
Border_122.BorderSizePixel = 0
4911
Border_122.Position = UDim2.new(1, 0, 0, -12)
4912
Border_122.Size = UDim2.new(0, 12, 0, 12)
4913
Border_122.ZIndex = 110
4914
Border_122.Image = "http://www.roblox.com/asset/?id=238725003"
4915
Border_122.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4916
Border_122.ImageRectOffset = Vector2.new(24, 0)
4917
Border_122.ImageRectSize = Vector2.new(12, 12)
4918
4919
Border_123.Name = "Border"
4920
Border_123.Parent = Borders_16
4921
Border_123.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4922
Border_123.BackgroundTransparency = 1
4923
Border_123.BorderSizePixel = 0
4924
Border_123.Position = UDim2.new(0, -12, 1, 0)
4925
Border_123.Size = UDim2.new(0, 12, 0, 12)
4926
Border_123.ZIndex = 110
4927
Border_123.Image = "http://www.roblox.com/asset/?id=238725003"
4928
Border_123.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4929
Border_123.ImageRectOffset = Vector2.new(0, 24)
4930
Border_123.ImageRectSize = Vector2.new(12, 12)
4931
4932
Border_124.Name = "Border"
4933
Border_124.Parent = Borders_16
4934
Border_124.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4935
Border_124.BackgroundTransparency = 1
4936
Border_124.BorderSizePixel = 0
4937
Border_124.Position = UDim2.new(1, 0, 1, 0)
4938
Border_124.Size = UDim2.new(0, 12, 0, 12)
4939
Border_124.ZIndex = 110
4940
Border_124.Image = "http://www.roblox.com/asset/?id=238725003"
4941
Border_124.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4942
Border_124.ImageRectOffset = Vector2.new(24, 24)
4943
Border_124.ImageRectSize = Vector2.new(12, 12)
4944
4945
Border_125.Name = "Border"
4946
Border_125.Parent = Borders_16
4947
Border_125.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4948
Border_125.BackgroundTransparency = 1
4949
Border_125.BorderSizePixel = 0
4950
Border_125.Position = UDim2.new(0, 0, 1, 0)
4951
Border_125.Size = UDim2.new(1, 0, 0, 12)
4952
Border_125.ZIndex = 110
4953
Border_125.Image = "http://www.roblox.com/asset/?id=238725003"
4954
Border_125.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4955
Border_125.ImageRectOffset = Vector2.new(12, 24)
4956
Border_125.ImageRectSize = Vector2.new(12, 12)
4957
4958
Border_126.Name = "Border"
4959
Border_126.Parent = Borders_16
4960
Border_126.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4961
Border_126.BackgroundTransparency = 1
4962
Border_126.BorderSizePixel = 0
4963
Border_126.Position = UDim2.new(0, 0, 0, -12)
4964
Border_126.Size = UDim2.new(1, 0, 0, 12)
4965
Border_126.ZIndex = 110
4966
Border_126.Image = "http://www.roblox.com/asset/?id=238725003"
4967
Border_126.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4968
Border_126.ImageRectOffset = Vector2.new(12, 0)
4969
Border_126.ImageRectSize = Vector2.new(12, 12)
4970
4971
Border_127.Name = "Border"
4972
Border_127.Parent = Borders_16
4973
Border_127.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4974
Border_127.BackgroundTransparency = 1
4975
Border_127.BorderSizePixel = 0
4976
Border_127.Position = UDim2.new(0, -12, 0, 0)
4977
Border_127.Size = UDim2.new(0, 12, 1, 0)
4978
Border_127.ZIndex = 110
4979
Border_127.Image = "http://www.roblox.com/asset/?id=238725003"
4980
Border_127.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4981
Border_127.ImageRectOffset = Vector2.new(0, 12)
4982
Border_127.ImageRectSize = Vector2.new(12, 12)
4983
4984
Border_128.Name = "Border"
4985
Border_128.Parent = Borders_16
4986
Border_128.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4987
Border_128.BackgroundTransparency = 1
4988
Border_128.BorderSizePixel = 0
4989
Border_128.Position = UDim2.new(1, 0, 0, 0)
4990
Border_128.Size = UDim2.new(0, 12, 1, 0)
4991
Border_128.ZIndex = 110
4992
Border_128.Image = "http://www.roblox.com/asset/?id=238725003"
4993
Border_128.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
4994
Border_128.ImageRectOffset = Vector2.new(24, 12)
4995
Border_128.ImageRectSize = Vector2.new(12, 12)
4996
4997
ChallengeInfo_8.Name = "ChallengeInfo"
4998
ChallengeInfo_8.Parent = BeatToThePunchFrame
4999
ChallengeInfo_8.BackgroundColor3 = Color3.new(1, 1, 1)
5000
ChallengeInfo_8.BackgroundTransparency = 1
5001
ChallengeInfo_8.BorderSizePixel = 0
5002
ChallengeInfo_8.Position = UDim2.new(0.0076481835, 0, 0, 0)
5003
ChallengeInfo_8.Size = UDim2.new(0.99235183, 0, 0.134920642, 0)
5004
ChallengeInfo_8.ZIndex = 120
5005
ChallengeInfo_8.Font = Enum.Font.Highway
5006
ChallengeInfo_8.Text = "All Beat To The Punch Commands :"
5007
ChallengeInfo_8.TextColor3 = Color3.new(0.784314, 0.784314, 0.784314)
5008
ChallengeInfo_8.TextScaled = true
5009
ChallengeInfo_8.TextSize = 14
5010
ChallengeInfo_8.TextWrapped = true
5011
5012
BotWin_5.Name = "BotWin"
5013
BotWin_5.Parent = BeatToThePunchFrame
5014
BotWin_5.BackgroundColor3 = Color3.new(1, 1, 1)
5015
BotWin_5.BorderSizePixel = 0
5016
BotWin_5.Position = UDim2.new(0, 0, 0.34375, 0)
5017
BotWin_5.Size = UDim2.new(0, 523, 0, 17)
5018
BotWin_5.ZIndex = 120
5019
BotWin_5.Font = Enum.Font.Highway
5020
BotWin_5.Text = "Insta Win"
5021
BotWin_5.TextColor3 = Color3.new(0.392157, 0.784314, 0.392157)
5022
BotWin_5.TextScaled = true
5023
BotWin_5.TextSize = 14
5024
BotWin_5.TextWrapped = true
5025
5026
Borders_17.Name = "Borders"
5027
Borders_17.Parent = BotWin_5
5028
Borders_17.BackgroundColor3 = Color3.new(1, 1, 1)
5029
Borders_17.BackgroundTransparency = 1
5030
Borders_17.BorderSizePixel = 0
5031
Borders_17.Size = UDim2.new(1, 0, 1, 0)
5032
Borders_17.ZIndex = 120
5033
5034
Border_129.Name = "Border"
5035
Border_129.Parent = Borders_17
5036
Border_129.BackgroundColor3 = Color3.new(1, 1, 1)
5037
Border_129.BackgroundTransparency = 1
5038
Border_129.BorderSizePixel = 0
5039
Border_129.Position = UDim2.new(0, -12, 0, -12)
5040
Border_129.Size = UDim2.new(0, 12, 0, 12)
5041
Border_129.ZIndex = 110
5042
Border_129.Image = "http://www.roblox.com/asset/?id=238725003"
5043
Border_129.ImageRectSize = Vector2.new(12, 12)
5044
5045
Border_130.Name = "Border"
5046
Border_130.Parent = Borders_17
5047
Border_130.BackgroundColor3 = Color3.new(1, 1, 1)
5048
Border_130.BackgroundTransparency = 1
5049
Border_130.BorderSizePixel = 0
5050
Border_130.Position = UDim2.new(1, 0, 0, -12)
5051
Border_130.Size = UDim2.new(0, 12, 0, 12)
5052
Border_130.ZIndex = 110
5053
Border_130.Image = "http://www.roblox.com/asset/?id=238725003"
5054
Border_130.ImageRectOffset = Vector2.new(24, 0)
5055
Border_130.ImageRectSize = Vector2.new(12, 12)
5056
5057
Border_131.Name = "Border"
5058
Border_131.Parent = Borders_17
5059
Border_131.BackgroundColor3 = Color3.new(1, 1, 1)
5060
Border_131.BackgroundTransparency = 1
5061
Border_131.BorderSizePixel = 0
5062
Border_131.Position = UDim2.new(0, -12, 1, 0)
5063
Border_131.Size = UDim2.new(0, 12, 0, 12)
5064
Border_131.ZIndex = 110
5065
Border_131.Image = "http://www.roblox.com/asset/?id=238725003"
5066
Border_131.ImageRectOffset = Vector2.new(0, 24)
5067
Border_131.ImageRectSize = Vector2.new(12, 12)
5068
5069
Border_132.Name = "Border"
5070
Border_132.Parent = Borders_17
5071
Border_132.BackgroundColor3 = Color3.new(1, 1, 1)
5072
Border_132.BackgroundTransparency = 1
5073
Border_132.BorderSizePixel = 0
5074
Border_132.Position = UDim2.new(1, 0, 1, 0)
5075
Border_132.Size = UDim2.new(0, 12, 0, 12)
5076
Border_132.ZIndex = 110
5077
Border_132.Image = "http://www.roblox.com/asset/?id=238725003"
5078
Border_132.ImageRectOffset = Vector2.new(24, 24)
5079
Border_132.ImageRectSize = Vector2.new(12, 12)
5080
5081
Border_133.Name = "Border"
5082
Border_133.Parent = Borders_17
5083
Border_133.BackgroundColor3 = Color3.new(1, 1, 1)
5084
Border_133.BackgroundTransparency = 1
5085
Border_133.BorderSizePixel = 0
5086
Border_133.Position = UDim2.new(0, 0, 1, 0)
5087
Border_133.Size = UDim2.new(1, 0, 0, 12)
5088
Border_133.ZIndex = 110
5089
Border_133.Image = "http://www.roblox.com/asset/?id=238725003"
5090
Border_133.ImageRectOffset = Vector2.new(12, 24)
5091
Border_133.ImageRectSize = Vector2.new(12, 12)
5092
5093
Border_134.Name = "Border"
5094
Border_134.Parent = Borders_17
5095
Border_134.BackgroundColor3 = Color3.new(1, 1, 1)
5096
Border_134.BackgroundTransparency = 1
5097
Border_134.BorderSizePixel = 0
5098
Border_134.Position = UDim2.new(0, 0, 0, -12)
5099
Border_134.Size = UDim2.new(1, 0, 0, 12)
5100
Border_134.ZIndex = 110
5101
Border_134.Image = "http://www.roblox.com/asset/?id=238725003"
5102
Border_134.ImageRectOffset = Vector2.new(12, 0)
5103
Border_134.ImageRectSize = Vector2.new(12, 12)
5104
5105
Border_135.Name = "Border"
5106
Border_135.Parent = Borders_17
5107
Border_135.BackgroundColor3 = Color3.new(1, 1, 1)
5108
Border_135.BackgroundTransparency = 1
5109
Border_135.BorderSizePixel = 0
5110
Border_135.Position = UDim2.new(0, -12, 0, 0)
5111
Border_135.Size = UDim2.new(0, 12, 1, 0)
5112
Border_135.ZIndex = 110
5113
Border_135.Image = "http://www.roblox.com/asset/?id=238725003"
5114
Border_135.ImageRectOffset = Vector2.new(0, 12)
5115
Border_135.ImageRectSize = Vector2.new(12, 12)
5116
5117
Border_136.Name = "Border"
5118
Border_136.Parent = Borders_17
5119
Border_136.BackgroundColor3 = Color3.new(1, 1, 1)
5120
Border_136.BackgroundTransparency = 1
5121
Border_136.BorderSizePixel = 0
5122
Border_136.Position = UDim2.new(1, 0, 0, 0)
5123
Border_136.Size = UDim2.new(0, 12, 1, 0)
5124
Border_136.ZIndex = 110
5125
Border_136.Image = "http://www.roblox.com/asset/?id=238725003"
5126
Border_136.ImageRectOffset = Vector2.new(24, 12)
5127
Border_136.ImageRectSize = Vector2.new(12, 12)
5128
5129
-- Scripts 
5130
local function GetModule ()
5131
	--[[
5132
		This Is The Data For The Survivor GUI.
5133
		Fucking Leakers...
5134
		If You're Not A Leaker, But You're Just Trying To Know What This Does, Then It Simply Stores All The Data To Make Leaaking Harder.
5135
		Script Data Version : 1
5136
		GUI Version : 3
5137
		Any Other GUI Version Won't Work With This Data.
5138
	--]]
5139
	local function GraduallyMovePart (Part,EndPoint)
5140
		local Magnitude = (Part.Position-EndPoint).magnitude
5141
		local LookVector = CFrame.new((Part.Position+EndPoint)/2,EndPoint)
5142
		local Step = 0
5143
		repeat
5144
			wait()
5145
			Step = Step + 1
5146
			Part.CFrame = Part.CFrame + LookVector.lookVector
5147
		until Step >= Magnitude
5148
	end
5149
	
5150
	local Players = game.Players
5151
	local Player = Players.LocalPlayer
5152
	local Misc = game.Workspace.Misc
5153
	local GetPlayerTribal = function()
5154
		local Teams = game.Teams
5155
		local MyTeam = Player.Team
5156
		local GameData = game.ReplicatedStorage.GameData
5157
		local Tribe1 = GameData.Tribe1Name
5158
		local Tribe2 = GameData.Tribe2Name
5159
		local TribeName = MyTeam.Name
5160
		local TribeNum = 0
5161
		local PlayerTribe = nil
5162
		local PlayerTribeNum = nil
5163
		PlayerTribe = MyTeam.Name
5164
		print("Tribe : "..MyTeam.Name)
5165
		if MyTeam.Name == Tribe1.Value then
5166
			TribeNum = 1
5167
			PlayerTribeNum = 1
5168
		elseif MyTeam.Name == Tribe2.Value then
5169
			TribeNum = 2
5170
			PlayerTribeNum = 2
5171
		end
5172
		return {Tribe = PlayerTribe, TribeNum = PlayerTribeNum}
5173
	end
5174
	
5175
	
5176
	
5177
	
5178
	
5179
	local ScriptData = {
5180
		WlLink = "https://pastebin.com/raw/Ta5uXQh4",
5181
		VersionLink = "https://pastebin.com/raw/VEd0LQxj",
5182
		MyVersion = 3,
5183
		ModuleVersion = 1,
5184
		Players = game.Players,
5185
		Player = Players.LocalPlayer,
5186
		Mouse = Player:GetMouse(),
5187
		Misc = game.Workspace.Misc,
5188
		CheckMark = "rbxassetid://505845268",
5189
		Ts = game:GetService("TweenService"),
5190
		Tinfos = {
5191
			TweenInfo.new(
5192
				1,
5193
				Enum.EasingStyle.Sine,
5194
				Enum.EasingDirection.Out,
5195
				0,
5196
				false,
5197
				0
5198
			),
5199
			TweenInfo.new(
5200
				0.5,
5201
				Enum.EasingStyle.Sine,
5202
				Enum.EasingDirection.Out,
5203
				0,
5204
				false,
5205
				0
5206
			)
5207
		},
5208
		ProfileData = {
5209
			Values = {
5210
				"Wins",
5211
				"Runner-ups",
5212
				"Idols found",
5213
				"Idols used",
5214
				"Tribal wins",
5215
				"Votes against",
5216
				"Individual wins",
5217
				"Times in Jury",
5218
				"Torches snuffed",
5219
				"Advantages used",
5220
				"Idoled out",
5221
				"Rocked out",
5222
				"Nullified votes",
5223
				"Coins"
5224
			}
5225
		},
5226
		SwitchData = {
5227
			KeysDown = {
5228
				
5229
			},
5230
			ClickMethods = {
5231
				Teleport = false,
5232
				Destroy = false,
5233
				Debug = false,
5234
				Toggle = false
5235
			},
5236
			TotalDebugs = 0,
5237
			Flying = false,
5238
			Noclipping = false,
5239
			CAim = false,
5240
			Chathook = false
5241
		},
5242
		GetPlayerFromShortGameName = function(ShortName)
5243
			local Plr = nil
5244
			for i, v in ipairs(game.Players:GetPlayers()) do
5245
				if string.find(string.lower(v.GameName.Value),string.lower(ShortName)) ~= nil then
5246
					Plr = v
5247
				end
5248
			end
5249
			return Plr
5250
		end,
5251
		GetPlayerFromShortName = function(ShortName)
5252
			local Plr = nil
5253
			for i, v in ipairs(game.Players:GetPlayers()) do
5254
				if string.find(string.lower(v.Name),string.lower(ShortName)) ~= nil then
5255
					Plr = v
5256
				end
5257
			end
5258
			return Plr
5259
		end,
5260
		StringToArray = function(String,Separator)
5261
			local Array = {}
5262
			local ExtStr = String
5263
			for i = 0,10 do
5264
				if ExtStr == "" or ExtStr == " " then
5265
					
5266
				else
5267
					local Start = string.find(ExtStr,Separator)
5268
					if Start ~= nil then
5269
						local Arg = string.sub(ExtStr,0,Start-1)
5270
						table.insert(Array,Arg)
5271
						ExtStr = string.sub(ExtStr,Start+1)
5272
					else
5273
						table.insert(Array,ExtStr)
5274
						ExtStr = ""
5275
					end
5276
				end
5277
			end
5278
			if string.lower(Array[1]) == "/e" then
5279
				Array[1] = nil
5280
				for i, v in pairs(Array) do
5281
					if i == 1 then
5282
						
5283
					else
5284
						Array[i-1] = v
5285
					end
5286
				end
5287
			end
5288
			return Array
5289
		end,
5290
		GetLink = function(Link)
5291
			local Body = "Unable To Get Body."
5292
			local DefBody = Body
5293
			pcall(function()
5294
				Body = HttpGet(Link)
5295
			end)
5296
			if Body == DefBody then
5297
				pcall(function()
5298
					Body = game:HttpGet(Link)
5299
				end)
5300
				if Body == DefBody then
5301
					pcall(function()
5302
						Body = game:HttpGetAsync(Link)
5303
					end)
5304
					if Body == DefBody then
5305
						pcall(function()
5306
							Body = game:GetService("HttpService"):GetAsync(Link)
5307
						end)
5308
						return Body
5309
					else
5310
						return Body
5311
					end
5312
				else
5313
					return Body
5314
				end
5315
			else
5316
				return Body
5317
			end
5318
		end,
5319
		GetPlayerTribal = function()
5320
			local Teams = game.Teams
5321
			local MyTeam = Player.Team
5322
			local GameData = game.ReplicatedStorage.GameData
5323
			local Tribe1 = GameData.Tribe1Name
5324
			local Tribe2 = GameData.Tribe2Name
5325
			local TribeName = MyTeam.Name
5326
			local TribeNum = 0
5327
			local PlayerTribe = nil
5328
			local PlayerTribeNum = nil
5329
			PlayerTribe = MyTeam.Name
5330
			print("Tribe : "..MyTeam.Name)
5331
			if MyTeam.Name == Tribe1.Value then
5332
				TribeNum = 1
5333
				PlayerTribeNum = 1
5334
			elseif MyTeam.Name == Tribe2.Value then
5335
				TribeNum = 2
5336
				PlayerTribeNum = 2
5337
			end
5338
			return {Tribe = PlayerTribe, TribeNum = PlayerTribeNum}
5339
		end,
5340
		Funcs = {
5341
			GetCoins = function(Number)
5342
				if Number ~= nil then
5343
					local Char = Player.Character
5344
					local Coinsx = {}
5345
					for i, v in pairs(Misc:GetDescendants())do
5346
						if v.Name == "Coin" then
5347
							table.insert(Coinsx,v)
5348
						end
5349
					end
5350
					for i = 1, Number do
5351
						local v = Coinsx[i]
5352
						if v.Transparency < 0.9 then
5353
							Char.HumanoidRootPart.CFrame = v.CFrame + Vector3.new(15,10,15)
5354
							wait(1)
5355
							Char.Humanoid:MoveTo(v.CFrame.p)
5356
							wait(2)
5357
						end
5358
					end
5359
				else
5360
					local Char = Player.Character
5361
					local Coinsx = {}
5362
					for i, v in pairs(Misc:GetDescendants())do
5363
						if v.Name == "Coin" then
5364
							table.insert(Coinsx,v)
5365
						end
5366
					end
5367
					for i, v in pairs(Coinsx) do
5368
						if v.Transparency < 0.9 then
5369
							Char.HumanoidRootPart.CFrame = v.CFrame + Vector3.new(15,10,15)
5370
							wait(1)
5371
							Char.Humanoid:MoveTo(v.CFrame.p)
5372
							wait(2)
5373
						end
5374
					end
5375
				end
5376
			end,
5377
			GetPickups = function()
5378
				local Char = Player.Character
5379
				for i, v in pairs(Misc.Spawned:GetChildren())do
5380
					if string.find(v.Name,"H") == nil then
5381
						v.CFrame = Char.HumanoidRootPart.CFrame
5382
					end
5383
				end
5384
			end
5385
		},
5386
		ChallengesData = {
5387
			{
5388
				Name = "Beat to the punch",
5389
				FuncName = "BeatToThePunch"
5390
			},
5391
			{
5392
				Name = "Tidepool",
5393
				FuncName = "Tidepool"
5394
			},
5395
			{
5396
				Name = "Dive Dwelling",
5397
				FuncName = "DiveDwelling"
5398
			},
5399
			{
5400
				Name = "Get A Grip",
5401
				FuncName = "GetAGrip"
5402
			},
5403
			{
5404
				Name = "Top Of The Mount",
5405
				FuncName = "TopOfTheMount"
5406
			},
5407
			{
5408
				Name = "Byway Bustel",
5409
				FuncName = "BywayBustel"
5410
			},
5411
			{
5412
				Name = "Team Tandem",
5413
				FuncName = "TeamTandem"
5414
			},
5415
			{
5416
				Name = "Cryptic Combo",
5417
				FuncName = "CrypticCombo"
5418
			},
5419
			{
5420
				Name = "Keys to Victory",
5421
				FuncName = "KeysToVictory"
5422
			},
5423
			{
5424
				Name = "Picture Perfect",
5425
				FuncName = "PicturePerfect"
5426
			}
5427
		},
5428
		Challenges = {
5429
			KeysToVictory = function()
5430
				local Char = Player.Character
5431
				local MyTribeData = GetPlayerTribal()
5432
				local MyTribeMap = game.Workspace["Keys to Victory"].Map:FindFirstChild("tribe".. tostring(MyTribeData.TribeNum))
5433
				if MyTribeMap == nil then
5434
					MyTribeMap = game.Workspace["Team Tandem"].Map:FindFirstChild("Tribe".. tostring(MyTribeData.TribeNum))
5435
				end
5436
				local KeyHole = nil
5437
				for i, v in pairs(MyTribeMap:GetDescendants())do
5438
					if v.Name == "KeyHole" then
5439
						KeyHole = v
5440
					end
5441
				end
5442
				for i, v in pairs(MyTribeMap:GetDescendants())do
5443
					if v:IsA("MeshPart") then
5444
						Char.HumanoidRootPart.CFrame = v.CFrame
5445
						wait(0.3)
5446
						Char.HumanoidRootPart.CFrame = KeyHole.CFrame + Vector3.new(0,3,0)
5447
						wait(0.3)
5448
					end
5449
				end
5450
			end,
5451
			PicturePerfect = function()
5452
				local Char = Player.Character
5453
				local Hrp = Char.HumanoidRootPart
5454
				local MyReg = Region3.new(Hrp.Position - Vector3.new(15,15),Hrp.Position + Vector3.new(15,15))
5455
				local Parts = game.Workspace:FindPartsInRegion3(MyReg)
5456
				local MySpawn = nil
5457
				local MyRoom = nil
5458
				for i, v in pairs(Parts) do
5459
					if v.Parent == game.Workspace["Picture Perfect"].Data.Spawns then
5460
						MySpawn = v
5461
					end
5462
				end
5463
				MyRoom = game.Workspace["Picture Perfect"].Map:FindFirstChild(MySpawn.Name)
5464
				if MyRoom ~= nil then
5465
					print("room found")
5466
					for i, v in pairs(MyRoom.Blocks:GetChildren()) do
5467
						local Partener = MyRoom.Stack:FindFirstChild(v.Name)
5468
						if Partener ~= nil then
5469
							local Rod = Instance.new("RodConstraint",v)
5470
							Rod.Enabled = false
5471
							local A0 = Instance.new("Attachment",v)
5472
							local A1 = Instance.new("Attachment",Partener)
5473
							Rod.Attachment0 = A0
5474
							Rod.Attachment1 = A1
5475
							Rod.Visible = true
5476
							Rod.Color = Color3.fromRGB(0,255,0)
5477
						end
5478
					end
5479
				else
5480
					print("no room")
5481
				end
5482
			end,
5483
			CrypticCombo = function()
5484
				local Gui = Player.PlayerGui.GUIs.Center.CrypticCombo.Frame
5485
				local Checks = {}
5486
				local Txbxs = {}
5487
				for i, v in pairs({1,2,3,4}) do
5488
					local Check = Gui:FindFirstChild("Check"..tostring(v))
5489
					if Check ~= nil then
5490
						table.insert(Checks,v)
5491
					end
5492
				end
5493
				for i, v in pairs(Gui:GetChildren()) do
5494
					if v:IsA("TextBox") then
5495
						table.insert(Txbxs)
5496
					end
5497
				end
5498
				for i, v in pairs(Txbxs) do
5499
					local Staisfied = false
5500
					local Count = 0
5501
					repeat
5502
						wait()
5503
						v.Text = tostring(Count)
5504
						Count = Count + 1
5505
						for e, c in pairs(Checks) do
5506
							if c ~= nil and c.Visible == true and c.ImageTransparency == 0 then
5507
								Checks[e] = nil
5508
								Staisfied = true
5509
							end
5510
						end
5511
					until Count >= 30 or Staisfied == true
5512
				end
5513
			end,
5514
			TeamTandem = function()
5515
				local Char = Player.Character
5516
				local MyTribeData = GetPlayerTribal()
5517
				local MyTribeMap = game.Workspace["Team Tandem"].Map:FindFirstChild("tribe".. tostring(MyTribeData.TribeNum))
5518
				if MyTribeMap == nil then
5519
					MyTribeMap = game.Workspace["Team Tandem"].Map:FindFirstChild("Tribe".. tostring(MyTribeData.TribeNum))
5520
				end
5521
				for i, v in pairs(MyTribeMap:GetDescendants()) do
5522
					if v.Name == "Button" then
5523
						wait()
5524
						Char.HumanoidRootPart.CFrame = v.CFrame
5525
					end
5526
				end
5527
			end,
5528
			BeatToThePuch = function()
5529
				local Char = Player.Character
5530
				local MyTribeData = GetPlayerTribal()
5531
				local MyTribeMap = game.Workspace["Beat to the Punch"].Map:FindFirstChild("tribe".. tostring(MyTribeData.TribeNum))
5532
				if MyTribeMap == nil then
5533
					MyTribeMap = game.Workspace["Beat to the Punch"].Map:FindFirstChild("Tribe".. tostring(MyTribeData.TribeNum))
5534
				end
5535
				local Finish = MyTribeMap:FindFirstChild("Finish")
5536
				if Finish == nil then
5537
					Finish = MyTribeMap:FindFirstChild("finish")
5538
				end
5539
				for i = 0,10 do
5540
					Char.HumanoidRootPart.CFrame = Finish.CFrame + Vector3.new(0,3,0)
5541
					wait(7)
5542
				end
5543
			end,
5544
			Tidepool = function()
5545
				local Char = Player.Character
5546
				local MyTribeData = GetPlayerTribal()
5547
				local MyTribeMap = game.Workspace.Tidepool.Map:FindFirstChild("tribe".. tostring(MyTribeData.TribeNum))
5548
				if MyTribeMap == nil then
5549
					MyTribeMap = game.Workspace.Tidepool.Map:FindFirstChild("Tribe".. tostring(MyTribeData.TribeNum))
5550
				end
5551
				local StartPlate1 = MyTribeMap:FindFirstChild("StartPlate1")
5552
				if StartPlate1 == nil then
5553
					StartPlate1 = MyTribeMap:FindFirstChild("Startplate1")
5554
				end
5555
				local StartPlate2 = MyTribeMap:FindFirstChild("StartPlate2")
5556
				if StartPlate2 == nil then
5557
					StartPlate2 = MyTribeMap:FindFirstChild("Startplate2")
5558
				end
5559
				local EndPlate1 = MyTribeMap:FindFirstChild("EndPlate1")
5560
				if EndPlate1 == nil then
5561
					EndPlate1 = MyTribeMap:FindFirstChild("Endplate1")
5562
				end
5563
				local EndPlate2 = MyTribeMap:FindFirstChild("EndPlate2")
5564
				if EndPlate2 == nil then
5565
					EndPlate2 = MyTribeMap:FindFirstChild("Endplate2")
5566
				end
5567
				for i = 0,6 do
5568
					Char.HumanoidRootPart.CFrame = EndPlate1.CFrame
5569
					wait(0.5)
5570
					Char.HumanoidRootPart.CFrame = StartPlate1.CFrame
5571
					wait(0.5)
5572
					Char.HumanoidRootPart.CFrame = EndPlate2.CFrame
5573
					wait(0.5)
5574
					Char.HumanoidRootPart.CFrame = StartPlate2.CFrame
5575
					wait(0.5)
5576
				end
5577
			end,
5578
			DiveDwelling = function()
5579
				local MyTribeData = GetPlayerTribal()
5580
				local Char = Player.Character
5581
				local MyTribeMap = game.Workspace["Dive Dwelling"].Map:FindFirstChild("tribe".. tostring(MyTribeData.TribeNum))
5582
				if MyTribeMap == nil then
5583
					MyTribeMap = game.Workspace["Dive Dwelling"].Map:FindFirstChild("Tribe".. tostring(MyTribeData.TribeNum))
5584
				end
5585
				local MyPearls = MyTribeMap:FindFirstChild("Pearls")
5586
				if MyPearls == nil then
5587
					MyPearls = MyTribeMap:FindFirstChild("pearls")
5588
				end
5589
				for i, v in pairs(MyPearls:GetChildren())do
5590
					Char.HumanoidRootPart.CFrame = v.CFrame
5591
					wait(0.5)
5592
				end
5593
			end,
5594
			GetAGrip = function()
5595
				game.Players.LocalPlayer.PlayerGui.GUIs.Center.GetAGrip:Destroy()
5596
			end,
5597
			TopOfTheMount = function()
5598
				local Char = Player.Character
5599
				
5600
				Char.HumanoidRootPart = Vector3.new(65, 12, -1490)
5601
				wait(1)
5602
				Char.Head.Anchored = true
5603
				repeat
5604
					wait(1)
5605
				until game.Workspace:FindFirstChild("Top of the Mount") == nil
5606
				Char.Head.Anchored = false
5607
			end,
5608
			BywayBustel = function()
5609
				local Char = Player.Character
5610
				local Hrp = Char.HumanoidRootPart
5611
				local Pos = Hrp.Position
5612
				local MyReigon = Region3.new(Pos - Vector3.new(5,5,5),Pos + Vector3.new(5,5,5))
5613
				local Parts = game.Workspace:FindPartsInRegion3(MyReigon)
5614
				local Numbers = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15}
5615
				local MyNum = nil
5616
				local MyRoom = nil
5617
				local Spawn = nil
5618
				for i, v in pairs(Parts) do
5619
					local Confirmed = false
5620
					for e, n in pairs(Numbers) do
5621
						if v.Name == tostring(n) then
5622
							Confirmed = true
5623
						end
5624
					end
5625
					if Confirmed == true then
5626
						if Spawn == nil and v.Parent == game.Workspace["Byway Bustle"].Data.Spawns then
5627
							Spawn = v
5628
						end
5629
					end
5630
				end
5631
				if Spawn ~= nil then
5632
					MyNum = Spawn.Name
5633
					MyRoom = game.Workspace["Byway Bustle"].Map:FindFirstChild(MyNum)
5634
				end
5635
				if MyRoom ~= nil then
5636
					local function GetMyBlock()
5637
						local Block = nil
5638
						for i, v in pairs(MyRoom.Blocks:GetChildren())do
5639
							if v.Transparency <= 0.1 then
5640
								Block = v
5641
							end
5642
						end
5643
						return Block
5644
					end
5645
					for i, v in pairs(MyRoom.Bridge:GetChildren())do
5646
						wait(0.2)
5647
						if v.Transparency >= 0.9 then
5648
							local Block = GetMyBlock()
5649
							Hrp.CFrame = Block.CFrame - Vector3.new(4,0,0)
5650
							GraduallyMovePart(Hrp,Vector3.new(v.Position.X,Hrp.Position.Y,v.Position.Z))
5651
						end
5652
					end
5653
					for i, n in pairs({"Yellow1","Yellow2","Yellow3"})do
5654
						wait(0.2)
5655
						local v = MyRoom.Hit:FindFirstChild(n)
5656
						if v ~= nil and n ~= "Yellow1" and n ~= "Yellow2" then
5657
							v = MyRoom.Hit:FindFirstChild("Yellow2")
5658
							local Block = GetMyBlock()
5659
							Hrp.CFrame = Block.CFrame - Vector3.new(4,0,0)
5660
							GraduallyMovePart(Hrp,Vector3.new(v.Position.X-2,Hrp.Position.Y,v.Position.Z))
5661
							v = MyRoom.Hit:FindFirstChild("Yellow3")
5662
							if v ~= nil then
5663
								Hrp.CFrame = Block.CFrame - Vector3.new(0,0,2.5)
5664
								GraduallyMovePart(Hrp,Vector3.new(v.Position.X,Hrp.Position.Y,v.Position.Z))
5665
							end
5666
						elseif n == "Yellow1" then
5667
							v = MyRoom.Hit:FindFirstChild("Yellow2")
5668
							if v ~= nil then
5669
								local Block = GetMyBlock()
5670
								Hrp.CFrame = Block.CFrame - Vector3.new(4,0,0)
5671
								GraduallyMovePart(Hrp,Vector3.new(v.Position.X,Hrp.Position.Y,v.Position.Z))
5672
							end 
5673
						elseif n == "Yellow2" then
5674
							local Block = GetMyBlock()
5675
							Hrp.CFrame = Block.CFrame - Vector3.new(4,0,0)
5676
							GraduallyMovePart(Hrp,Vector3.new(v.Position.X-2,Hrp.Position.Y,v.Position.Z))
5677
							v = MyRoom.Hit:FindFirstChild("Yellow1")
5678
							if v ~= nil then
5679
								Hrp.CFrame = Block.CFrame + Vector3.new(0,0,2.5)
5680
								GraduallyMovePart(Hrp,Vector3.new(v.Position.X,Hrp.Position.Y,v.Position.Z))
5681
							end		 
5682
						end
5683
					end
5684
				end
5685
			end
5686
		},
5687
	}
5688
	
5689
	return ScriptData
5690
end
5691
5692
local Data = GetModule()
5693
5694
 -- Objects
5695
5696
CreditsFrame = Instance.new("Frame")
5697
QuitButton = Instance.new("ImageButton")
5698
Borders = Instance.new("Frame")
5699
Border = Instance.new("ImageLabel")
5700
Border_2 = Instance.new("ImageLabel")
5701
Border_3 = Instance.new("ImageLabel")
5702
Border_4 = Instance.new("ImageLabel")
5703
Border_5 = Instance.new("ImageLabel")
5704
Borders_2 = Instance.new("Frame")
5705
Border_6 = Instance.new("ImageLabel")
5706
Border_7 = Instance.new("ImageLabel")
5707
Border_8 = Instance.new("ImageLabel")
5708
Border_9 = Instance.new("ImageLabel")
5709
Border_10 = Instance.new("ImageLabel")
5710
Border_11 = Instance.new("ImageLabel")
5711
Border_12 = Instance.new("ImageLabel")
5712
Border_13 = Instance.new("ImageLabel")
5713
CreditsLabel = Instance.new("TextLabel")
5714
CloseBtn = Instance.new("TextButton")
5715
Borders_3 = Instance.new("Frame")
5716
Border_14 = Instance.new("ImageLabel")
5717
Border_15 = Instance.new("ImageLabel")
5718
Border_16 = Instance.new("ImageLabel")
5719
Border_17 = Instance.new("ImageLabel")
5720
Border_18 = Instance.new("ImageLabel")
5721
Border_19 = Instance.new("ImageLabel")
5722
Border_20 = Instance.new("ImageLabel")
5723
Border_21 = Instance.new("ImageLabel")
5724
CreditsLabel_2 = Instance.new("TextLabel")
5725
CreditsLabel_3 = Instance.new("TextLabel")
5726
CreditsLabel_4 = Instance.new("TextLabel")
5727
CreditsLabel_5 = Instance.new("TextLabel")
5728
CreditsLabel_6 = Instance.new("TextLabel")
5729
5730
-- Properties
5731
5732
CreditsFrame.Name = "CreditsFrame"
5733
CreditsFrame.Parent = game.StarterGui
5734
CreditsFrame.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
5735
CreditsFrame.Position = UDim2.new(0.750366032, 0, 0.341194987, 0)
5736
CreditsFrame.Size = UDim2.new(0.234992683, 0, 0.52044028, 0)
5737
CreditsFrame.Visible = false
5738
CreditsFrame.ZIndex = 100
5739
5740
QuitButton.Name = "QuitButton"
5741
QuitButton.Parent = CreditsFrame
5742
QuitButton.BackgroundColor3 = Color3.new(1, 1, 1)
5743
QuitButton.BorderSizePixel = 0
5744
QuitButton.Position = UDim2.new(0.962616801, 0, 0, 0)
5745
QuitButton.Size = UDim2.new(0, 12, 0, 17)
5746
QuitButton.ZIndex = 120
5747
QuitButton.Image = "rbxassetid://1828839274"
5748
5749
Borders.Name = "Borders"
5750
Borders.Parent = QuitButton
5751
Borders.BackgroundColor3 = Color3.new(1, 1, 1)
5752
Borders.BackgroundTransparency = 1
5753
Borders.BorderSizePixel = 0
5754
Borders.Size = UDim2.new(1, 0, 1, 0)
5755
Borders.ZIndex = 120
5756
5757
Border.Name = "Border"
5758
Border.Parent = Borders
5759
Border.BackgroundColor3 = Color3.new(1, 1, 1)
5760
Border.BackgroundTransparency = 1
5761
Border.BorderSizePixel = 0
5762
Border.Position = UDim2.new(0, -12, 1, 0)
5763
Border.Size = UDim2.new(0, 12, 0, 12)
5764
Border.ZIndex = 120
5765
Border.Image = "http://www.roblox.com/asset/?id=238725003"
5766
Border.ImageRectOffset = Vector2.new(0, 24)
5767
Border.ImageRectSize = Vector2.new(12, 12)
5768
5769
Border_2.Name = "Border"
5770
Border_2.Parent = Borders
5771
Border_2.BackgroundColor3 = Color3.new(1, 1, 1)
5772
Border_2.BackgroundTransparency = 1
5773
Border_2.BorderSizePixel = 0
5774
Border_2.Position = UDim2.new(1, 0, 1, 0)
5775
Border_2.Size = UDim2.new(0, 12, 0, 12)
5776
Border_2.ZIndex = 120
5777
Border_2.Image = "http://www.roblox.com/asset/?id=238725003"
5778
Border_2.ImageRectOffset = Vector2.new(24, 24)
5779
Border_2.ImageRectSize = Vector2.new(12, 12)
5780
5781
Border_3.Name = "Border"
5782
Border_3.Parent = Borders
5783
Border_3.BackgroundColor3 = Color3.new(1, 1, 1)
5784
Border_3.BackgroundTransparency = 1
5785
Border_3.BorderSizePixel = 0
5786
Border_3.Position = UDim2.new(0, 0, 1, 0)
5787
Border_3.Size = UDim2.new(1, 0, 0, 12)
5788
Border_3.ZIndex = 120
5789
Border_3.Image = "http://www.roblox.com/asset/?id=238725003"
5790
Border_3.ImageRectOffset = Vector2.new(12, 24)
5791
Border_3.ImageRectSize = Vector2.new(12, 12)
5792
5793
Border_4.Name = "Border"
5794
Border_4.Parent = Borders
5795
Border_4.BackgroundColor3 = Color3.new(1, 1, 1)
5796
Border_4.BackgroundTransparency = 1
5797
Border_4.BorderSizePixel = 0
5798
Border_4.Position = UDim2.new(0, -12, 0, 0)
5799
Border_4.Size = UDim2.new(0, 12, 1, 0)
5800
Border_4.ZIndex = 120
5801
Border_4.Image = "http://www.roblox.com/asset/?id=238725003"
5802
Border_4.ImageRectOffset = Vector2.new(0, 12)
5803
Border_4.ImageRectSize = Vector2.new(12, 12)
5804
5805
Border_5.Name = "Border"
5806
Border_5.Parent = Borders
5807
Border_5.BackgroundColor3 = Color3.new(1, 1, 1)
5808
Border_5.BackgroundTransparency = 1
5809
Border_5.BorderSizePixel = 0
5810
Border_5.Position = UDim2.new(1, 0, 0, 0)
5811
Border_5.Size = UDim2.new(0, 12, 1, 0)
5812
Border_5.ZIndex = 120
5813
Border_5.Image = "http://www.roblox.com/asset/?id=238725003"
5814
Border_5.ImageRectOffset = Vector2.new(24, 12)
5815
Border_5.ImageRectSize = Vector2.new(12, 12)
5816
5817
Borders_2.Name = "Borders"
5818
Borders_2.Parent = CreditsFrame
5819
Borders_2.BackgroundColor3 = Color3.new(1, 1, 1)
5820
Borders_2.BackgroundTransparency = 1
5821
Borders_2.BorderSizePixel = 0
5822
Borders_2.Size = UDim2.new(1, 0, 1, 0)
5823
Borders_2.ZIndex = 120
5824
5825
Border_6.Name = "Border"
5826
Border_6.Parent = Borders_2
5827
Border_6.BackgroundColor3 = Color3.new(1, 1, 1)
5828
Border_6.BackgroundTransparency = 1
5829
Border_6.BorderSizePixel = 0
5830
Border_6.Position = UDim2.new(0, -12, 0, -12)
5831
Border_6.Size = UDim2.new(0, 12, 0, 12)
5832
Border_6.ZIndex = 110
5833
Border_6.Image = "http://www.roblox.com/asset/?id=238725003"
5834
Border_6.ImageRectSize = Vector2.new(12, 12)
5835
5836
Border_7.Name = "Border"
5837
Border_7.Parent = Borders_2
5838
Border_7.BackgroundColor3 = Color3.new(1, 1, 1)
5839
Border_7.BackgroundTransparency = 1
5840
Border_7.BorderSizePixel = 0
5841
Border_7.Position = UDim2.new(1, 0, 0, -12)
5842
Border_7.Size = UDim2.new(0, 12, 0, 12)
5843
Border_7.ZIndex = 110
5844
Border_7.Image = "http://www.roblox.com/asset/?id=238725003"
5845
Border_7.ImageRectOffset = Vector2.new(24, 0)
5846
Border_7.ImageRectSize = Vector2.new(12, 12)
5847
5848
Border_8.Name = "Border"
5849
Border_8.Parent = Borders_2
5850
Border_8.BackgroundColor3 = Color3.new(1, 1, 1)
5851
Border_8.BackgroundTransparency = 1
5852
Border_8.BorderSizePixel = 0
5853
Border_8.Position = UDim2.new(0, -12, 1, 0)
5854
Border_8.Size = UDim2.new(0, 12, 0, 12)
5855
Border_8.ZIndex = 110
5856
Border_8.Image = "http://www.roblox.com/asset/?id=238725003"
5857
Border_8.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
5858
Border_8.ImageRectOffset = Vector2.new(0, 24)
5859
Border_8.ImageRectSize = Vector2.new(12, 12)
5860
5861
Border_9.Name = "Border"
5862
Border_9.Parent = Borders_2
5863
Border_9.BackgroundColor3 = Color3.new(1, 1, 1)
5864
Border_9.BackgroundTransparency = 1
5865
Border_9.BorderSizePixel = 0
5866
Border_9.Position = UDim2.new(1, 0, 1, 0)
5867
Border_9.Size = UDim2.new(0, 12, 0, 12)
5868
Border_9.ZIndex = 110
5869
Border_9.Image = "http://www.roblox.com/asset/?id=238725003"
5870
Border_9.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
5871
Border_9.ImageRectOffset = Vector2.new(24, 24)
5872
Border_9.ImageRectSize = Vector2.new(12, 12)
5873
5874
Border_10.Name = "Border"
5875
Border_10.Parent = Borders_2
5876
Border_10.BackgroundColor3 = Color3.new(1, 1, 1)
5877
Border_10.BackgroundTransparency = 1
5878
Border_10.BorderSizePixel = 0
5879
Border_10.Position = UDim2.new(0, 0, 1, 0)
5880
Border_10.Size = UDim2.new(1, 0, 0, 12)
5881
Border_10.ZIndex = 110
5882
Border_10.Image = "http://www.roblox.com/asset/?id=238725003"
5883
Border_10.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
5884
Border_10.ImageRectOffset = Vector2.new(12, 24)
5885
Border_10.ImageRectSize = Vector2.new(12, 12)
5886
5887
Border_11.Name = "Border"
5888
Border_11.Parent = Borders_2
5889
Border_11.BackgroundColor3 = Color3.new(1, 1, 1)
5890
Border_11.BackgroundTransparency = 1
5891
Border_11.BorderSizePixel = 0
5892
Border_11.Position = UDim2.new(0, 0, 0, -12)
5893
Border_11.Size = UDim2.new(1, 0, 0, 12)
5894
Border_11.ZIndex = 110
5895
Border_11.Image = "http://www.roblox.com/asset/?id=238725003"
5896
Border_11.ImageRectOffset = Vector2.new(12, 0)
5897
Border_11.ImageRectSize = Vector2.new(12, 12)
5898
5899
Border_12.Name = "Border"
5900
Border_12.Parent = Borders_2
5901
Border_12.BackgroundColor3 = Color3.new(1, 1, 1)
5902
Border_12.BackgroundTransparency = 1
5903
Border_12.BorderSizePixel = 0
5904
Border_12.Position = UDim2.new(0, -12, 0, 0)
5905
Border_12.Size = UDim2.new(0, 12, 1, 0)
5906
Border_12.ZIndex = 110
5907
Border_12.Image = "http://www.roblox.com/asset/?id=238725003"
5908
Border_12.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
5909
Border_12.ImageRectOffset = Vector2.new(0, 12)
5910
Border_12.ImageRectSize = Vector2.new(12, 12)
5911
5912
Border_13.Name = "Border"
5913
Border_13.Parent = Borders_2
5914
Border_13.BackgroundColor3 = Color3.new(1, 1, 1)
5915
Border_13.BackgroundTransparency = 1
5916
Border_13.BorderSizePixel = 0
5917
Border_13.Position = UDim2.new(1, 0, 0, 0)
5918
Border_13.Size = UDim2.new(0, 12, 1, 0)
5919
Border_13.ZIndex = 110
5920
Border_13.Image = "http://www.roblox.com/asset/?id=238725003"
5921
Border_13.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
5922
Border_13.ImageRectOffset = Vector2.new(24, 12)
5923
Border_13.ImageRectSize = Vector2.new(12, 12)
5924
5925
CreditsLabel.Name = "CreditsLabel"
5926
CreditsLabel.Parent = CreditsFrame
5927
CreditsLabel.BackgroundColor3 = Color3.new(1, 1, 1)
5928
CreditsLabel.BackgroundTransparency = 1
5929
CreditsLabel.BorderSizePixel = 0
5930
CreditsLabel.Position = UDim2.new(0, 0, 0.117824771, 0)
5931
CreditsLabel.Size = UDim2.new(1, 0, 0.0996978879, 0)
5932
CreditsLabel.ZIndex = 120
5933
CreditsLabel.Font = Enum.Font.Highway
5934
CreditsLabel.Text = "Survivor GUI Version 4.2"
5935
CreditsLabel.TextColor3 = Color3.new(1, 1, 1)
5936
CreditsLabel.TextScaled = true
5937
CreditsLabel.TextSize = 14
5938
CreditsLabel.TextWrapped = true
5939
CreditsLabel.TextXAlignment = Enum.TextXAlignment.Left
5940
5941
CloseBtn.Name = "CloseBtn"
5942
CloseBtn.Parent = CreditsFrame
5943
CloseBtn.BackgroundColor3 = Color3.new(1, 1, 1)
5944
CloseBtn.BorderSizePixel = 0
5945
CloseBtn.Position = UDim2.new(0, 0, 0.948640466, 0)
5946
CloseBtn.Size = UDim2.new(0, 321, 0, 17)
5947
CloseBtn.ZIndex = 120
5948
CloseBtn.Font = Enum.Font.Highway
5949
CloseBtn.Text = "Close"
5950
CloseBtn.TextColor3 = Color3.new(1, 0.333333, 0)
5951
CloseBtn.TextScaled = true
5952
CloseBtn.TextSize = 14
5953
CloseBtn.TextWrapped = true
5954
5955
Borders_3.Name = "Borders"
5956
Borders_3.Parent = CloseBtn
5957
Borders_3.BackgroundColor3 = Color3.new(1, 1, 1)
5958
Borders_3.BackgroundTransparency = 1
5959
Borders_3.BorderSizePixel = 0
5960
Borders_3.Size = UDim2.new(1, 0, 1, 0)
5961
Borders_3.ZIndex = 120
5962
5963
Border_14.Name = "Border"
5964
Border_14.Parent = Borders_3
5965
Border_14.BackgroundColor3 = Color3.new(1, 1, 1)
5966
Border_14.BackgroundTransparency = 1
5967
Border_14.BorderSizePixel = 0
5968
Border_14.Position = UDim2.new(0, -12, 0, -12)
5969
Border_14.Size = UDim2.new(0, 12, 0, 12)
5970
Border_14.ZIndex = 110
5971
Border_14.Image = "http://www.roblox.com/asset/?id=238725003"
5972
Border_14.ImageRectSize = Vector2.new(12, 12)
5973
5974
Border_15.Name = "Border"
5975
Border_15.Parent = Borders_3
5976
Border_15.BackgroundColor3 = Color3.new(1, 1, 1)
5977
Border_15.BackgroundTransparency = 1
5978
Border_15.BorderSizePixel = 0
5979
Border_15.Position = UDim2.new(1, 0, 0, -12)
5980
Border_15.Size = UDim2.new(0, 12, 0, 12)
5981
Border_15.ZIndex = 110
5982
Border_15.Image = "http://www.roblox.com/asset/?id=238725003"
5983
Border_15.ImageRectOffset = Vector2.new(24, 0)
5984
Border_15.ImageRectSize = Vector2.new(12, 12)
5985
5986
Border_16.Name = "Border"
5987
Border_16.Parent = Borders_3
5988
Border_16.BackgroundColor3 = Color3.new(1, 1, 1)
5989
Border_16.BackgroundTransparency = 1
5990
Border_16.BorderSizePixel = 0
5991
Border_16.Position = UDim2.new(0, -12, 1, 0)
5992
Border_16.Size = UDim2.new(0, 12, 0, 12)
5993
Border_16.ZIndex = 110
5994
Border_16.Image = "http://www.roblox.com/asset/?id=238725003"
5995
Border_16.ImageRectOffset = Vector2.new(0, 24)
5996
Border_16.ImageRectSize = Vector2.new(12, 12)
5997
5998
Border_17.Name = "Border"
5999
Border_17.Parent = Borders_3
6000
Border_17.BackgroundColor3 = Color3.new(1, 1, 1)
6001
Border_17.BackgroundTransparency = 1
6002
Border_17.BorderSizePixel = 0
6003
Border_17.Position = UDim2.new(1, 0, 1, 0)
6004
Border_17.Size = UDim2.new(0, 12, 0, 12)
6005
Border_17.ZIndex = 110
6006
Border_17.Image = "http://www.roblox.com/asset/?id=238725003"
6007
Border_17.ImageRectOffset = Vector2.new(24, 24)
6008
Border_17.ImageRectSize = Vector2.new(12, 12)
6009
6010
Border_18.Name = "Border"
6011
Border_18.Parent = Borders_3
6012
Border_18.BackgroundColor3 = Color3.new(1, 1, 1)
6013
Border_18.BackgroundTransparency = 1
6014
Border_18.BorderSizePixel = 0
6015
Border_18.Position = UDim2.new(0, 0, 1, 0)
6016
Border_18.Size = UDim2.new(1, 0, 0, 12)
6017
Border_18.ZIndex = 110
6018
Border_18.Image = "http://www.roblox.com/asset/?id=238725003"
6019
Border_18.ImageRectOffset = Vector2.new(12, 24)
6020
Border_18.ImageRectSize = Vector2.new(12, 12)
6021
6022
Border_19.Name = "Border"
6023
Border_19.Parent = Borders_3
6024
Border_19.BackgroundColor3 = Color3.new(1, 1, 1)
6025
Border_19.BackgroundTransparency = 1
6026
Border_19.BorderSizePixel = 0
6027
Border_19.Position = UDim2.new(0, 0, 0, -12)
6028
Border_19.Size = UDim2.new(1, 0, 0, 12)
6029
Border_19.ZIndex = 110
6030
Border_19.Image = "http://www.roblox.com/asset/?id=238725003"
6031
Border_19.ImageRectOffset = Vector2.new(12, 0)
6032
Border_19.ImageRectSize = Vector2.new(12, 12)
6033
6034
Border_20.Name = "Border"
6035
Border_20.Parent = Borders_3
6036
Border_20.BackgroundColor3 = Color3.new(1, 1, 1)
6037
Border_20.BackgroundTransparency = 1
6038
Border_20.BorderSizePixel = 0
6039
Border_20.Position = UDim2.new(0, -12, 0, 0)
6040
Border_20.Size = UDim2.new(0, 12, 1, 0)
6041
Border_20.ZIndex = 110
6042
Border_20.Image = "http://www.roblox.com/asset/?id=238725003"
6043
Border_20.ImageRectOffset = Vector2.new(0, 12)
6044
Border_20.ImageRectSize = Vector2.new(12, 12)
6045
6046
Border_21.Name = "Border"
6047
Border_21.Parent = Borders_3
6048
Border_21.BackgroundColor3 = Color3.new(1, 1, 1)
6049
Border_21.BackgroundTransparency = 1
6050
Border_21.BorderSizePixel = 0
6051
Border_21.Position = UDim2.new(1, 0, 0, 0)
6052
Border_21.Size = UDim2.new(0, 12, 1, 0)
6053
Border_21.ZIndex = 110
6054
Border_21.Image = "http://www.roblox.com/asset/?id=238725003"
6055
Border_21.ImageRectOffset = Vector2.new(24, 12)
6056
Border_21.ImageRectSize = Vector2.new(12, 12)
6057
6058
CreditsLabel_2.Name = "CreditsLabel"
6059
CreditsLabel_2.Parent = CreditsFrame
6060
CreditsLabel_2.BackgroundColor3 = Color3.new(1, 1, 1)
6061
CreditsLabel_2.BackgroundTransparency = 1
6062
CreditsLabel_2.BorderSizePixel = 0
6063
CreditsLabel_2.Position = UDim2.new(0, 0, 0.290030211, 0)
6064
CreditsLabel_2.Size = UDim2.new(1, 0, 0.0996978879, 0)
6065
CreditsLabel_2.ZIndex = 120
6066
CreditsLabel_2.Font = Enum.Font.Highway
6067
CreditsLabel_2.Text = "Created By : VeteranBlue|VeteranAnime#7468"
6068
CreditsLabel_2.TextColor3 = Color3.new(1, 1, 1)
6069
CreditsLabel_2.TextScaled = true
6070
CreditsLabel_2.TextSize = 14
6071
CreditsLabel_2.TextWrapped = true
6072
CreditsLabel_2.TextXAlignment = Enum.TextXAlignment.Left
6073
6074
CreditsLabel_3.Name = "CreditsLabel"
6075
CreditsLabel_3.Parent = CreditsFrame
6076
CreditsLabel_3.BackgroundColor3 = Color3.new(1, 1, 1)
6077
CreditsLabel_3.BackgroundTransparency = 1
6078
CreditsLabel_3.BorderSizePixel = 0
6079
CreditsLabel_3.Position = UDim2.new(0, 0, 0.389728099, 0)
6080
CreditsLabel_3.Size = UDim2.new(1, 0, 0.0996978879, 0)
6081
CreditsLabel_3.ZIndex = 120
6082
CreditsLabel_3.Font = Enum.Font.Highway
6083
CreditsLabel_3.Text = "Remote Recon : Emrehan|emrehan1234567891🦇#4217"
6084
CreditsLabel_3.TextColor3 = Color3.new(1, 1, 1)
6085
CreditsLabel_3.TextScaled = true
6086
CreditsLabel_3.TextSize = 14
6087
CreditsLabel_3.TextWrapped = true
6088
CreditsLabel_3.TextXAlignment = Enum.TextXAlignment.Left
6089
6090
CreditsLabel_4.Name = "CreditsLabel"
6091
CreditsLabel_4.Parent = CreditsFrame
6092
CreditsLabel_4.BackgroundColor3 = Color3.new(1, 1, 1)
6093
CreditsLabel_4.BackgroundTransparency = 1
6094
CreditsLabel_4.BorderSizePixel = 0
6095
CreditsLabel_4.Position = UDim2.new(0, 0, 0.489425987, 0)
6096
CreditsLabel_4.Size = UDim2.new(1, 0, 0.0996978879, 0)
6097
CreditsLabel_4.ZIndex = 120
6098
CreditsLabel_4.Font = Enum.Font.Highway
6099
CreditsLabel_4.Text = "Script Synapse Tester : SGC|SGC3671#9242"
6100
CreditsLabel_4.TextColor3 = Color3.new(1, 1, 1)
6101
CreditsLabel_4.TextScaled = true
6102
CreditsLabel_4.TextSize = 14
6103
CreditsLabel_4.TextWrapped = true
6104
CreditsLabel_4.TextXAlignment = Enum.TextXAlignment.Left
6105
6106
CreditsLabel_5.Name = "CreditsLabel"
6107
CreditsLabel_5.Parent = CreditsFrame
6108
CreditsLabel_5.BackgroundColor3 = Color3.new(1, 1, 1)
6109
CreditsLabel_5.BackgroundTransparency = 1
6110
CreditsLabel_5.BorderSizePixel = 0
6111
CreditsLabel_5.Position = UDim2.new(0, 0, 0.589123845, 0)
6112
CreditsLabel_5.Size = UDim2.new(1, 0, 0.0996978879, 0)
6113
CreditsLabel_5.ZIndex = 120
6114
CreditsLabel_5.Font = Enum.Font.Highway
6115
CreditsLabel_5.Text = "Script Elysian Tester : Kuro,Regalia"
6116
CreditsLabel_5.TextColor3 = Color3.new(1, 1, 1)
6117
CreditsLabel_5.TextScaled = true
6118
CreditsLabel_5.TextSize = 14
6119
CreditsLabel_5.TextWrapped = true
6120
CreditsLabel_5.TextXAlignment = Enum.TextXAlignment.Left
6121
6122
CreditsLabel_6.Name = "CreditsLabel"
6123
CreditsLabel_6.Parent = CreditsFrame
6124
CreditsLabel_6.BackgroundColor3 = Color3.new(1, 1, 1)
6125
CreditsLabel_6.BackgroundTransparency = 1
6126
CreditsLabel_6.BorderSizePixel = 0
6127
CreditsLabel_6.Position = UDim2.new(0, 0, 0.688821733, 0)
6128
CreditsLabel_6.Size = UDim2.new(1, 0, 0.157099694, 0)
6129
CreditsLabel_6.ZIndex = 120
6130
CreditsLabel_6.Font = Enum.Font.Highway
6131
CreditsLabel_6.Text = "Note : All Experimental Commands Don't Work In Limited Mode And Don't Garuntee Working."
6132
CreditsLabel_6.TextColor3 = Color3.new(1, 1, 1)
6133
CreditsLabel_6.TextScaled = true
6134
CreditsLabel_6.TextSize = 14
6135
CreditsLabel_6.TextWrapped = true
6136
CreditsLabel_6.TextXAlignment = Enum.TextXAlignment.Left
6137
6138
6139
6140
 -- Objects
6141
6142
ExtrasFrame = Instance.new("Frame")
6143
CTpSwitch = Instance.new("TextButton")
6144
Borders = Instance.new("Frame")
6145
Border = Instance.new("ImageLabel")
6146
Border_2 = Instance.new("ImageLabel")
6147
Border_3 = Instance.new("ImageLabel")
6148
Border_4 = Instance.new("ImageLabel")
6149
Border_5 = Instance.new("ImageLabel")
6150
Border_6 = Instance.new("ImageLabel")
6151
Border_7 = Instance.new("ImageLabel")
6152
Border_8 = Instance.new("ImageLabel")
6153
CCmdsTitle = Instance.new("TextLabel")
6154
CTPLabel = Instance.new("TextLabel")
6155
CDstLabel = Instance.new("TextLabel")
6156
CDstSwitch = Instance.new("TextButton")
6157
Borders_2 = Instance.new("Frame")
6158
Border_9 = Instance.new("ImageLabel")
6159
Border_10 = Instance.new("ImageLabel")
6160
Border_11 = Instance.new("ImageLabel")
6161
Border_12 = Instance.new("ImageLabel")
6162
Border_13 = Instance.new("ImageLabel")
6163
Border_14 = Instance.new("ImageLabel")
6164
Border_15 = Instance.new("ImageLabel")
6165
Border_16 = Instance.new("ImageLabel")
6166
CTglLabel = Instance.new("TextLabel")
6167
CTglSwitch = Instance.new("TextButton")
6168
Borders_3 = Instance.new("Frame")
6169
Border_17 = Instance.new("ImageLabel")
6170
Border_18 = Instance.new("ImageLabel")
6171
Border_19 = Instance.new("ImageLabel")
6172
Border_20 = Instance.new("ImageLabel")
6173
Border_21 = Instance.new("ImageLabel")
6174
Border_22 = Instance.new("ImageLabel")
6175
Border_23 = Instance.new("ImageLabel")
6176
Border_24 = Instance.new("ImageLabel")
6177
CDbgLabel = Instance.new("TextLabel")
6178
CDbgSwitch = Instance.new("TextButton")
6179
Borders_4 = Instance.new("Frame")
6180
Border_25 = Instance.new("ImageLabel")
6181
Border_26 = Instance.new("ImageLabel")
6182
Border_27 = Instance.new("ImageLabel")
6183
Border_28 = Instance.new("ImageLabel")
6184
Border_29 = Instance.new("ImageLabel")
6185
Border_30 = Instance.new("ImageLabel")
6186
Border_31 = Instance.new("ImageLabel")
6187
Border_32 = Instance.new("ImageLabel")
6188
FlyingLabel = Instance.new("TextLabel")
6189
FlyingSwitch = Instance.new("TextButton")
6190
Borders_5 = Instance.new("Frame")
6191
Border_33 = Instance.new("ImageLabel")
6192
Border_34 = Instance.new("ImageLabel")
6193
Border_35 = Instance.new("ImageLabel")
6194
Border_36 = Instance.new("ImageLabel")
6195
Border_37 = Instance.new("ImageLabel")
6196
Border_38 = Instance.new("ImageLabel")
6197
Border_39 = Instance.new("ImageLabel")
6198
Border_40 = Instance.new("ImageLabel")
6199
CCmdsTitle_2 = Instance.new("TextLabel")
6200
CAimbotLabel = Instance.new("TextLabel")
6201
CAimbotSwitch = Instance.new("TextButton")
6202
Borders_6 = Instance.new("Frame")
6203
Border_41 = Instance.new("ImageLabel")
6204
Border_42 = Instance.new("ImageLabel")
6205
Border_43 = Instance.new("ImageLabel")
6206
Border_44 = Instance.new("ImageLabel")
6207
Border_45 = Instance.new("ImageLabel")
6208
Border_46 = Instance.new("ImageLabel")
6209
Border_47 = Instance.new("ImageLabel")
6210
Border_48 = Instance.new("ImageLabel")
6211
ChathookLabel = Instance.new("TextLabel")
6212
ChathookSwitch = Instance.new("TextButton")
6213
Borders_7 = Instance.new("Frame")
6214
Border_49 = Instance.new("ImageLabel")
6215
Border_50 = Instance.new("ImageLabel")
6216
Border_51 = Instance.new("ImageLabel")
6217
Border_52 = Instance.new("ImageLabel")
6218
Border_53 = Instance.new("ImageLabel")
6219
Border_54 = Instance.new("ImageLabel")
6220
Border_55 = Instance.new("ImageLabel")
6221
Border_56 = Instance.new("ImageLabel")
6222
Goto = Instance.new("TextButton")
6223
Borders_8 = Instance.new("Frame")
6224
Border_57 = Instance.new("ImageLabel")
6225
Border_58 = Instance.new("ImageLabel")
6226
Border_59 = Instance.new("ImageLabel")
6227
Border_60 = Instance.new("ImageLabel")
6228
Border_61 = Instance.new("ImageLabel")
6229
Border_62 = Instance.new("ImageLabel")
6230
Border_63 = Instance.new("ImageLabel")
6231
Border_64 = Instance.new("ImageLabel")
6232
6233
-- Properties
6234
6235
ExtrasFrame.Name = "ExtrasFrame"
6236
ExtrasFrame.BackgroundColor3 = Color3.new(1, 1, 1)
6237
ExtrasFrame.BackgroundTransparency = 1
6238
ExtrasFrame.BorderSizePixel = 0
6239
ExtrasFrame.Size = UDim2.new(1, 0, 1, 0)
6240
ExtrasFrame.Visible = false
6241
6242
CTpSwitch.Name = "CTpSwitch"
6243
CTpSwitch.Parent = ExtrasFrame
6244
CTpSwitch.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6245
CTpSwitch.BorderSizePixel = 0
6246
CTpSwitch.Position = UDim2.new(0.411089897, 0, 0.273809552, 0)
6247
CTpSwitch.Size = UDim2.new(0, 20, 0, 20)
6248
CTpSwitch.ZIndex = 120
6249
CTpSwitch.Font = Enum.Font.Highway
6250
CTpSwitch.Text = ""
6251
CTpSwitch.TextColor3 = Color3.new(1, 1, 1)
6252
CTpSwitch.TextScaled = true
6253
CTpSwitch.TextSize = 14
6254
CTpSwitch.TextWrapped = true
6255
6256
Borders.Name = "Borders"
6257
Borders.Parent = CTpSwitch
6258
Borders.BackgroundColor3 = Color3.new(1, 1, 1)
6259
Borders.BackgroundTransparency = 1
6260
Borders.BorderSizePixel = 0
6261
Borders.Size = UDim2.new(1, 0, 1, 0)
6262
Borders.ZIndex = 120
6263
6264
Border.Name = "Border"
6265
Border.Parent = Borders
6266
Border.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6267
Border.BackgroundTransparency = 1
6268
Border.BorderSizePixel = 0
6269
Border.Position = UDim2.new(0, -12, 0, -12)
6270
Border.Size = UDim2.new(0, 12, 0, 12)
6271
Border.ZIndex = 110
6272
Border.Image = "http://www.roblox.com/asset/?id=238725003"
6273
Border.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6274
Border.ImageRectSize = Vector2.new(12, 12)
6275
6276
Border_2.Name = "Border"
6277
Border_2.Parent = Borders
6278
Border_2.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6279
Border_2.BackgroundTransparency = 1
6280
Border_2.BorderSizePixel = 0
6281
Border_2.Position = UDim2.new(1, 0, 0, -12)
6282
Border_2.Size = UDim2.new(0, 12, 0, 12)
6283
Border_2.ZIndex = 110
6284
Border_2.Image = "http://www.roblox.com/asset/?id=238725003"
6285
Border_2.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6286
Border_2.ImageRectOffset = Vector2.new(24, 0)
6287
Border_2.ImageRectSize = Vector2.new(12, 12)
6288
6289
Border_3.Name = "Border"
6290
Border_3.Parent = Borders
6291
Border_3.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6292
Border_3.BackgroundTransparency = 1
6293
Border_3.BorderSizePixel = 0
6294
Border_3.Position = UDim2.new(0, -12, 1, 0)
6295
Border_3.Size = UDim2.new(0, 12, 0, 12)
6296
Border_3.ZIndex = 110
6297
Border_3.Image = "http://www.roblox.com/asset/?id=238725003"
6298
Border_3.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6299
Border_3.ImageRectOffset = Vector2.new(0, 24)
6300
Border_3.ImageRectSize = Vector2.new(12, 12)
6301
6302
Border_4.Name = "Border"
6303
Border_4.Parent = Borders
6304
Border_4.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6305
Border_4.BackgroundTransparency = 1
6306
Border_4.BorderSizePixel = 0
6307
Border_4.Position = UDim2.new(1, 0, 1, 0)
6308
Border_4.Size = UDim2.new(0, 12, 0, 12)
6309
Border_4.ZIndex = 110
6310
Border_4.Image = "http://www.roblox.com/asset/?id=238725003"
6311
Border_4.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6312
Border_4.ImageRectOffset = Vector2.new(24, 24)
6313
Border_4.ImageRectSize = Vector2.new(12, 12)
6314
6315
Border_5.Name = "Border"
6316
Border_5.Parent = Borders
6317
Border_5.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6318
Border_5.BackgroundTransparency = 1
6319
Border_5.BorderSizePixel = 0
6320
Border_5.Position = UDim2.new(0, 0, 1, 0)
6321
Border_5.Size = UDim2.new(1, 0, 0, 12)
6322
Border_5.ZIndex = 110
6323
Border_5.Image = "http://www.roblox.com/asset/?id=238725003"
6324
Border_5.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6325
Border_5.ImageRectOffset = Vector2.new(12, 24)
6326
Border_5.ImageRectSize = Vector2.new(12, 12)
6327
6328
Border_6.Name = "Border"
6329
Border_6.Parent = Borders
6330
Border_6.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6331
Border_6.BackgroundTransparency = 1
6332
Border_6.BorderSizePixel = 0
6333
Border_6.Position = UDim2.new(0, 0, 0, -12)
6334
Border_6.Size = UDim2.new(1, 0, 0, 12)
6335
Border_6.ZIndex = 110
6336
Border_6.Image = "http://www.roblox.com/asset/?id=238725003"
6337
Border_6.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6338
Border_6.ImageRectOffset = Vector2.new(12, 0)
6339
Border_6.ImageRectSize = Vector2.new(12, 12)
6340
6341
Border_7.Name = "Border"
6342
Border_7.Parent = Borders
6343
Border_7.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6344
Border_7.BackgroundTransparency = 1
6345
Border_7.BorderSizePixel = 0
6346
Border_7.Position = UDim2.new(0, -12, 0, 0)
6347
Border_7.Size = UDim2.new(0, 12, 1, 0)
6348
Border_7.ZIndex = 110
6349
Border_7.Image = "http://www.roblox.com/asset/?id=238725003"
6350
Border_7.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6351
Border_7.ImageRectOffset = Vector2.new(0, 12)
6352
Border_7.ImageRectSize = Vector2.new(12, 12)
6353
6354
Border_8.Name = "Border"
6355
Border_8.Parent = Borders
6356
Border_8.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6357
Border_8.BackgroundTransparency = 1
6358
Border_8.BorderSizePixel = 0
6359
Border_8.Position = UDim2.new(1, 0, 0, 0)
6360
Border_8.Size = UDim2.new(0, 12, 1, 0)
6361
Border_8.ZIndex = 110
6362
Border_8.Image = "http://www.roblox.com/asset/?id=238725003"
6363
Border_8.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6364
Border_8.ImageRectOffset = Vector2.new(24, 12)
6365
Border_8.ImageRectSize = Vector2.new(12, 12)
6366
6367
CCmdsTitle.Name = "CCmdsTitle"
6368
CCmdsTitle.Parent = ExtrasFrame
6369
CCmdsTitle.BackgroundColor3 = Color3.new(1, 1, 1)
6370
CCmdsTitle.BackgroundTransparency = 1
6371
CCmdsTitle.BorderSizePixel = 0
6372
CCmdsTitle.Position = UDim2.new(-0.00191204587, 0, 0, 0)
6373
CCmdsTitle.Size = UDim2.new(0.313575536, 0, 0.134920642, 0)
6374
CCmdsTitle.ZIndex = 120
6375
CCmdsTitle.Font = Enum.Font.Highway
6376
CCmdsTitle.Text = "Click Commands :"
6377
CCmdsTitle.TextColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6378
CCmdsTitle.TextScaled = true
6379
CCmdsTitle.TextSize = 14
6380
CCmdsTitle.TextWrapped = true
6381
CCmdsTitle.TextXAlignment = Enum.TextXAlignment.Left
6382
6383
CTPLabel.Name = "CTPLabel"
6384
CTPLabel.Parent = ExtrasFrame
6385
CTPLabel.BackgroundColor3 = Color3.new(1, 1, 1)
6386
CTPLabel.BackgroundTransparency = 1
6387
CTPLabel.BorderSizePixel = 0
6388
CTPLabel.Position = UDim2.new(-0.00191204587, 0, 0.244047612, 0)
6389
CTPLabel.Size = UDim2.new(0.313575536, 0, 0.134920642, 0)
6390
CTPLabel.ZIndex = 120
6391
CTPLabel.Font = Enum.Font.Highway
6392
CTPLabel.Text = "Click Teleport :"
6393
CTPLabel.TextColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6394
CTPLabel.TextScaled = true
6395
CTPLabel.TextSize = 14
6396
CTPLabel.TextWrapped = true
6397
CTPLabel.TextXAlignment = Enum.TextXAlignment.Left
6398
6399
CDstLabel.Name = "CDstLabel"
6400
CDstLabel.Parent = ExtrasFrame
6401
CDstLabel.BackgroundColor3 = Color3.new(1, 1, 1)
6402
CDstLabel.BackgroundTransparency = 1
6403
CDstLabel.BorderSizePixel = 0
6404
CDstLabel.Position = UDim2.new(-0.00191204587, 0, 0.430555552, 0)
6405
CDstLabel.Size = UDim2.new(0.313575536, 0, 0.134920642, 0)
6406
CDstLabel.ZIndex = 120
6407
CDstLabel.Font = Enum.Font.Highway
6408
CDstLabel.Text = "Click Destroy : "
6409
CDstLabel.TextColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6410
CDstLabel.TextScaled = true
6411
CDstLabel.TextSize = 14
6412
CDstLabel.TextWrapped = true
6413
CDstLabel.TextXAlignment = Enum.TextXAlignment.Left
6414
6415
CDstSwitch.Name = "CDstSwitch"
6416
CDstSwitch.Parent = ExtrasFrame
6417
CDstSwitch.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6418
CDstSwitch.BorderSizePixel = 0
6419
CDstSwitch.Position = UDim2.new(0.411089897, 0, 0.460317492, 0)
6420
CDstSwitch.Size = UDim2.new(0, 20, 0, 20)
6421
CDstSwitch.ZIndex = 120
6422
CDstSwitch.Font = Enum.Font.Highway
6423
CDstSwitch.Text = ""
6424
CDstSwitch.TextColor3 = Color3.new(1, 1, 1)
6425
CDstSwitch.TextScaled = true
6426
CDstSwitch.TextSize = 14
6427
CDstSwitch.TextWrapped = true
6428
6429
Borders_2.Name = "Borders"
6430
Borders_2.Parent = CDstSwitch
6431
Borders_2.BackgroundColor3 = Color3.new(1, 1, 1)
6432
Borders_2.BackgroundTransparency = 1
6433
Borders_2.BorderSizePixel = 0
6434
Borders_2.Size = UDim2.new(1, 0, 1, 0)
6435
Borders_2.ZIndex = 120
6436
6437
Border_9.Name = "Border"
6438
Border_9.Parent = Borders_2
6439
Border_9.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6440
Border_9.BackgroundTransparency = 1
6441
Border_9.BorderSizePixel = 0
6442
Border_9.Position = UDim2.new(0, -12, 0, -12)
6443
Border_9.Size = UDim2.new(0, 12, 0, 12)
6444
Border_9.ZIndex = 110
6445
Border_9.Image = "http://www.roblox.com/asset/?id=238725003"
6446
Border_9.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6447
Border_9.ImageRectSize = Vector2.new(12, 12)
6448
6449
Border_10.Name = "Border"
6450
Border_10.Parent = Borders_2
6451
Border_10.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6452
Border_10.BackgroundTransparency = 1
6453
Border_10.BorderSizePixel = 0
6454
Border_10.Position = UDim2.new(1, 0, 0, -12)
6455
Border_10.Size = UDim2.new(0, 12, 0, 12)
6456
Border_10.ZIndex = 110
6457
Border_10.Image = "http://www.roblox.com/asset/?id=238725003"
6458
Border_10.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6459
Border_10.ImageRectOffset = Vector2.new(24, 0)
6460
Border_10.ImageRectSize = Vector2.new(12, 12)
6461
6462
Border_11.Name = "Border"
6463
Border_11.Parent = Borders_2
6464
Border_11.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6465
Border_11.BackgroundTransparency = 1
6466
Border_11.BorderSizePixel = 0
6467
Border_11.Position = UDim2.new(0, -12, 1, 0)
6468
Border_11.Size = UDim2.new(0, 12, 0, 12)
6469
Border_11.ZIndex = 110
6470
Border_11.Image = "http://www.roblox.com/asset/?id=238725003"
6471
Border_11.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6472
Border_11.ImageRectOffset = Vector2.new(0, 24)
6473
Border_11.ImageRectSize = Vector2.new(12, 12)
6474
6475
Border_12.Name = "Border"
6476
Border_12.Parent = Borders_2
6477
Border_12.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6478
Border_12.BackgroundTransparency = 1
6479
Border_12.BorderSizePixel = 0
6480
Border_12.Position = UDim2.new(1, 0, 1, 0)
6481
Border_12.Size = UDim2.new(0, 12, 0, 12)
6482
Border_12.ZIndex = 110
6483
Border_12.Image = "http://www.roblox.com/asset/?id=238725003"
6484
Border_12.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6485
Border_12.ImageRectOffset = Vector2.new(24, 24)
6486
Border_12.ImageRectSize = Vector2.new(12, 12)
6487
6488
Border_13.Name = "Border"
6489
Border_13.Parent = Borders_2
6490
Border_13.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6491
Border_13.BackgroundTransparency = 1
6492
Border_13.BorderSizePixel = 0
6493
Border_13.Position = UDim2.new(0, 0, 1, 0)
6494
Border_13.Size = UDim2.new(1, 0, 0, 12)
6495
Border_13.ZIndex = 110
6496
Border_13.Image = "http://www.roblox.com/asset/?id=238725003"
6497
Border_13.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6498
Border_13.ImageRectOffset = Vector2.new(12, 24)
6499
Border_13.ImageRectSize = Vector2.new(12, 12)
6500
6501
Border_14.Name = "Border"
6502
Border_14.Parent = Borders_2
6503
Border_14.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6504
Border_14.BackgroundTransparency = 1
6505
Border_14.BorderSizePixel = 0
6506
Border_14.Position = UDim2.new(0, 0, 0, -12)
6507
Border_14.Size = UDim2.new(1, 0, 0, 12)
6508
Border_14.ZIndex = 110
6509
Border_14.Image = "http://www.roblox.com/asset/?id=238725003"
6510
Border_14.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6511
Border_14.ImageRectOffset = Vector2.new(12, 0)
6512
Border_14.ImageRectSize = Vector2.new(12, 12)
6513
6514
Border_15.Name = "Border"
6515
Border_15.Parent = Borders_2
6516
Border_15.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6517
Border_15.BackgroundTransparency = 1
6518
Border_15.BorderSizePixel = 0
6519
Border_15.Position = UDim2.new(0, -12, 0, 0)
6520
Border_15.Size = UDim2.new(0, 12, 1, 0)
6521
Border_15.ZIndex = 110
6522
Border_15.Image = "http://www.roblox.com/asset/?id=238725003"
6523
Border_15.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6524
Border_15.ImageRectOffset = Vector2.new(0, 12)
6525
Border_15.ImageRectSize = Vector2.new(12, 12)
6526
6527
Border_16.Name = "Border"
6528
Border_16.Parent = Borders_2
6529
Border_16.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6530
Border_16.BackgroundTransparency = 1
6531
Border_16.BorderSizePixel = 0
6532
Border_16.Position = UDim2.new(1, 0, 0, 0)
6533
Border_16.Size = UDim2.new(0, 12, 1, 0)
6534
Border_16.ZIndex = 110
6535
Border_16.Image = "http://www.roblox.com/asset/?id=238725003"
6536
Border_16.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6537
Border_16.ImageRectOffset = Vector2.new(24, 12)
6538
Border_16.ImageRectSize = Vector2.new(12, 12)
6539
6540
CTglLabel.Name = "CTglLabel"
6541
CTglLabel.Parent = ExtrasFrame
6542
CTglLabel.BackgroundColor3 = Color3.new(1, 1, 1)
6543
CTglLabel.BackgroundTransparency = 1
6544
CTglLabel.BorderSizePixel = 0
6545
CTglLabel.Position = UDim2.new(-0.00191204587, 0, 0.628968239, 0)
6546
CTglLabel.Size = UDim2.new(0.313575536, 0, 0.134920642, 0)
6547
CTglLabel.ZIndex = 120
6548
CTglLabel.Font = Enum.Font.Highway
6549
CTglLabel.Text = "Click Toggle/Untoggle : "
6550
CTglLabel.TextColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6551
CTglLabel.TextScaled = true
6552
CTglLabel.TextSize = 14
6553
CTglLabel.TextWrapped = true
6554
CTglLabel.TextXAlignment = Enum.TextXAlignment.Left
6555
6556
CTglSwitch.Name = "CTglSwitch"
6557
CTglSwitch.Parent = ExtrasFrame
6558
CTglSwitch.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6559
CTglSwitch.BorderSizePixel = 0
6560
CTglSwitch.Position = UDim2.new(0.411089897, 0, 0.658730209, 0)
6561
CTglSwitch.Size = UDim2.new(0, 20, 0, 20)
6562
CTglSwitch.ZIndex = 120
6563
CTglSwitch.Font = Enum.Font.Highway
6564
CTglSwitch.Text = ""
6565
CTglSwitch.TextColor3 = Color3.new(1, 1, 1)
6566
CTglSwitch.TextScaled = true
6567
CTglSwitch.TextSize = 14
6568
CTglSwitch.TextWrapped = true
6569
6570
Borders_3.Name = "Borders"
6571
Borders_3.Parent = CTglSwitch
6572
Borders_3.BackgroundColor3 = Color3.new(1, 1, 1)
6573
Borders_3.BackgroundTransparency = 1
6574
Borders_3.BorderSizePixel = 0
6575
Borders_3.Size = UDim2.new(1, 0, 1, 0)
6576
Borders_3.ZIndex = 120
6577
6578
Border_17.Name = "Border"
6579
Border_17.Parent = Borders_3
6580
Border_17.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6581
Border_17.BackgroundTransparency = 1
6582
Border_17.BorderSizePixel = 0
6583
Border_17.Position = UDim2.new(0, -12, 0, -12)
6584
Border_17.Size = UDim2.new(0, 12, 0, 12)
6585
Border_17.ZIndex = 110
6586
Border_17.Image = "http://www.roblox.com/asset/?id=238725003"
6587
Border_17.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6588
Border_17.ImageRectSize = Vector2.new(12, 12)
6589
6590
Border_18.Name = "Border"
6591
Border_18.Parent = Borders_3
6592
Border_18.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6593
Border_18.BackgroundTransparency = 1
6594
Border_18.BorderSizePixel = 0
6595
Border_18.Position = UDim2.new(1, 0, 0, -12)
6596
Border_18.Size = UDim2.new(0, 12, 0, 12)
6597
Border_18.ZIndex = 110
6598
Border_18.Image = "http://www.roblox.com/asset/?id=238725003"
6599
Border_18.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6600
Border_18.ImageRectOffset = Vector2.new(24, 0)
6601
Border_18.ImageRectSize = Vector2.new(12, 12)
6602
6603
Border_19.Name = "Border"
6604
Border_19.Parent = Borders_3
6605
Border_19.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6606
Border_19.BackgroundTransparency = 1
6607
Border_19.BorderSizePixel = 0
6608
Border_19.Position = UDim2.new(0, -12, 1, 0)
6609
Border_19.Size = UDim2.new(0, 12, 0, 12)
6610
Border_19.ZIndex = 110
6611
Border_19.Image = "http://www.roblox.com/asset/?id=238725003"
6612
Border_19.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6613
Border_19.ImageRectOffset = Vector2.new(0, 24)
6614
Border_19.ImageRectSize = Vector2.new(12, 12)
6615
6616
Border_20.Name = "Border"
6617
Border_20.Parent = Borders_3
6618
Border_20.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6619
Border_20.BackgroundTransparency = 1
6620
Border_20.BorderSizePixel = 0
6621
Border_20.Position = UDim2.new(1, 0, 1, 0)
6622
Border_20.Size = UDim2.new(0, 12, 0, 12)
6623
Border_20.ZIndex = 110
6624
Border_20.Image = "http://www.roblox.com/asset/?id=238725003"
6625
Border_20.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6626
Border_20.ImageRectOffset = Vector2.new(24, 24)
6627
Border_20.ImageRectSize = Vector2.new(12, 12)
6628
6629
Border_21.Name = "Border"
6630
Border_21.Parent = Borders_3
6631
Border_21.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6632
Border_21.BackgroundTransparency = 1
6633
Border_21.BorderSizePixel = 0
6634
Border_21.Position = UDim2.new(0, 0, 1, 0)
6635
Border_21.Size = UDim2.new(1, 0, 0, 12)
6636
Border_21.ZIndex = 110
6637
Border_21.Image = "http://www.roblox.com/asset/?id=238725003"
6638
Border_21.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6639
Border_21.ImageRectOffset = Vector2.new(12, 24)
6640
Border_21.ImageRectSize = Vector2.new(12, 12)
6641
6642
Border_22.Name = "Border"
6643
Border_22.Parent = Borders_3
6644
Border_22.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6645
Border_22.BackgroundTransparency = 1
6646
Border_22.BorderSizePixel = 0
6647
Border_22.Position = UDim2.new(0, 0, 0, -12)
6648
Border_22.Size = UDim2.new(1, 0, 0, 12)
6649
Border_22.ZIndex = 110
6650
Border_22.Image = "http://www.roblox.com/asset/?id=238725003"
6651
Border_22.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6652
Border_22.ImageRectOffset = Vector2.new(12, 0)
6653
Border_22.ImageRectSize = Vector2.new(12, 12)
6654
6655
Border_23.Name = "Border"
6656
Border_23.Parent = Borders_3
6657
Border_23.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6658
Border_23.BackgroundTransparency = 1
6659
Border_23.BorderSizePixel = 0
6660
Border_23.Position = UDim2.new(0, -12, 0, 0)
6661
Border_23.Size = UDim2.new(0, 12, 1, 0)
6662
Border_23.ZIndex = 110
6663
Border_23.Image = "http://www.roblox.com/asset/?id=238725003"
6664
Border_23.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6665
Border_23.ImageRectOffset = Vector2.new(0, 12)
6666
Border_23.ImageRectSize = Vector2.new(12, 12)
6667
6668
Border_24.Name = "Border"
6669
Border_24.Parent = Borders_3
6670
Border_24.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6671
Border_24.BackgroundTransparency = 1
6672
Border_24.BorderSizePixel = 0
6673
Border_24.Position = UDim2.new(1, 0, 0, 0)
6674
Border_24.Size = UDim2.new(0, 12, 1, 0)
6675
Border_24.ZIndex = 110
6676
Border_24.Image = "http://www.roblox.com/asset/?id=238725003"
6677
Border_24.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6678
Border_24.ImageRectOffset = Vector2.new(24, 12)
6679
Border_24.ImageRectSize = Vector2.new(12, 12)
6680
6681
CDbgLabel.Name = "CDbgLabel"
6682
CDbgLabel.Parent = ExtrasFrame
6683
CDbgLabel.BackgroundColor3 = Color3.new(1, 1, 1)
6684
CDbgLabel.BackgroundTransparency = 1
6685
CDbgLabel.BorderSizePixel = 0
6686
CDbgLabel.Position = UDim2.new(-0.00191204587, 0, 0.823412657, 0)
6687
CDbgLabel.Size = UDim2.new(0.313575536, 0, 0.134920642, 0)
6688
CDbgLabel.ZIndex = 120
6689
CDbgLabel.Font = Enum.Font.Highway
6690
CDbgLabel.Text = "Click Debug : "
6691
CDbgLabel.TextColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6692
CDbgLabel.TextScaled = true
6693
CDbgLabel.TextSize = 14
6694
CDbgLabel.TextWrapped = true
6695
CDbgLabel.TextXAlignment = Enum.TextXAlignment.Left
6696
6697
CDbgSwitch.Name = "CDbgSwitch"
6698
CDbgSwitch.Parent = ExtrasFrame
6699
CDbgSwitch.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6700
CDbgSwitch.BorderSizePixel = 0
6701
CDbgSwitch.Position = UDim2.new(0.411089897, 0, 0.853174686, 0)
6702
CDbgSwitch.Size = UDim2.new(0, 20, 0, 20)
6703
CDbgSwitch.ZIndex = 120
6704
CDbgSwitch.Font = Enum.Font.Highway
6705
CDbgSwitch.Text = ""
6706
CDbgSwitch.TextColor3 = Color3.new(1, 1, 1)
6707
CDbgSwitch.TextScaled = true
6708
CDbgSwitch.TextSize = 14
6709
CDbgSwitch.TextWrapped = true
6710
6711
Borders_4.Name = "Borders"
6712
Borders_4.Parent = CDbgSwitch
6713
Borders_4.BackgroundColor3 = Color3.new(1, 1, 1)
6714
Borders_4.BackgroundTransparency = 1
6715
Borders_4.BorderSizePixel = 0
6716
Borders_4.Size = UDim2.new(1, 0, 1, 0)
6717
Borders_4.ZIndex = 120
6718
6719
Border_25.Name = "Border"
6720
Border_25.Parent = Borders_4
6721
Border_25.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6722
Border_25.BackgroundTransparency = 1
6723
Border_25.BorderSizePixel = 0
6724
Border_25.Position = UDim2.new(0, -12, 0, -12)
6725
Border_25.Size = UDim2.new(0, 12, 0, 12)
6726
Border_25.ZIndex = 110
6727
Border_25.Image = "http://www.roblox.com/asset/?id=238725003"
6728
Border_25.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6729
Border_25.ImageRectSize = Vector2.new(12, 12)
6730
6731
Border_26.Name = "Border"
6732
Border_26.Parent = Borders_4
6733
Border_26.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6734
Border_26.BackgroundTransparency = 1
6735
Border_26.BorderSizePixel = 0
6736
Border_26.Position = UDim2.new(1, 0, 0, -12)
6737
Border_26.Size = UDim2.new(0, 12, 0, 12)
6738
Border_26.ZIndex = 110
6739
Border_26.Image = "http://www.roblox.com/asset/?id=238725003"
6740
Border_26.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6741
Border_26.ImageRectOffset = Vector2.new(24, 0)
6742
Border_26.ImageRectSize = Vector2.new(12, 12)
6743
6744
Border_27.Name = "Border"
6745
Border_27.Parent = Borders_4
6746
Border_27.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6747
Border_27.BackgroundTransparency = 1
6748
Border_27.BorderSizePixel = 0
6749
Border_27.Position = UDim2.new(0, -12, 1, 0)
6750
Border_27.Size = UDim2.new(0, 12, 0, 12)
6751
Border_27.ZIndex = 110
6752
Border_27.Image = "http://www.roblox.com/asset/?id=238725003"
6753
Border_27.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6754
Border_27.ImageRectOffset = Vector2.new(0, 24)
6755
Border_27.ImageRectSize = Vector2.new(12, 12)
6756
6757
Border_28.Name = "Border"
6758
Border_28.Parent = Borders_4
6759
Border_28.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6760
Border_28.BackgroundTransparency = 1
6761
Border_28.BorderSizePixel = 0
6762
Border_28.Position = UDim2.new(1, 0, 1, 0)
6763
Border_28.Size = UDim2.new(0, 12, 0, 12)
6764
Border_28.ZIndex = 110
6765
Border_28.Image = "http://www.roblox.com/asset/?id=238725003"
6766
Border_28.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6767
Border_28.ImageRectOffset = Vector2.new(24, 24)
6768
Border_28.ImageRectSize = Vector2.new(12, 12)
6769
6770
Border_29.Name = "Border"
6771
Border_29.Parent = Borders_4
6772
Border_29.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6773
Border_29.BackgroundTransparency = 1
6774
Border_29.BorderSizePixel = 0
6775
Border_29.Position = UDim2.new(0, 0, 1, 0)
6776
Border_29.Size = UDim2.new(1, 0, 0, 12)
6777
Border_29.ZIndex = 110
6778
Border_29.Image = "http://www.roblox.com/asset/?id=238725003"
6779
Border_29.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6780
Border_29.ImageRectOffset = Vector2.new(12, 24)
6781
Border_29.ImageRectSize = Vector2.new(12, 12)
6782
6783
Border_30.Name = "Border"
6784
Border_30.Parent = Borders_4
6785
Border_30.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6786
Border_30.BackgroundTransparency = 1
6787
Border_30.BorderSizePixel = 0
6788
Border_30.Position = UDim2.new(0, 0, 0, -12)
6789
Border_30.Size = UDim2.new(1, 0, 0, 12)
6790
Border_30.ZIndex = 110
6791
Border_30.Image = "http://www.roblox.com/asset/?id=238725003"
6792
Border_30.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6793
Border_30.ImageRectOffset = Vector2.new(12, 0)
6794
Border_30.ImageRectSize = Vector2.new(12, 12)
6795
6796
Border_31.Name = "Border"
6797
Border_31.Parent = Borders_4
6798
Border_31.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6799
Border_31.BackgroundTransparency = 1
6800
Border_31.BorderSizePixel = 0
6801
Border_31.Position = UDim2.new(0, -12, 0, 0)
6802
Border_31.Size = UDim2.new(0, 12, 1, 0)
6803
Border_31.ZIndex = 110
6804
Border_31.Image = "http://www.roblox.com/asset/?id=238725003"
6805
Border_31.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6806
Border_31.ImageRectOffset = Vector2.new(0, 12)
6807
Border_31.ImageRectSize = Vector2.new(12, 12)
6808
6809
Border_32.Name = "Border"
6810
Border_32.Parent = Borders_4
6811
Border_32.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6812
Border_32.BackgroundTransparency = 1
6813
Border_32.BorderSizePixel = 0
6814
Border_32.Position = UDim2.new(1, 0, 0, 0)
6815
Border_32.Size = UDim2.new(0, 12, 1, 0)
6816
Border_32.ZIndex = 110
6817
Border_32.Image = "http://www.roblox.com/asset/?id=238725003"
6818
Border_32.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6819
Border_32.ImageRectOffset = Vector2.new(24, 12)
6820
Border_32.ImageRectSize = Vector2.new(12, 12)
6821
6822
FlyingLabel.Name = "FlyingLabel"
6823
FlyingLabel.Parent = ExtrasFrame
6824
FlyingLabel.BackgroundColor3 = Color3.new(1, 1, 1)
6825
FlyingLabel.BackgroundTransparency = 1
6826
FlyingLabel.BorderSizePixel = 0
6827
FlyingLabel.Position = UDim2.new(0.510516226, 0, 0.244047582, 0)
6828
FlyingLabel.Size = UDim2.new(0.313575536, 0, 0.134920642, 0)
6829
FlyingLabel.ZIndex = 120
6830
FlyingLabel.Font = Enum.Font.Highway
6831
FlyingLabel.Text = "Flying :"
6832
FlyingLabel.TextColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6833
FlyingLabel.TextScaled = true
6834
FlyingLabel.TextSize = 14
6835
FlyingLabel.TextWrapped = true
6836
FlyingLabel.TextXAlignment = Enum.TextXAlignment.Left
6837
6838
FlyingSwitch.Name = "FlyingSwitch"
6839
FlyingSwitch.Parent = ExtrasFrame
6840
FlyingSwitch.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6841
FlyingSwitch.BorderSizePixel = 0
6842
FlyingSwitch.Position = UDim2.new(0.923518181, 0, 0.273809612, 0)
6843
FlyingSwitch.Size = UDim2.new(0, 20, 0, 20)
6844
FlyingSwitch.ZIndex = 120
6845
FlyingSwitch.Font = Enum.Font.Highway
6846
FlyingSwitch.Text = ""
6847
FlyingSwitch.TextColor3 = Color3.new(1, 1, 1)
6848
FlyingSwitch.TextScaled = true
6849
FlyingSwitch.TextSize = 14
6850
FlyingSwitch.TextWrapped = true
6851
6852
Borders_5.Name = "Borders"
6853
Borders_5.Parent = FlyingSwitch
6854
Borders_5.BackgroundColor3 = Color3.new(1, 1, 1)
6855
Borders_5.BackgroundTransparency = 1
6856
Borders_5.BorderSizePixel = 0
6857
Borders_5.Size = UDim2.new(1, 0, 1, 0)
6858
Borders_5.ZIndex = 120
6859
6860
Border_33.Name = "Border"
6861
Border_33.Parent = Borders_5
6862
Border_33.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6863
Border_33.BackgroundTransparency = 1
6864
Border_33.BorderSizePixel = 0
6865
Border_33.Position = UDim2.new(0, -12, 0, -12)
6866
Border_33.Size = UDim2.new(0, 12, 0, 12)
6867
Border_33.ZIndex = 110
6868
Border_33.Image = "http://www.roblox.com/asset/?id=238725003"
6869
Border_33.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6870
Border_33.ImageRectSize = Vector2.new(12, 12)
6871
6872
Border_34.Name = "Border"
6873
Border_34.Parent = Borders_5
6874
Border_34.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6875
Border_34.BackgroundTransparency = 1
6876
Border_34.BorderSizePixel = 0
6877
Border_34.Position = UDim2.new(1, 0, 0, -12)
6878
Border_34.Size = UDim2.new(0, 12, 0, 12)
6879
Border_34.ZIndex = 110
6880
Border_34.Image = "http://www.roblox.com/asset/?id=238725003"
6881
Border_34.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6882
Border_34.ImageRectOffset = Vector2.new(24, 0)
6883
Border_34.ImageRectSize = Vector2.new(12, 12)
6884
6885
Border_35.Name = "Border"
6886
Border_35.Parent = Borders_5
6887
Border_35.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6888
Border_35.BackgroundTransparency = 1
6889
Border_35.BorderSizePixel = 0
6890
Border_35.Position = UDim2.new(0, -12, 1, 0)
6891
Border_35.Size = UDim2.new(0, 12, 0, 12)
6892
Border_35.ZIndex = 110
6893
Border_35.Image = "http://www.roblox.com/asset/?id=238725003"
6894
Border_35.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6895
Border_35.ImageRectOffset = Vector2.new(0, 24)
6896
Border_35.ImageRectSize = Vector2.new(12, 12)
6897
6898
Border_36.Name = "Border"
6899
Border_36.Parent = Borders_5
6900
Border_36.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6901
Border_36.BackgroundTransparency = 1
6902
Border_36.BorderSizePixel = 0
6903
Border_36.Position = UDim2.new(1, 0, 1, 0)
6904
Border_36.Size = UDim2.new(0, 12, 0, 12)
6905
Border_36.ZIndex = 110
6906
Border_36.Image = "http://www.roblox.com/asset/?id=238725003"
6907
Border_36.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6908
Border_36.ImageRectOffset = Vector2.new(24, 24)
6909
Border_36.ImageRectSize = Vector2.new(12, 12)
6910
6911
Border_37.Name = "Border"
6912
Border_37.Parent = Borders_5
6913
Border_37.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6914
Border_37.BackgroundTransparency = 1
6915
Border_37.BorderSizePixel = 0
6916
Border_37.Position = UDim2.new(0, 0, 1, 0)
6917
Border_37.Size = UDim2.new(1, 0, 0, 12)
6918
Border_37.ZIndex = 110
6919
Border_37.Image = "http://www.roblox.com/asset/?id=238725003"
6920
Border_37.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6921
Border_37.ImageRectOffset = Vector2.new(12, 24)
6922
Border_37.ImageRectSize = Vector2.new(12, 12)
6923
6924
Border_38.Name = "Border"
6925
Border_38.Parent = Borders_5
6926
Border_38.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6927
Border_38.BackgroundTransparency = 1
6928
Border_38.BorderSizePixel = 0
6929
Border_38.Position = UDim2.new(0, 0, 0, -12)
6930
Border_38.Size = UDim2.new(1, 0, 0, 12)
6931
Border_38.ZIndex = 110
6932
Border_38.Image = "http://www.roblox.com/asset/?id=238725003"
6933
Border_38.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6934
Border_38.ImageRectOffset = Vector2.new(12, 0)
6935
Border_38.ImageRectSize = Vector2.new(12, 12)
6936
6937
Border_39.Name = "Border"
6938
Border_39.Parent = Borders_5
6939
Border_39.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6940
Border_39.BackgroundTransparency = 1
6941
Border_39.BorderSizePixel = 0
6942
Border_39.Position = UDim2.new(0, -12, 0, 0)
6943
Border_39.Size = UDim2.new(0, 12, 1, 0)
6944
Border_39.ZIndex = 110
6945
Border_39.Image = "http://www.roblox.com/asset/?id=238725003"
6946
Border_39.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6947
Border_39.ImageRectOffset = Vector2.new(0, 12)
6948
Border_39.ImageRectSize = Vector2.new(12, 12)
6949
6950
Border_40.Name = "Border"
6951
Border_40.Parent = Borders_5
6952
Border_40.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6953
Border_40.BackgroundTransparency = 1
6954
Border_40.BorderSizePixel = 0
6955
Border_40.Position = UDim2.new(1, 0, 0, 0)
6956
Border_40.Size = UDim2.new(0, 12, 1, 0)
6957
Border_40.ZIndex = 110
6958
Border_40.Image = "http://www.roblox.com/asset/?id=238725003"
6959
Border_40.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6960
Border_40.ImageRectOffset = Vector2.new(24, 12)
6961
Border_40.ImageRectSize = Vector2.new(12, 12)
6962
6963
CCmdsTitle_2.Name = "CCmdsTitle"
6964
CCmdsTitle_2.Parent = ExtrasFrame
6965
CCmdsTitle_2.BackgroundColor3 = Color3.new(1, 1, 1)
6966
CCmdsTitle_2.BackgroundTransparency = 1
6967
CCmdsTitle_2.BorderSizePixel = 0
6968
CCmdsTitle_2.Position = UDim2.new(0.510516226, 0, 0, 0)
6969
CCmdsTitle_2.Size = UDim2.new(0.313575536, 0, 0.134920642, 0)
6970
CCmdsTitle_2.ZIndex = 120
6971
CCmdsTitle_2.Font = Enum.Font.Highway
6972
CCmdsTitle_2.Text = "Switches : "
6973
CCmdsTitle_2.TextColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6974
CCmdsTitle_2.TextScaled = true
6975
CCmdsTitle_2.TextSize = 14
6976
CCmdsTitle_2.TextWrapped = true
6977
CCmdsTitle_2.TextXAlignment = Enum.TextXAlignment.Left
6978
6979
CAimbotLabel.Name = "CAimbotLabel"
6980
CAimbotLabel.Parent = ExtrasFrame
6981
CAimbotLabel.BackgroundColor3 = Color3.new(1, 1, 1)
6982
CAimbotLabel.BackgroundTransparency = 1
6983
CAimbotLabel.BorderSizePixel = 0
6984
CAimbotLabel.Position = UDim2.new(0.510516226, 0, 0.430555522, 0)
6985
CAimbotLabel.Size = UDim2.new(0.313575536, 0, 0.134920642, 0)
6986
CAimbotLabel.ZIndex = 120
6987
CAimbotLabel.Font = Enum.Font.Highway
6988
CAimbotLabel.Text = "Coins Aimbot : "
6989
CAimbotLabel.TextColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6990
CAimbotLabel.TextScaled = true
6991
CAimbotLabel.TextSize = 14
6992
CAimbotLabel.TextWrapped = true
6993
CAimbotLabel.TextXAlignment = Enum.TextXAlignment.Left
6994
6995
CAimbotSwitch.Name = "CAimbotSwitch"
6996
CAimbotSwitch.Parent = ExtrasFrame
6997
CAimbotSwitch.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
6998
CAimbotSwitch.BorderSizePixel = 0
6999
CAimbotSwitch.Position = UDim2.new(0.923518181, 0, 0.460317552, 0)
7000
CAimbotSwitch.Size = UDim2.new(0, 20, 0, 20)
7001
CAimbotSwitch.ZIndex = 120
7002
CAimbotSwitch.Font = Enum.Font.Highway
7003
CAimbotSwitch.Text = ""
7004
CAimbotSwitch.TextColor3 = Color3.new(1, 1, 1)
7005
CAimbotSwitch.TextScaled = true
7006
CAimbotSwitch.TextSize = 14
7007
CAimbotSwitch.TextWrapped = true
7008
7009
Borders_6.Name = "Borders"
7010
Borders_6.Parent = CAimbotSwitch
7011
Borders_6.BackgroundColor3 = Color3.new(1, 1, 1)
7012
Borders_6.BackgroundTransparency = 1
7013
Borders_6.BorderSizePixel = 0
7014
Borders_6.Size = UDim2.new(1, 0, 1, 0)
7015
Borders_6.ZIndex = 120
7016
7017
Border_41.Name = "Border"
7018
Border_41.Parent = Borders_6
7019
Border_41.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
7020
Border_41.BackgroundTransparency = 1
7021
Border_41.BorderSizePixel = 0
7022
Border_41.Position = UDim2.new(0, -12, 0, -12)
7023
Border_41.Size = UDim2.new(0, 12, 0, 12)
7024
Border_41.ZIndex = 110
7025
Border_41.Image = "http://www.roblox.com/asset/?id=238725003"
7026
Border_41.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
7027
Border_41.ImageRectSize = Vector2.new(12, 12)
7028
7029
Border_42.Name = "Border"
7030
Border_42.Parent = Borders_6
7031
Border_42.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
7032
Border_42.BackgroundTransparency = 1
7033
Border_42.BorderSizePixel = 0
7034
Border_42.Position = UDim2.new(1, 0, 0, -12)
7035
Border_42.Size = UDim2.new(0, 12, 0, 12)
7036
Border_42.ZIndex = 110
7037
Border_42.Image = "http://www.roblox.com/asset/?id=238725003"
7038
Border_42.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
7039
Border_42.ImageRectOffset = Vector2.new(24, 0)
7040
Border_42.ImageRectSize = Vector2.new(12, 12)
7041
7042
Border_43.Name = "Border"
7043
Border_43.Parent = Borders_6
7044
Border_43.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
7045
Border_43.BackgroundTransparency = 1
7046
Border_43.BorderSizePixel = 0
7047
Border_43.Position = UDim2.new(0, -12, 1, 0)
7048
Border_43.Size = UDim2.new(0, 12, 0, 12)
7049
Border_43.ZIndex = 110
7050
Border_43.Image = "http://www.roblox.com/asset/?id=238725003"
7051
Border_43.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
7052
Border_43.ImageRectOffset = Vector2.new(0, 24)
7053
Border_43.ImageRectSize = Vector2.new(12, 12)
7054
7055
Border_44.Name = "Border"
7056
Border_44.Parent = Borders_6
7057
Border_44.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
7058
Border_44.BackgroundTransparency = 1
7059
Border_44.BorderSizePixel = 0
7060
Border_44.Position = UDim2.new(1, 0, 1, 0)
7061
Border_44.Size = UDim2.new(0, 12, 0, 12)
7062
Border_44.ZIndex = 110
7063
Border_44.Image = "http://www.roblox.com/asset/?id=238725003"
7064
Border_44.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
7065
Border_44.ImageRectOffset = Vector2.new(24, 24)
7066
Border_44.ImageRectSize = Vector2.new(12, 12)
7067
7068
Border_45.Name = "Border"
7069
Border_45.Parent = Borders_6
7070
Border_45.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
7071
Border_45.BackgroundTransparency = 1
7072
Border_45.BorderSizePixel = 0
7073
Border_45.Position = UDim2.new(0, 0, 1, 0)
7074
Border_45.Size = UDim2.new(1, 0, 0, 12)
7075
Border_45.ZIndex = 110
7076
Border_45.Image = "http://www.roblox.com/asset/?id=238725003"
7077
Border_45.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
7078
Border_45.ImageRectOffset = Vector2.new(12, 24)
7079
Border_45.ImageRectSize = Vector2.new(12, 12)
7080
7081
Border_46.Name = "Border"
7082
Border_46.Parent = Borders_6
7083
Border_46.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
7084
Border_46.BackgroundTransparency = 1
7085
Border_46.BorderSizePixel = 0
7086
Border_46.Position = UDim2.new(0, 0, 0, -12)
7087
Border_46.Size = UDim2.new(1, 0, 0, 12)
7088
Border_46.ZIndex = 110
7089
Border_46.Image = "http://www.roblox.com/asset/?id=238725003"
7090
Border_46.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
7091
Border_46.ImageRectOffset = Vector2.new(12, 0)
7092
Border_46.ImageRectSize = Vector2.new(12, 12)
7093
7094
Border_47.Name = "Border"
7095
Border_47.Parent = Borders_6
7096
Border_47.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
7097
Border_47.BackgroundTransparency = 1
7098
Border_47.BorderSizePixel = 0
7099
Border_47.Position = UDim2.new(0, -12, 0, 0)
7100
Border_47.Size = UDim2.new(0, 12, 1, 0)
7101
Border_47.ZIndex = 110
7102
Border_47.Image = "http://www.roblox.com/asset/?id=238725003"
7103
Border_47.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
7104
Border_47.ImageRectOffset = Vector2.new(0, 12)
7105
Border_47.ImageRectSize = Vector2.new(12, 12)
7106
7107
Border_48.Name = "Border"
7108
Border_48.Parent = Borders_6
7109
Border_48.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
7110
Border_48.BackgroundTransparency = 1
7111
Border_48.BorderSizePixel = 0
7112
Border_48.Position = UDim2.new(1, 0, 0, 0)
7113
Border_48.Size = UDim2.new(0, 12, 1, 0)
7114
Border_48.ZIndex = 110
7115
Border_48.Image = "http://www.roblox.com/asset/?id=238725003"
7116
Border_48.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
7117
Border_48.ImageRectOffset = Vector2.new(24, 12)
7118
Border_48.ImageRectSize = Vector2.new(12, 12)
7119
7120
ChathookLabel.Name = "ChathookLabel"
7121
ChathookLabel.Parent = ExtrasFrame
7122
ChathookLabel.BackgroundColor3 = Color3.new(1, 1, 1)
7123
ChathookLabel.BackgroundTransparency = 1
7124
ChathookLabel.BorderSizePixel = 0
7125
ChathookLabel.Position = UDim2.new(0.510516226, 0, 0.628968239, 0)
7126
ChathookLabel.Size = UDim2.new(0.313575536, 0, 0.134920642, 0)
7127
ChathookLabel.ZIndex = 120
7128
ChathookLabel.Font = Enum.Font.Highway
7129
ChathookLabel.Text = "Chathook : "
7130
ChathookLabel.TextColor3 = Color3.new(0.784314, 0.784314, 0.784314)
7131
ChathookLabel.TextScaled = true
7132
ChathookLabel.TextSize = 14
7133
ChathookLabel.TextWrapped = true
7134
ChathookLabel.TextXAlignment = Enum.TextXAlignment.Left
7135
7136
ChathookSwitch.Name = "ChathookSwitch"
7137
ChathookSwitch.Parent = ExtrasFrame
7138
ChathookSwitch.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
7139
ChathookSwitch.BorderSizePixel = 0
7140
ChathookSwitch.Position = UDim2.new(0.923518181, 0, 0.658730268, 0)
7141
ChathookSwitch.Size = UDim2.new(0, 20, 0, 20)
7142
ChathookSwitch.ZIndex = 120
7143
ChathookSwitch.Font = Enum.Font.Highway
7144
ChathookSwitch.Text = ""
7145
ChathookSwitch.TextColor3 = Color3.new(1, 1, 1)
7146
ChathookSwitch.TextScaled = true
7147
ChathookSwitch.TextSize = 14
7148
ChathookSwitch.TextWrapped = true
7149
7150
Borders_7.Name = "Borders"
7151
Borders_7.Parent = ChathookSwitch
7152
Borders_7.BackgroundColor3 = Color3.new(1, 1, 1)
7153
Borders_7.BackgroundTransparency = 1
7154
Borders_7.BorderSizePixel = 0
7155
Borders_7.Size = UDim2.new(1, 0, 1, 0)
7156
Borders_7.ZIndex = 120
7157
7158
Border_49.Name = "Border"
7159
Border_49.Parent = Borders_7
7160
Border_49.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
7161
Border_49.BackgroundTransparency = 1
7162
Border_49.BorderSizePixel = 0
7163
Border_49.Position = UDim2.new(0, -12, 0, -12)
7164
Border_49.Size = UDim2.new(0, 12, 0, 12)
7165
Border_49.ZIndex = 110
7166
Border_49.Image = "http://www.roblox.com/asset/?id=238725003"
7167
Border_49.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
7168
Border_49.ImageRectSize = Vector2.new(12, 12)
7169
7170
Border_50.Name = "Border"
7171
Border_50.Parent = Borders_7
7172
Border_50.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
7173
Border_50.BackgroundTransparency = 1
7174
Border_50.BorderSizePixel = 0
7175
Border_50.Position = UDim2.new(1, 0, 0, -12)
7176
Border_50.Size = UDim2.new(0, 12, 0, 12)
7177
Border_50.ZIndex = 110
7178
Border_50.Image = "http://www.roblox.com/asset/?id=238725003"
7179
Border_50.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
7180
Border_50.ImageRectOffset = Vector2.new(24, 0)
7181
Border_50.ImageRectSize = Vector2.new(12, 12)
7182
7183
Border_51.Name = "Border"
7184
Border_51.Parent = Borders_7
7185
Border_51.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
7186
Border_51.BackgroundTransparency = 1
7187
Border_51.BorderSizePixel = 0
7188
Border_51.Position = UDim2.new(0, -12, 1, 0)
7189
Border_51.Size = UDim2.new(0, 12, 0, 12)
7190
Border_51.ZIndex = 110
7191
Border_51.Image = "http://www.roblox.com/asset/?id=238725003"
7192
Border_51.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
7193
Border_51.ImageRectOffset = Vector2.new(0, 24)
7194
Border_51.ImageRectSize = Vector2.new(12, 12)
7195
7196
Border_52.Name = "Border"
7197
Border_52.Parent = Borders_7
7198
Border_52.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
7199
Border_52.BackgroundTransparency = 1
7200
Border_52.BorderSizePixel = 0
7201
Border_52.Position = UDim2.new(1, 0, 1, 0)
7202
Border_52.Size = UDim2.new(0, 12, 0, 12)
7203
Border_52.ZIndex = 110
7204
Border_52.Image = "http://www.roblox.com/asset/?id=238725003"
7205
Border_52.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
7206
Border_52.ImageRectOffset = Vector2.new(24, 24)
7207
Border_52.ImageRectSize = Vector2.new(12, 12)
7208
7209
Border_53.Name = "Border"
7210
Border_53.Parent = Borders_7
7211
Border_53.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
7212
Border_53.BackgroundTransparency = 1
7213
Border_53.BorderSizePixel = 0
7214
Border_53.Position = UDim2.new(0, 0, 1, 0)
7215
Border_53.Size = UDim2.new(1, 0, 0, 12)
7216
Border_53.ZIndex = 110
7217
Border_53.Image = "http://www.roblox.com/asset/?id=238725003"
7218
Border_53.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
7219
Border_53.ImageRectOffset = Vector2.new(12, 24)
7220
Border_53.ImageRectSize = Vector2.new(12, 12)
7221
7222
Border_54.Name = "Border"
7223
Border_54.Parent = Borders_7
7224
Border_54.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
7225
Border_54.BackgroundTransparency = 1
7226
Border_54.BorderSizePixel = 0
7227
Border_54.Position = UDim2.new(0, 0, 0, -12)
7228
Border_54.Size = UDim2.new(1, 0, 0, 12)
7229
Border_54.ZIndex = 110
7230
Border_54.Image = "http://www.roblox.com/asset/?id=238725003"
7231
Border_54.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
7232
Border_54.ImageRectOffset = Vector2.new(12, 0)
7233
Border_54.ImageRectSize = Vector2.new(12, 12)
7234
7235
Border_55.Name = "Border"
7236
Border_55.Parent = Borders_7
7237
Border_55.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
7238
Border_55.BackgroundTransparency = 1
7239
Border_55.BorderSizePixel = 0
7240
Border_55.Position = UDim2.new(0, -12, 0, 0)
7241
Border_55.Size = UDim2.new(0, 12, 1, 0)
7242
Border_55.ZIndex = 110
7243
Border_55.Image = "http://www.roblox.com/asset/?id=238725003"
7244
Border_55.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
7245
Border_55.ImageRectOffset = Vector2.new(0, 12)
7246
Border_55.ImageRectSize = Vector2.new(12, 12)
7247
7248
Border_56.Name = "Border"
7249
Border_56.Parent = Borders_7
7250
Border_56.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
7251
Border_56.BackgroundTransparency = 1
7252
Border_56.BorderSizePixel = 0
7253
Border_56.Position = UDim2.new(1, 0, 0, 0)
7254
Border_56.Size = UDim2.new(0, 12, 1, 0)
7255
Border_56.ZIndex = 110
7256
Border_56.Image = "http://www.roblox.com/asset/?id=238725003"
7257
Border_56.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
7258
Border_56.ImageRectOffset = Vector2.new(24, 12)
7259
Border_56.ImageRectSize = Vector2.new(12, 12)
7260
7261
Goto.Name = "Goto"
7262
Goto.Parent = ExtrasFrame
7263
Goto.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
7264
Goto.BorderSizePixel = 0
7265
Goto.Position = UDim2.new(0.525812626, 0, 0.865079343, 0)
7266
Goto.Size = UDim2.new(0, 228, 0, 17)
7267
Goto.ZIndex = 120
7268
Goto.Font = Enum.Font.Highway
7269
Goto.Text = "Credits"
7270
Goto.TextColor3 = Color3.new(1, 1, 1)
7271
Goto.TextScaled = true
7272
Goto.TextSize = 14
7273
Goto.TextWrapped = true
7274
7275
Borders_8.Name = "Borders"
7276
Borders_8.Parent = Goto
7277
Borders_8.BackgroundColor3 = Color3.new(1, 1, 1)
7278
Borders_8.BackgroundTransparency = 1
7279
Borders_8.BorderSizePixel = 0
7280
Borders_8.Size = UDim2.new(1, 0, 1, 0)
7281
Borders_8.ZIndex = 120
7282
7283
Border_57.Name = "Border"
7284
Border_57.Parent = Borders_8
7285
Border_57.BackgroundColor3 = Color3.new(1, 1, 1)
7286
Border_57.BackgroundTransparency = 1
7287
Border_57.BorderSizePixel = 0
7288
Border_57.Position = UDim2.new(0, -12, 0, -12)
7289
Border_57.Size = UDim2.new(0, 12, 0, 12)
7290
Border_57.ZIndex = 110
7291
Border_57.Image = "http://www.roblox.com/asset/?id=238725003"
7292
Border_57.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
7293
Border_57.ImageRectSize = Vector2.new(12, 12)
7294
7295
Border_58.Name = "Border"
7296
Border_58.Parent = Borders_8
7297
Border_58.BackgroundColor3 = Color3.new(1, 1, 1)
7298
Border_58.BackgroundTransparency = 1
7299
Border_58.BorderSizePixel = 0
7300
Border_58.Position = UDim2.new(1, 0, 0, -12)
7301
Border_58.Size = UDim2.new(0, 12, 0, 12)
7302
Border_58.ZIndex = 110
7303
Border_58.Image = "http://www.roblox.com/asset/?id=238725003"
7304
Border_58.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
7305
Border_58.ImageRectOffset = Vector2.new(24, 0)
7306
Border_58.ImageRectSize = Vector2.new(12, 12)
7307
7308
Border_59.Name = "Border"
7309
Border_59.Parent = Borders_8
7310
Border_59.BackgroundColor3 = Color3.new(1, 1, 1)
7311
Border_59.BackgroundTransparency = 1
7312
Border_59.BorderSizePixel = 0
7313
Border_59.Position = UDim2.new(0, -12, 1, 0)
7314
Border_59.Size = UDim2.new(0, 12, 0, 12)
7315
Border_59.ZIndex = 110
7316
Border_59.Image = "http://www.roblox.com/asset/?id=238725003"
7317
Border_59.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
7318
Border_59.ImageRectOffset = Vector2.new(0, 24)
7319
Border_59.ImageRectSize = Vector2.new(12, 12)
7320
7321
Border_60.Name = "Border"
7322
Border_60.Parent = Borders_8
7323
Border_60.BackgroundColor3 = Color3.new(1, 1, 1)
7324
Border_60.BackgroundTransparency = 1
7325
Border_60.BorderSizePixel = 0
7326
Border_60.Position = UDim2.new(1, 0, 1, 0)
7327
Border_60.Size = UDim2.new(0, 12, 0, 12)
7328
Border_60.ZIndex = 110
7329
Border_60.Image = "http://www.roblox.com/asset/?id=238725003"
7330
Border_60.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
7331
Border_60.ImageRectOffset = Vector2.new(24, 24)
7332
Border_60.ImageRectSize = Vector2.new(12, 12)
7333
7334
Border_61.Name = "Border"
7335
Border_61.Parent = Borders_8
7336
Border_61.BackgroundColor3 = Color3.new(1, 1, 1)
7337
Border_61.BackgroundTransparency = 1
7338
Border_61.BorderSizePixel = 0
7339
Border_61.Position = UDim2.new(0, 0, 1, 0)
7340
Border_61.Size = UDim2.new(1, 0, 0, 12)
7341
Border_61.ZIndex = 110
7342
Border_61.Image = "http://www.roblox.com/asset/?id=238725003"
7343
Border_61.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
7344
Border_61.ImageRectOffset = Vector2.new(12, 24)
7345
Border_61.ImageRectSize = Vector2.new(12, 12)
7346
7347
Border_62.Name = "Border"
7348
Border_62.Parent = Borders_8
7349
Border_62.BackgroundColor3 = Color3.new(1, 1, 1)
7350
Border_62.BackgroundTransparency = 1
7351
Border_62.BorderSizePixel = 0
7352
Border_62.Position = UDim2.new(0, 0, 0, -12)
7353
Border_62.Size = UDim2.new(1, 0, 0, 12)
7354
Border_62.ZIndex = 110
7355
Border_62.Image = "http://www.roblox.com/asset/?id=238725003"
7356
Border_62.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
7357
Border_62.ImageRectOffset = Vector2.new(12, 0)
7358
Border_62.ImageRectSize = Vector2.new(12, 12)
7359
7360
Border_63.Name = "Border"
7361
Border_63.Parent = Borders_8
7362
Border_63.BackgroundColor3 = Color3.new(1, 1, 1)
7363
Border_63.BackgroundTransparency = 1
7364
Border_63.BorderSizePixel = 0
7365
Border_63.Position = UDim2.new(0, -12, 0, 0)
7366
Border_63.Size = UDim2.new(0, 12, 1, 0)
7367
Border_63.ZIndex = 110
7368
Border_63.Image = "http://www.roblox.com/asset/?id=238725003"
7369
Border_63.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
7370
Border_63.ImageRectOffset = Vector2.new(0, 12)
7371
Border_63.ImageRectSize = Vector2.new(12, 12)
7372
7373
Border_64.Name = "Border"
7374
Border_64.Parent = Borders_8
7375
Border_64.BackgroundColor3 = Color3.new(1, 1, 1)
7376
Border_64.BackgroundTransparency = 1
7377
Border_64.BorderSizePixel = 0
7378
Border_64.Position = UDim2.new(1, 0, 0, 0)
7379
Border_64.Size = UDim2.new(0, 12, 1, 0)
7380
Border_64.ZIndex = 110
7381
Border_64.Image = "http://www.roblox.com/asset/?id=238725003"
7382
Border_64.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
7383
Border_64.ImageRectOffset = Vector2.new(24, 12)
7384
Border_64.ImageRectSize = Vector2.new(12, 12)
7385
7386
7387
7388
 -- Objects
7389
7390
MainCommandsFrame = Instance.new("Frame")
7391
Playername = Instance.new("TextBox")
7392
Borders = Instance.new("Frame")
7393
Border = Instance.new("ImageLabel")
7394
Border_2 = Instance.new("ImageLabel")
7395
Border_3 = Instance.new("ImageLabel")
7396
Border_4 = Instance.new("ImageLabel")
7397
Border_5 = Instance.new("ImageLabel")
7398
Border_6 = Instance.new("ImageLabel")
7399
Border_7 = Instance.new("ImageLabel")
7400
Border_8 = Instance.new("ImageLabel")
7401
Pickups = Instance.new("TextButton")
7402
Borders_2 = Instance.new("Frame")
7403
Border_9 = Instance.new("ImageLabel")
7404
Border_10 = Instance.new("ImageLabel")
7405
Border_11 = Instance.new("ImageLabel")
7406
Border_12 = Instance.new("ImageLabel")
7407
Border_13 = Instance.new("ImageLabel")
7408
Border_14 = Instance.new("ImageLabel")
7409
Border_15 = Instance.new("ImageLabel")
7410
Border_16 = Instance.new("ImageLabel")
7411
LeaderVote = Instance.new("TextButton")
7412
Borders_3 = Instance.new("Frame")
7413
Border_17 = Instance.new("ImageLabel")
7414
Border_18 = Instance.new("ImageLabel")
7415
Border_19 = Instance.new("ImageLabel")
7416
Border_20 = Instance.new("ImageLabel")
7417
Border_21 = Instance.new("ImageLabel")
7418
Border_22 = Instance.new("ImageLabel")
7419
Border_23 = Instance.new("ImageLabel")
7420
Border_24 = Instance.new("ImageLabel")
7421
VerifyProfile = Instance.new("TextButton")
7422
Borders_4 = Instance.new("Frame")
7423
Border_25 = Instance.new("ImageLabel")
7424
Border_26 = Instance.new("ImageLabel")
7425
Border_27 = Instance.new("ImageLabel")
7426
Border_28 = Instance.new("ImageLabel")
7427
Border_29 = Instance.new("ImageLabel")
7428
Border_30 = Instance.new("ImageLabel")
7429
Border_31 = Instance.new("ImageLabel")
7430
Border_32 = Instance.new("ImageLabel")
7431
KickVote = Instance.new("TextButton")
7432
Borders_5 = Instance.new("Frame")
7433
Border_33 = Instance.new("ImageLabel")
7434
Border_34 = Instance.new("ImageLabel")
7435
Border_35 = Instance.new("ImageLabel")
7436
Border_36 = Instance.new("ImageLabel")
7437
Border_37 = Instance.new("ImageLabel")
7438
Border_38 = Instance.new("ImageLabel")
7439
Border_39 = Instance.new("ImageLabel")
7440
Border_40 = Instance.new("ImageLabel")
7441
ShowInventory = Instance.new("TextButton")
7442
Borders_6 = Instance.new("Frame")
7443
Border_41 = Instance.new("ImageLabel")
7444
Border_42 = Instance.new("ImageLabel")
7445
Border_43 = Instance.new("ImageLabel")
7446
Border_44 = Instance.new("ImageLabel")
7447
Border_45 = Instance.new("ImageLabel")
7448
Border_46 = Instance.new("ImageLabel")
7449
Border_47 = Instance.new("ImageLabel")
7450
Border_48 = Instance.new("ImageLabel")
7451
JuryVote = Instance.new("TextButton")
7452
Borders_7 = Instance.new("Frame")
7453
Border_49 = Instance.new("ImageLabel")
7454
Border_50 = Instance.new("ImageLabel")
7455
Border_51 = Instance.new("ImageLabel")
7456
Border_52 = Instance.new("ImageLabel")
7457
Border_53 = Instance.new("ImageLabel")
7458
Border_54 = Instance.new("ImageLabel")
7459
Border_55 = Instance.new("ImageLabel")
7460
Border_56 = Instance.new("ImageLabel")
7461
Goto = Instance.new("TextButton")
7462
Borders_8 = Instance.new("Frame")
7463
Border_57 = Instance.new("ImageLabel")
7464
Border_58 = Instance.new("ImageLabel")
7465
Border_59 = Instance.new("ImageLabel")
7466
Border_60 = Instance.new("ImageLabel")
7467
Border_61 = Instance.new("ImageLabel")
7468
Border_62 = Instance.new("ImageLabel")
7469
Border_63 = Instance.new("ImageLabel")
7470
Border_64 = Instance.new("ImageLabel")
7471
ViewProfile = Instance.new("TextButton")
7472
Borders_9 = Instance.new("Frame")
7473
Border_65 = Instance.new("ImageLabel")
7474
Border_66 = Instance.new("ImageLabel")
7475
Border_67 = Instance.new("ImageLabel")
7476
Border_68 = Instance.new("ImageLabel")
7477
Border_69 = Instance.new("ImageLabel")
7478
Border_70 = Instance.new("ImageLabel")
7479
Border_71 = Instance.new("ImageLabel")
7480
Border_72 = Instance.new("ImageLabel")
7481
PlayerIcon = Instance.new("ImageLabel")
7482
Borders_10 = Instance.new("Frame")
7483
Border_73 = Instance.new("ImageLabel")
7484
Border_74 = Instance.new("ImageLabel")
7485
Border_75 = Instance.new("ImageLabel")
7486
Border_76 = Instance.new("ImageLabel")
7487
Border_77 = Instance.new("ImageLabel")
7488
Border_78 = Instance.new("ImageLabel")
7489
Border_79 = Instance.new("ImageLabel")
7490
Border_80 = Instance.new("ImageLabel")
7491
PlayerNameLabel = Instance.new("TextLabel")
7492
7493
-- Properties
7494
7495
MainCommandsFrame.Name = "MainCommandsFrame"
7496
MainCommandsFrame.BackgroundColor3 = Color3.new(1, 1, 1)
7497
MainCommandsFrame.BackgroundTransparency = 1
7498
MainCommandsFrame.BorderSizePixel = 0
7499
MainCommandsFrame.Size = UDim2.new(1, 0, 1, 0)
7500
7501
Playername.Name = "Playername"
7502
Playername.Parent = MainCommandsFrame
7503
Playername.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
7504
Playername.BorderSizePixel = 0
7505
Playername.Position = UDim2.new(0.0210325047, 0, 0.027777778, 0)
7506
Playername.Size = UDim2.new(0.957934976, 0, 0.0714285746, 0)
7507
Playername.ZIndex = 120
7508
Playername.Font = Enum.Font.Highway
7509
Playername.PlaceholderColor3 = Color3.new(1, 1, 1)
7510
Playername.Text = "Player Name"
7511
Playername.TextColor3 = Color3.new(1, 1, 1)
7512
Playername.TextScaled = true
7513
Playername.TextSize = 14
7514
Playername.TextWrapped = true
7515
Playername.TextXAlignment = Enum.TextXAlignment.Left
7516
7517
Borders.Name = "Borders"
7518
Borders.Parent = Playername
7519
Borders.BackgroundColor3 = Color3.new(1, 1, 1)
7520
Borders.BackgroundTransparency = 1
7521
Borders.BorderSizePixel = 0
7522
Borders.Size = UDim2.new(1, 0, 1, 0)
7523
Borders.ZIndex = 120
7524
7525
Border.Name = "Border"
7526
Border.Parent = Borders
7527
Border.BackgroundColor3 = Color3.new(1, 1, 1)
7528
Border.BackgroundTransparency = 1
7529
Border.BorderSizePixel = 0
7530
Border.Position = UDim2.new(0, -12, 0, -12)
7531
Border.Size = UDim2.new(0, 12, 0, 12)
7532
Border.ZIndex = 110
7533
Border.Image = "http://www.roblox.com/asset/?id=238725003"
7534
Border.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
7535
Border.ImageRectSize = Vector2.new(12, 12)
7536
7537
Border_2.Name = "Border"
7538
Border_2.Parent = Borders
7539
Border_2.BackgroundColor3 = Color3.new(1, 1, 1)
7540
Border_2.BackgroundTransparency = 1
7541
Border_2.BorderSizePixel = 0
7542
Border_2.Position = UDim2.new(1, 0, 0, -12)
7543
Border_2.Size = UDim2.new(0, 12, 0, 12)
7544
Border_2.ZIndex = 110
7545
Border_2.Image = "http://www.roblox.com/asset/?id=238725003"
7546
Border_2.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
7547
Border_2.ImageRectOffset = Vector2.new(24, 0)
7548
Border_2.ImageRectSize = Vector2.new(12, 12)
7549
7550
Border_3.Name = "Border"
7551
Border_3.Parent = Borders
7552
Border_3.BackgroundColor3 = Color3.new(1, 1, 1)
7553
Border_3.BackgroundTransparency = 1
7554
Border_3.BorderSizePixel = 0
7555
Border_3.Position = UDim2.new(0, -12, 1, 0)
7556
Border_3.Size = UDim2.new(0, 12, 0, 12)
7557
Border_3.ZIndex = 110
7558
Border_3.Image = "http://www.roblox.com/asset/?id=238725003"
7559
Border_3.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
7560
Border_3.ImageRectOffset = Vector2.new(0, 24)
7561
Border_3.ImageRectSize = Vector2.new(12, 12)
7562
7563
Border_4.Name = "Border"
7564
Border_4.Parent = Borders
7565
Border_4.BackgroundColor3 = Color3.new(1, 1, 1)
7566
Border_4.BackgroundTransparency = 1
7567
Border_4.BorderSizePixel = 0
7568
Border_4.Position = UDim2.new(1, 0, 1, 0)
7569
Border_4.Size = UDim2.new(0, 12, 0, 12)
7570
Border_4.ZIndex = 110
7571
Border_4.Image = "http://www.roblox.com/asset/?id=238725003"
7572
Border_4.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
7573
Border_4.ImageRectOffset = Vector2.new(24, 24)
7574
Border_4.ImageRectSize = Vector2.new(12, 12)
7575
7576
Border_5.Name = "Border"
7577
Border_5.Parent = Borders
7578
Border_5.BackgroundColor3 = Color3.new(1, 1, 1)
7579
Border_5.BackgroundTransparency = 1
7580
Border_5.BorderSizePixel = 0
7581
Border_5.Position = UDim2.new(0, 0, 1, 0)
7582
Border_5.Size = UDim2.new(1, 0, 0, 12)
7583
Border_5.ZIndex = 110
7584
Border_5.Image = "http://www.roblox.com/asset/?id=238725003"
7585
Border_5.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
7586
Border_5.ImageRectOffset = Vector2.new(12, 24)
7587
Border_5.ImageRectSize = Vector2.new(12, 12)
7588
7589
Border_6.Name = "Border"
7590
Border_6.Parent = Borders
7591
Border_6.BackgroundColor3 = Color3.new(1, 1, 1)
7592
Border_6.BackgroundTransparency = 1
7593
Border_6.BorderSizePixel = 0
7594
Border_6.Position = UDim2.new(0, 0, 0, -12)
7595
Border_6.Size = UDim2.new(1, 0, 0, 12)
7596
Border_6.ZIndex = 110
7597
Border_6.Image = "http://www.roblox.com/asset/?id=238725003"
7598
Border_6.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
7599
Border_6.ImageRectOffset = Vector2.new(12, 0)
7600
Border_6.ImageRectSize = Vector2.new(12, 12)
7601
7602
Border_7.Name = "Border"
7603
Border_7.Parent = Borders
7604
Border_7.BackgroundColor3 = Color3.new(1, 1, 1)
7605
Border_7.BackgroundTransparency = 1
7606
Border_7.BorderSizePixel = 0
7607
Border_7.Position = UDim2.new(0, -12, 0, 0)
7608
Border_7.Size = UDim2.new(0, 12, 1, 0)
7609
Border_7.ZIndex = 110
7610
Border_7.Image = "http://www.roblox.com/asset/?id=238725003"
7611
Border_7.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
7612
Border_7.ImageRectOffset = Vector2.new(0, 12)
7613
Border_7.ImageRectSize = Vector2.new(12, 12)
7614
7615
Border_8.Name = "Border"
7616
Border_8.Parent = Borders
7617
Border_8.BackgroundColor3 = Color3.new(1, 1, 1)
7618
Border_8.BackgroundTransparency = 1
7619
Border_8.BorderSizePixel = 0
7620
Border_8.Position = UDim2.new(1, 0, 0, 0)
7621
Border_8.Size = UDim2.new(0, 12, 1, 0)
7622
Border_8.ZIndex = 110
7623
Border_8.Image = "http://www.roblox.com/asset/?id=238725003"
7624
Border_8.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
7625
Border_8.ImageRectOffset = Vector2.new(24, 12)
7626
Border_8.ImageRectSize = Vector2.new(12, 12)
7627
7628
Pickups.Name = "Pickups"
7629
Pickups.Parent = MainCommandsFrame
7630
Pickups.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
7631
Pickups.BorderSizePixel = 0
7632
Pickups.Position = UDim2.new(0.0210325047, 0, 0.888888896, 0)
7633
Pickups.Size = UDim2.new(0, 501, 0, 17)
7634
Pickups.ZIndex = 120
7635
Pickups.Font = Enum.Font.Highway
7636
Pickups.Text = "Get Pickups"
7637
Pickups.TextColor3 = Color3.new(1, 1, 1)
7638
Pickups.TextScaled = true
7639
Pickups.TextSize = 14
7640
Pickups.TextWrapped = true
7641
7642
Borders_2.Name = "Borders"
7643
Borders_2.Parent = Pickups
7644
Borders_2.BackgroundColor3 = Color3.new(1, 1, 1)
7645
Borders_2.BackgroundTransparency = 1
7646
Borders_2.BorderSizePixel = 0
7647
Borders_2.Size = UDim2.new(1, 0, 1, 0)
7648
Borders_2.ZIndex = 120
7649
7650
Border_9.Name = "Border"
7651
Border_9.Parent = Borders_2
7652
Border_9.BackgroundColor3 = Color3.new(1, 1, 1)
7653
Border_9.BackgroundTransparency = 1
7654
Border_9.BorderSizePixel = 0
7655
Border_9.Position = UDim2.new(0, -12, 0, -12)
7656
Border_9.Size = UDim2.new(0, 12, 0, 12)
7657
Border_9.ZIndex = 110
7658
Border_9.Image = "http://www.roblox.com/asset/?id=238725003"
7659
Border_9.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
7660
Border_9.ImageRectSize = Vector2.new(12, 12)
7661
7662
Border_10.Name = "Border"
7663
Border_10.Parent = Borders_2
7664
Border_10.BackgroundColor3 = Color3.new(1, 1, 1)
7665
Border_10.BackgroundTransparency = 1
7666
Border_10.BorderSizePixel = 0
7667
Border_10.Position = UDim2.new(1, 0, 0, -12)
7668
Border_10.Size = UDim2.new(0, 12, 0, 12)
7669
Border_10.ZIndex = 110
7670
Border_10.Image = "http://www.roblox.com/asset/?id=238725003"
7671
Border_10.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
7672
Border_10.ImageRectOffset = Vector2.new(24, 0)
7673
Border_10.ImageRectSize = Vector2.new(12, 12)
7674
7675
Border_11.Name = "Border"
7676
Border_11.Parent = Borders_2
7677
Border_11.BackgroundColor3 = Color3.new(1, 1, 1)
7678
Border_11.BackgroundTransparency = 1
7679
Border_11.BorderSizePixel = 0
7680
Border_11.Position = UDim2.new(0, -12, 1, 0)
7681
Border_11.Size = UDim2.new(0, 12, 0, 12)
7682
Border_11.ZIndex = 110
7683
Border_11.Image = "http://www.roblox.com/asset/?id=238725003"
7684
Border_11.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
7685
Border_11.ImageRectOffset = Vector2.new(0, 24)
7686
Border_11.ImageRectSize = Vector2.new(12, 12)
7687
7688
Border_12.Name = "Border"
7689
Border_12.Parent = Borders_2
7690
Border_12.BackgroundColor3 = Color3.new(1, 1, 1)
7691
Border_12.BackgroundTransparency = 1
7692
Border_12.BorderSizePixel = 0
7693
Border_12.Position = UDim2.new(1, 0, 1, 0)
7694
Border_12.Size = UDim2.new(0, 12, 0, 12)
7695
Border_12.ZIndex = 110
7696
Border_12.Image = "http://www.roblox.com/asset/?id=238725003"
7697
Border_12.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
7698
Border_12.ImageRectOffset = Vector2.new(24, 24)
7699
Border_12.ImageRectSize = Vector2.new(12, 12)
7700
7701
Border_13.Name = "Border"
7702
Border_13.Parent = Borders_2
7703
Border_13.BackgroundColor3 = Color3.new(1, 1, 1)
7704
Border_13.BackgroundTransparency = 1
7705
Border_13.BorderSizePixel = 0
7706
Border_13.Position = UDim2.new(0, 0, 1, 0)
7707
Border_13.Size = UDim2.new(1, 0, 0, 12)
7708
Border_13.ZIndex = 110
7709
Border_13.Image = "http://www.roblox.com/asset/?id=238725003"
7710
Border_13.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
7711
Border_13.ImageRectOffset = Vector2.new(12, 24)
7712
Border_13.ImageRectSize = Vector2.new(12, 12)
7713
7714
Border_14.Name = "Border"
7715
Border_14.Parent = Borders_2
7716
Border_14.BackgroundColor3 = Color3.new(1, 1, 1)
7717
Border_14.BackgroundTransparency = 1
7718
Border_14.BorderSizePixel = 0
7719
Border_14.Position = UDim2.new(0, 0, 0, -12)
7720
Border_14.Size = UDim2.new(1, 0, 0, 12)
7721
Border_14.ZIndex = 110
7722
Border_14.Image = "http://www.roblox.com/asset/?id=238725003"
7723
Border_14.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
7724
Border_14.ImageRectOffset = Vector2.new(12, 0)
7725
Border_14.ImageRectSize = Vector2.new(12, 12)
7726
7727
Border_15.Name = "Border"
7728
Border_15.Parent = Borders_2
7729
Border_15.BackgroundColor3 = Color3.new(1, 1, 1)
7730
Border_15.BackgroundTransparency = 1
7731
Border_15.BorderSizePixel = 0
7732
Border_15.Position = UDim2.new(0, -12, 0, 0)
7733
Border_15.Size = UDim2.new(0, 12, 1, 0)
7734
Border_15.ZIndex = 110
7735
Border_15.Image = "http://www.roblox.com/asset/?id=238725003"
7736
Border_15.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
7737
Border_15.ImageRectOffset = Vector2.new(0, 12)
7738
Border_15.ImageRectSize = Vector2.new(12, 12)
7739
7740
Border_16.Name = "Border"
7741
Border_16.Parent = Borders_2
7742
Border_16.BackgroundColor3 = Color3.new(1, 1, 1)
7743
Border_16.BackgroundTransparency = 1
7744
Border_16.BorderSizePixel = 0
7745
Border_16.Position = UDim2.new(1, 0, 0, 0)
7746
Border_16.Size = UDim2.new(0, 12, 1, 0)
7747
Border_16.ZIndex = 110
7748
Border_16.Image = "http://www.roblox.com/asset/?id=238725003"
7749
Border_16.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
7750
Border_16.ImageRectOffset = Vector2.new(24, 12)
7751
Border_16.ImageRectSize = Vector2.new(12, 12)
7752
7753
LeaderVote.Name = "LeaderVote"
7754
LeaderVote.Parent = MainCommandsFrame
7755
LeaderVote.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
7756
LeaderVote.BorderSizePixel = 0
7757
LeaderVote.Position = UDim2.new(0.36328873, 0, 0.706349194, 0)
7758
LeaderVote.Size = UDim2.new(0, 144, 0, 17)
7759
LeaderVote.ZIndex = 120
7760
LeaderVote.Font = Enum.Font.Highway
7761
LeaderVote.Text = "Leader Vote"
7762
LeaderVote.TextColor3 = Color3.new(1, 1, 1)
7763
LeaderVote.TextScaled = true
7764
LeaderVote.TextSize = 14
7765
LeaderVote.TextWrapped = true
7766
7767
Borders_3.Name = "Borders"
7768
Borders_3.Parent = LeaderVote
7769
Borders_3.BackgroundColor3 = Color3.new(1, 1, 1)
7770
Borders_3.BackgroundTransparency = 1
7771
Borders_3.BorderSizePixel = 0
7772
Borders_3.Size = UDim2.new(1, 0, 1, 0)
7773
Borders_3.ZIndex = 120
7774
7775
Border_17.Name = "Border"
7776
Border_17.Parent = Borders_3
7777
Border_17.BackgroundColor3 = Color3.new(1, 1, 1)
7778
Border_17.BackgroundTransparency = 1
7779
Border_17.BorderSizePixel = 0
7780
Border_17.Position = UDim2.new(0, -12, 0, -12)
7781
Border_17.Size = UDim2.new(0, 12, 0, 12)
7782
Border_17.ZIndex = 110
7783
Border_17.Image = "http://www.roblox.com/asset/?id=238725003"
7784
Border_17.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
7785
Border_17.ImageRectSize = Vector2.new(12, 12)
7786
7787
Border_18.Name = "Border"
7788
Border_18.Parent = Borders_3
7789
Border_18.BackgroundColor3 = Color3.new(1, 1, 1)
7790
Border_18.BackgroundTransparency = 1
7791
Border_18.BorderSizePixel = 0
7792
Border_18.Position = UDim2.new(1, 0, 0, -12)
7793
Border_18.Size = UDim2.new(0, 12, 0, 12)
7794
Border_18.ZIndex = 110
7795
Border_18.Image = "http://www.roblox.com/asset/?id=238725003"
7796
Border_18.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
7797
Border_18.ImageRectOffset = Vector2.new(24, 0)
7798
Border_18.ImageRectSize = Vector2.new(12, 12)
7799
7800
Border_19.Name = "Border"
7801
Border_19.Parent = Borders_3
7802
Border_19.BackgroundColor3 = Color3.new(1, 1, 1)
7803
Border_19.BackgroundTransparency = 1
7804
Border_19.BorderSizePixel = 0
7805
Border_19.Position = UDim2.new(0, -12, 1, 0)
7806
Border_19.Size = UDim2.new(0, 12, 0, 12)
7807
Border_19.ZIndex = 110
7808
Border_19.Image = "http://www.roblox.com/asset/?id=238725003"
7809
Border_19.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
7810
Border_19.ImageRectOffset = Vector2.new(0, 24)
7811
Border_19.ImageRectSize = Vector2.new(12, 12)
7812
7813
Border_20.Name = "Border"
7814
Border_20.Parent = Borders_3
7815
Border_20.BackgroundColor3 = Color3.new(1, 1, 1)
7816
Border_20.BackgroundTransparency = 1
7817
Border_20.BorderSizePixel = 0
7818
Border_20.Position = UDim2.new(1, 0, 1, 0)
7819
Border_20.Size = UDim2.new(0, 12, 0, 12)
7820
Border_20.ZIndex = 110
7821
Border_20.Image = "http://www.roblox.com/asset/?id=238725003"
7822
Border_20.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
7823
Border_20.ImageRectOffset = Vector2.new(24, 24)
7824
Border_20.ImageRectSize = Vector2.new(12, 12)
7825
7826
Border_21.Name = "Border"
7827
Border_21.Parent = Borders_3
7828
Border_21.BackgroundColor3 = Color3.new(1, 1, 1)
7829
Border_21.BackgroundTransparency = 1
7830
Border_21.BorderSizePixel = 0
7831
Border_21.Position = UDim2.new(0, 0, 1, 0)
7832
Border_21.Size = UDim2.new(1, 0, 0, 12)
7833
Border_21.ZIndex = 110
7834
Border_21.Image = "http://www.roblox.com/asset/?id=238725003"
7835
Border_21.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
7836
Border_21.ImageRectOffset = Vector2.new(12, 24)
7837
Border_21.ImageRectSize = Vector2.new(12, 12)
7838
7839
local function ReFly()
7840
repeat wait() 
7841
	until game.Players.LocalPlayer and game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:findFirstChild("Torso") and game.Players.LocalPlayer.Character:findFirstChild("Humanoid") 
7842
local mouse = game.Players.LocalPlayer:GetMouse() 
7843
repeat wait() until mouse
7844
local plr = game.Players.LocalPlayer 
7845
local torso = plr.Character.Torso 
7846
7847
local deb = true 
7848
local ctrl = {f = 0, b = 0, l = 0, r = 0} 
7849
local lastctrl = {f = 0, b = 0, l = 0, r = 0} 
7850
local maxspeed = 50 
7851
local speed = 0 
7852
7853
function Fly() 
7854
local bg = Instance.new("BodyGyro", torso) 
7855
bg.P = 9e4 
7856
bg.maxTorque = Vector3.new(9e9, 9e9, 9e9) 
7857
bg.cframe = torso.CFrame 
7858
local bv = Instance.new("BodyVelocity", torso) 
7859
bv.velocity = Vector3.new(0,0.1,0) 
7860
bv.maxForce = Vector3.new(9e9, 9e9, 9e9) 
7861
repeat wait() 
7862
plr.Character.Humanoid.PlatformStand = true 
7863
if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then 
7864
speed = speed+.5+(speed/maxspeed) 
7865
if speed > maxspeed then 
7866
speed = maxspeed 
7867
end 
7868
elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then 
7869
speed = speed-1 
7870
if speed < 0 then 
7871
speed = 0 
7872
end 
7873
end 
7874
if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then 
7875
bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (ctrl.f+ctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(ctrl.l+ctrl.r,(ctrl.f+ctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed 
7876
lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r} 
7877
elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then 
7878
bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (lastctrl.f+lastctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(lastctrl.l+lastctrl.r,(lastctrl.f+lastctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed 
7879
else 
7880
bv.velocity = Vector3.new(0,0.1,0) 
7881
end 
7882
bg.cframe = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/maxspeed),0,0) 
7883
until not Data.SwitchData.Flying 
7884
ctrl = {f = 0, b = 0, l = 0, r = 0} 
7885
lastctrl = {f = 0, b = 0, l = 0, r = 0} 
7886
speed = 0 
7887
bg:Destroy() 
7888
bv:Destroy() 
7889
plr.Character.Humanoid.PlatformStand = false 
7890
end 
7891
mouse.KeyDown:connect(function(key) 
7892
if key:lower() == "Deez" then 
7893
if Data.SwitchData.Flying then Data.SwitchData.Flying = false 
7894
else 
7895
Data.SwitchData.Flying = true 
7896
Fly() 
7897
end 
7898
elseif key:lower() == "w" then 
7899
ctrl.f = 1 
7900
elseif key:lower() == "s" then 
7901
ctrl.b = -1 
7902
elseif key:lower() == "a" then 
7903
ctrl.l = -1 
7904
elseif key:lower() == "d" then 
7905
ctrl.r = 1 
7906
end 
7907
end) 
7908
mouse.KeyUp:connect(function(key) 
7909
if key:lower() == "w" then 
7910
ctrl.f = 0 
7911
elseif key:lower() == "s" then 
7912
ctrl.b = 0 
7913
elseif key:lower() == "a" then 
7914
ctrl.l = 0 
7915
elseif key:lower() == "d" then 
7916
ctrl.r = 0 
7917
end 
7918
end)
7919
end
7920
7921
Border_22.Name = "Border"
7922
Border_22.Parent = Borders_3
7923
Border_22.BackgroundColor3 = Color3.new(1, 1, 1)
7924
Border_22.BackgroundTransparency = 1
7925
Border_22.BorderSizePixel = 0
7926
Border_22.Position = UDim2.new(0, 0, 0, -12)
7927
Border_22.Size = UDim2.new(1, 0, 0, 12)
7928
Border_22.ZIndex = 110
7929
Border_22.Image = "http://www.roblox.com/asset/?id=238725003"
7930
Border_22.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
7931
Border_22.ImageRectOffset = Vector2.new(12, 0)
7932
Border_22.ImageRectSize = Vector2.new(12, 12)
7933
7934
Border_23.Name = "Border"
7935
Border_23.Parent = Borders_3
7936
Border_23.BackgroundColor3 = Color3.new(1, 1, 1)
7937
Border_23.BackgroundTransparency = 1
7938
Border_23.BorderSizePixel = 0
7939
Border_23.Position = UDim2.new(0, -12, 0, 0)
7940
Border_23.Size = UDim2.new(0, 12, 1, 0)
7941
Border_23.ZIndex = 110
7942
Border_23.Image = "http://www.roblox.com/asset/?id=238725003"
7943
Border_23.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
7944
Border_23.ImageRectOffset = Vector2.new(0, 12)
7945
Border_23.ImageRectSize = Vector2.new(12, 12)
7946
7947
Border_24.Name = "Border"
7948
Border_24.Parent = Borders_3
7949
Border_24.BackgroundColor3 = Color3.new(1, 1, 1)
7950
Border_24.BackgroundTransparency = 1
7951
Border_24.BorderSizePixel = 0
7952
Border_24.Position = UDim2.new(1, 0, 0, 0)
7953
Border_24.Size = UDim2.new(0, 12, 1, 0)
7954
Border_24.ZIndex = 110
7955
Border_24.Image = "http://www.roblox.com/asset/?id=238725003"
7956
Border_24.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
7957
Border_24.ImageRectOffset = Vector2.new(24, 12)
7958
Border_24.ImageRectSize = Vector2.new(12, 12)
7959
7960
VerifyProfile.Name = "VerifyProfile"
7961
VerifyProfile.Parent = MainCommandsFrame
7962
VerifyProfile.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
7963
VerifyProfile.BorderSizePixel = 0
7964
VerifyProfile.Position = UDim2.new(0.703632891, 0, 0.53174603, 0)
7965
VerifyProfile.Size = UDim2.new(0, 144, 0, 17)
7966
VerifyProfile.ZIndex = 120
7967
VerifyProfile.Font = Enum.Font.Highway
7968
VerifyProfile.Text = "Verify Profile"
7969
VerifyProfile.TextColor3 = Color3.new(1, 1, 1)
7970
VerifyProfile.TextScaled = true
7971
VerifyProfile.TextSize = 14
7972
VerifyProfile.TextWrapped = true
7973
7974
Borders_4.Name = "Borders"
7975
Borders_4.Parent = VerifyProfile
7976
Borders_4.BackgroundColor3 = Color3.new(1, 1, 1)
7977
Borders_4.BackgroundTransparency = 1
7978
Borders_4.BorderSizePixel = 0
7979
Borders_4.Size = UDim2.new(1, 0, 1, 0)
7980
Borders_4.ZIndex = 120
7981
7982
Border_25.Name = "Border"
7983
Border_25.Parent = Borders_4
7984
Border_25.BackgroundColor3 = Color3.new(1, 1, 1)
7985
Border_25.BackgroundTransparency = 1
7986
Border_25.BorderSizePixel = 0
7987
Border_25.Position = UDim2.new(0, -12, 0, -12)
7988
Border_25.Size = UDim2.new(0, 12, 0, 12)
7989
Border_25.ZIndex = 110
7990
Border_25.Image = "http://www.roblox.com/asset/?id=238725003"
7991
Border_25.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
7992
Border_25.ImageRectSize = Vector2.new(12, 12)
7993
7994
Border_26.Name = "Border"
7995
Border_26.Parent = Borders_4
7996
Border_26.BackgroundColor3 = Color3.new(1, 1, 1)
7997
Border_26.BackgroundTransparency = 1
7998
Border_26.BorderSizePixel = 0
7999
Border_26.Position = UDim2.new(1, 0, 0, -12)
8000
Border_26.Size = UDim2.new(0, 12, 0, 12)
8001
Border_26.ZIndex = 110
8002
Border_26.Image = "http://www.roblox.com/asset/?id=238725003"
8003
Border_26.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
8004
Border_26.ImageRectOffset = Vector2.new(24, 0)
8005
Border_26.ImageRectSize = Vector2.new(12, 12)
8006
8007
Border_27.Name = "Border"
8008
Border_27.Parent = Borders_4
8009
Border_27.BackgroundColor3 = Color3.new(1, 1, 1)
8010
Border_27.BackgroundTransparency = 1
8011
Border_27.BorderSizePixel = 0
8012
Border_27.Position = UDim2.new(0, -12, 1, 0)
8013
Border_27.Size = UDim2.new(0, 12, 0, 12)
8014
Border_27.ZIndex = 110
8015
Border_27.Image = "http://www.roblox.com/asset/?id=238725003"
8016
Border_27.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
8017
Border_27.ImageRectOffset = Vector2.new(0, 24)
8018
Border_27.ImageRectSize = Vector2.new(12, 12)
8019
8020
Border_28.Name = "Border"
8021
Border_28.Parent = Borders_4
8022
Border_28.BackgroundColor3 = Color3.new(1, 1, 1)
8023
Border_28.BackgroundTransparency = 1
8024
Border_28.BorderSizePixel = 0
8025
Border_28.Position = UDim2.new(1, 0, 1, 0)
8026
Border_28.Size = UDim2.new(0, 12, 0, 12)
8027
Border_28.ZIndex = 110
8028
Border_28.Image = "http://www.roblox.com/asset/?id=238725003"
8029
Border_28.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
8030
Border_28.ImageRectOffset = Vector2.new(24, 24)
8031
Border_28.ImageRectSize = Vector2.new(12, 12)
8032
8033
Border_29.Name = "Border"
8034
Border_29.Parent = Borders_4
8035
Border_29.BackgroundColor3 = Color3.new(1, 1, 1)
8036
Border_29.BackgroundTransparency = 1
8037
Border_29.BorderSizePixel = 0
8038
Border_29.Position = UDim2.new(0, 0, 1, 0)
8039
Border_29.Size = UDim2.new(1, 0, 0, 12)
8040
Border_29.ZIndex = 110
8041
Border_29.Image = "http://www.roblox.com/asset/?id=238725003"
8042
Border_29.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
8043
Border_29.ImageRectOffset = Vector2.new(12, 24)
8044
Border_29.ImageRectSize = Vector2.new(12, 12)
8045
8046
Border_30.Name = "Border"
8047
Border_30.Parent = Borders_4
8048
Border_30.BackgroundColor3 = Color3.new(1, 1, 1)
8049
Border_30.BackgroundTransparency = 1
8050
Border_30.BorderSizePixel = 0
8051
Border_30.Position = UDim2.new(0, 0, 0, -12)
8052
Border_30.Size = UDim2.new(1, 0, 0, 12)
8053
Border_30.ZIndex = 110
8054
Border_30.Image = "http://www.roblox.com/asset/?id=238725003"
8055
Border_30.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
8056
Border_30.ImageRectOffset = Vector2.new(12, 0)
8057
Border_30.ImageRectSize = Vector2.new(12, 12)
8058
8059
Border_31.Name = "Border"
8060
Border_31.Parent = Borders_4
8061
Border_31.BackgroundColor3 = Color3.new(1, 1, 1)
8062
Border_31.BackgroundTransparency = 1
8063
Border_31.BorderSizePixel = 0
8064
Border_31.Position = UDim2.new(0, -12, 0, 0)
8065
Border_31.Size = UDim2.new(0, 12, 1, 0)
8066
Border_31.ZIndex = 110
8067
Border_31.Image = "http://www.roblox.com/asset/?id=238725003"
8068
Border_31.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
8069
Border_31.ImageRectOffset = Vector2.new(0, 12)
8070
Border_31.ImageRectSize = Vector2.new(12, 12)
8071
8072
Border_32.Name = "Border"
8073
Border_32.Parent = Borders_4
8074
Border_32.BackgroundColor3 = Color3.new(1, 1, 1)
8075
Border_32.BackgroundTransparency = 1
8076
Border_32.BorderSizePixel = 0
8077
Border_32.Position = UDim2.new(1, 0, 0, 0)
8078
Border_32.Size = UDim2.new(0, 12, 1, 0)
8079
Border_32.ZIndex = 110
8080
Border_32.Image = "http://www.roblox.com/asset/?id=238725003"
8081
Border_32.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
8082
Border_32.ImageRectOffset = Vector2.new(24, 12)
8083
Border_32.ImageRectSize = Vector2.new(12, 12)
8084
8085
KickVote.Name = "KickVote"
8086
KickVote.Parent = MainCommandsFrame
8087
KickVote.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
8088
KickVote.BorderSizePixel = 0
8089
KickVote.Position = UDim2.new(0.0210325047, 0, 0.53174603, 0)
8090
KickVote.Size = UDim2.new(0, 144, 0, 17)
8091
KickVote.ZIndex = 120
8092
KickVote.Font = Enum.Font.Highway
8093
KickVote.Text = "Kick Vote"
8094
KickVote.TextColor3 = Color3.new(1, 1, 1)
8095
KickVote.TextScaled = true
8096
KickVote.TextSize = 14
8097
KickVote.TextWrapped = true
8098
8099
Borders_5.Name = "Borders"
8100
Borders_5.Parent = KickVote
8101
Borders_5.BackgroundColor3 = Color3.new(1, 1, 1)
8102
Borders_5.BackgroundTransparency = 1
8103
Borders_5.BorderSizePixel = 0
8104
Borders_5.Size = UDim2.new(1, 0, 1, 0)
8105
Borders_5.ZIndex = 120
8106
8107
Border_33.Name = "Border"
8108
Border_33.Parent = Borders_5
8109
Border_33.BackgroundColor3 = Color3.new(1, 1, 1)
8110
Border_33.BackgroundTransparency = 1
8111
Border_33.BorderSizePixel = 0
8112
Border_33.Position = UDim2.new(0, -12, 0, -12)
8113
Border_33.Size = UDim2.new(0, 12, 0, 12)
8114
Border_33.ZIndex = 110
8115
Border_33.Image = "http://www.roblox.com/asset/?id=238725003"
8116
Border_33.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
8117
Border_33.ImageRectSize = Vector2.new(12, 12)
8118
8119
Border_34.Name = "Border"
8120
Border_34.Parent = Borders_5
8121
Border_34.BackgroundColor3 = Color3.new(1, 1, 1)
8122
Border_34.BackgroundTransparency = 1
8123
Border_34.BorderSizePixel = 0
8124
Border_34.Position = UDim2.new(1, 0, 0, -12)
8125
Border_34.Size = UDim2.new(0, 12, 0, 12)
8126
Border_34.ZIndex = 110
8127
Border_34.Image = "http://www.roblox.com/asset/?id=238725003"
8128
Border_34.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
8129
Border_34.ImageRectOffset = Vector2.new(24, 0)
8130
Border_34.ImageRectSize = Vector2.new(12, 12)
8131
8132
Border_35.Name = "Border"
8133
Border_35.Parent = Borders_5
8134
Border_35.BackgroundColor3 = Color3.new(1, 1, 1)
8135
Border_35.BackgroundTransparency = 1
8136
Border_35.BorderSizePixel = 0
8137
Border_35.Position = UDim2.new(0, -12, 1, 0)
8138
Border_35.Size = UDim2.new(0, 12, 0, 12)
8139
Border_35.ZIndex = 110
8140
Border_35.Image = "http://www.roblox.com/asset/?id=238725003"
8141
Border_35.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
8142
Border_35.ImageRectOffset = Vector2.new(0, 24)
8143
Border_35.ImageRectSize = Vector2.new(12, 12)
8144
8145
Border_36.Name = "Border"
8146
Border_36.Parent = Borders_5
8147
Border_36.BackgroundColor3 = Color3.new(1, 1, 1)
8148
Border_36.BackgroundTransparency = 1
8149
Border_36.BorderSizePixel = 0
8150
Border_36.Position = UDim2.new(1, 0, 1, 0)
8151
Border_36.Size = UDim2.new(0, 12, 0, 12)
8152
Border_36.ZIndex = 110
8153
Border_36.Image = "http://www.roblox.com/asset/?id=238725003"
8154
Border_36.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
8155
Border_36.ImageRectOffset = Vector2.new(24, 24)
8156
Border_36.ImageRectSize = Vector2.new(12, 12)
8157
8158
Border_37.Name = "Border"
8159
Border_37.Parent = Borders_5
8160
Border_37.BackgroundColor3 = Color3.new(1, 1, 1)
8161
Border_37.BackgroundTransparency = 1
8162
Border_37.BorderSizePixel = 0
8163
Border_37.Position = UDim2.new(0, 0, 1, 0)
8164
Border_37.Size = UDim2.new(1, 0, 0, 12)
8165
Border_37.ZIndex = 110
8166
Border_37.Image = "http://www.roblox.com/asset/?id=238725003"
8167
Border_37.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
8168
Border_37.ImageRectOffset = Vector2.new(12, 24)
8169
Border_37.ImageRectSize = Vector2.new(12, 12)
8170
8171
Border_38.Name = "Border"
8172
Border_38.Parent = Borders_5
8173
Border_38.BackgroundColor3 = Color3.new(1, 1, 1)
8174
Border_38.BackgroundTransparency = 1
8175
Border_38.BorderSizePixel = 0
8176
Border_38.Position = UDim2.new(0, 0, 0, -12)
8177
Border_38.Size = UDim2.new(1, 0, 0, 12)
8178
Border_38.ZIndex = 110
8179
Border_38.Image = "http://www.roblox.com/asset/?id=238725003"
8180
Border_38.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
8181
Border_38.ImageRectOffset = Vector2.new(12, 0)
8182
Border_38.ImageRectSize = Vector2.new(12, 12)
8183
8184
Border_39.Name = "Border"
8185
Border_39.Parent = Borders_5
8186
Border_39.BackgroundColor3 = Color3.new(1, 1, 1)
8187
Border_39.BackgroundTransparency = 1
8188
Border_39.BorderSizePixel = 0
8189
Border_39.Position = UDim2.new(0, -12, 0, 0)
8190
Border_39.Size = UDim2.new(0, 12, 1, 0)
8191
Border_39.ZIndex = 110
8192
Border_39.Image = "http://www.roblox.com/asset/?id=238725003"
8193
Border_39.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
8194
Border_39.ImageRectOffset = Vector2.new(0, 12)
8195
Border_39.ImageRectSize = Vector2.new(12, 12)
8196
8197
Border_40.Name = "Border"
8198
Border_40.Parent = Borders_5
8199
Border_40.BackgroundColor3 = Color3.new(1, 1, 1)
8200
Border_40.BackgroundTransparency = 1
8201
Border_40.BorderSizePixel = 0
8202
Border_40.Position = UDim2.new(1, 0, 0, 0)
8203
Border_40.Size = UDim2.new(0, 12, 1, 0)
8204
Border_40.ZIndex = 110
8205
Border_40.Image = "http://www.roblox.com/asset/?id=238725003"
8206
Border_40.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
8207
Border_40.ImageRectOffset = Vector2.new(24, 12)
8208
Border_40.ImageRectSize = Vector2.new(12, 12)
8209
8210
ShowInventory.Name = "ShowInventory"
8211
ShowInventory.Parent = MainCommandsFrame
8212
ShowInventory.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
8213
ShowInventory.BorderSizePixel = 0
8214
ShowInventory.Position = UDim2.new(0.0210325047, 0, 0.706349194, 0)
8215
ShowInventory.Size = UDim2.new(0, 144, 0, 17)
8216
ShowInventory.ZIndex = 120
8217
ShowInventory.Font = Enum.Font.Highway
8218
ShowInventory.Text = "Show Inventory"
8219
ShowInventory.TextColor3 = Color3.new(1, 1, 1)
8220
ShowInventory.TextScaled = true
8221
ShowInventory.TextSize = 14
8222
ShowInventory.TextWrapped = true
8223
8224
Borders_6.Name = "Borders"
8225
Borders_6.Parent = ShowInventory
8226
Borders_6.BackgroundColor3 = Color3.new(1, 1, 1)
8227
Borders_6.BackgroundTransparency = 1
8228
Borders_6.BorderSizePixel = 0
8229
Borders_6.Size = UDim2.new(1, 0, 1, 0)
8230
Borders_6.ZIndex = 120
8231
8232
Border_41.Name = "Border"
8233
Border_41.Parent = Borders_6
8234
Border_41.BackgroundColor3 = Color3.new(1, 1, 1)
8235
Border_41.BackgroundTransparency = 1
8236
Border_41.BorderSizePixel = 0
8237
Border_41.Position = UDim2.new(0, -12, 0, -12)
8238
Border_41.Size = UDim2.new(0, 12, 0, 12)
8239
Border_41.ZIndex = 110
8240
Border_41.Image = "http://www.roblox.com/asset/?id=238725003"
8241
Border_41.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
8242
Border_41.ImageRectSize = Vector2.new(12, 12)
8243
8244
Border_42.Name = "Border"
8245
Border_42.Parent = Borders_6
8246
Border_42.BackgroundColor3 = Color3.new(1, 1, 1)
8247
Border_42.BackgroundTransparency = 1
8248
Border_42.BorderSizePixel = 0
8249
Border_42.Position = UDim2.new(1, 0, 0, -12)
8250
Border_42.Size = UDim2.new(0, 12, 0, 12)
8251
Border_42.ZIndex = 110
8252
Border_42.Image = "http://www.roblox.com/asset/?id=238725003"
8253
Border_42.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
8254
Border_42.ImageRectOffset = Vector2.new(24, 0)
8255
Border_42.ImageRectSize = Vector2.new(12, 12)
8256
8257
Border_43.Name = "Border"
8258
Border_43.Parent = Borders_6
8259
Border_43.BackgroundColor3 = Color3.new(1, 1, 1)
8260
Border_43.BackgroundTransparency = 1
8261
Border_43.BorderSizePixel = 0
8262
Border_43.Position = UDim2.new(0, -12, 1, 0)
8263
Border_43.Size = UDim2.new(0, 12, 0, 12)
8264
Border_43.ZIndex = 110
8265
Border_43.Image = "http://www.roblox.com/asset/?id=238725003"
8266
Border_43.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
8267
Border_43.ImageRectOffset = Vector2.new(0, 24)
8268
Border_43.ImageRectSize = Vector2.new(12, 12)
8269
8270
Border_44.Name = "Border"
8271
Border_44.Parent = Borders_6
8272
Border_44.BackgroundColor3 = Color3.new(1, 1, 1)
8273
Border_44.BackgroundTransparency = 1
8274
Border_44.BorderSizePixel = 0
8275
Border_44.Position = UDim2.new(1, 0, 1, 0)
8276
Border_44.Size = UDim2.new(0, 12, 0, 12)
8277
Border_44.ZIndex = 110
8278
Border_44.Image = "http://www.roblox.com/asset/?id=238725003"
8279
Border_44.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
8280
Border_44.ImageRectOffset = Vector2.new(24, 24)
8281
Border_44.ImageRectSize = Vector2.new(12, 12)
8282
8283
Border_45.Name = "Border"
8284
Border_45.Parent = Borders_6
8285
Border_45.BackgroundColor3 = Color3.new(1, 1, 1)
8286
Border_45.BackgroundTransparency = 1
8287
Border_45.BorderSizePixel = 0
8288
Border_45.Position = UDim2.new(0, 0, 1, 0)
8289
Border_45.Size = UDim2.new(1, 0, 0, 12)
8290
Border_45.ZIndex = 110
8291
Border_45.Image = "http://www.roblox.com/asset/?id=238725003"
8292
Border_45.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
8293
Border_45.ImageRectOffset = Vector2.new(12, 24)
8294
Border_45.ImageRectSize = Vector2.new(12, 12)
8295
8296
Border_46.Name = "Border"
8297
Border_46.Parent = Borders_6
8298
Border_46.BackgroundColor3 = Color3.new(1, 1, 1)
8299
Border_46.BackgroundTransparency = 1
8300
Border_46.BorderSizePixel = 0
8301
Border_46.Position = UDim2.new(0, 0, 0, -12)
8302
Border_46.Size = UDim2.new(1, 0, 0, 12)
8303
Border_46.ZIndex = 110
8304
Border_46.Image = "http://www.roblox.com/asset/?id=238725003"
8305
Border_46.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
8306
Border_46.ImageRectOffset = Vector2.new(12, 0)
8307
Border_46.ImageRectSize = Vector2.new(12, 12)
8308
8309
Border_47.Name = "Border"
8310
Border_47.Parent = Borders_6
8311
Border_47.BackgroundColor3 = Color3.new(1, 1, 1)
8312
Border_47.BackgroundTransparency = 1
8313
Border_47.BorderSizePixel = 0
8314
Border_47.Position = UDim2.new(0, -12, 0, 0)
8315
Border_47.Size = UDim2.new(0, 12, 1, 0)
8316
Border_47.ZIndex = 110
8317
Border_47.Image = "http://www.roblox.com/asset/?id=238725003"
8318
Border_47.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
8319
Border_47.ImageRectOffset = Vector2.new(0, 12)
8320
Border_47.ImageRectSize = Vector2.new(12, 12)
8321
8322
Border_48.Name = "Border"
8323
Border_48.Parent = Borders_6
8324
Border_48.BackgroundColor3 = Color3.new(1, 1, 1)
8325
Border_48.BackgroundTransparency = 1
8326
Border_48.BorderSizePixel = 0
8327
Border_48.Position = UDim2.new(1, 0, 0, 0)
8328
Border_48.Size = UDim2.new(0, 12, 1, 0)
8329
Border_48.ZIndex = 110
8330
Border_48.Image = "http://www.roblox.com/asset/?id=238725003"
8331
Border_48.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
8332
Border_48.ImageRectOffset = Vector2.new(24, 12)
8333
Border_48.ImageRectSize = Vector2.new(12, 12)
8334
8335
JuryVote.Name = "JuryVote"
8336
JuryVote.Parent = MainCommandsFrame
8337
JuryVote.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
8338
JuryVote.BorderSizePixel = 0
8339
JuryVote.Position = UDim2.new(0.703632891, 0, 0.706349194, 0)
8340
JuryVote.Size = UDim2.new(0, 144, 0, 17)
8341
JuryVote.ZIndex = 120
8342
JuryVote.Font = Enum.Font.Highway
8343
JuryVote.Text = "Jury Vote"
8344
JuryVote.TextColor3 = Color3.new(1, 1, 1)
8345
JuryVote.TextScaled = true
8346
JuryVote.TextSize = 14
8347
JuryVote.TextWrapped = true
8348
8349
Borders_7.Name = "Borders"
8350
Borders_7.Parent = JuryVote
8351
Borders_7.BackgroundColor3 = Color3.new(1, 1, 1)
8352
Borders_7.BackgroundTransparency = 1
8353
Borders_7.BorderSizePixel = 0
8354
Borders_7.Size = UDim2.new(1, 0, 1, 0)
8355
Borders_7.ZIndex = 120
8356
8357
Border_49.Name = "Border"
8358
Border_49.Parent = Borders_7
8359
Border_49.BackgroundColor3 = Color3.new(1, 1, 1)
8360
Border_49.BackgroundTransparency = 1
8361
Border_49.BorderSizePixel = 0
8362
Border_49.Position = UDim2.new(0, -12, 0, -12)
8363
Border_49.Size = UDim2.new(0, 12, 0, 12)
8364
Border_49.ZIndex = 110
8365
Border_49.Image = "http://www.roblox.com/asset/?id=238725003"
8366
Border_49.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
8367
Border_49.ImageRectSize = Vector2.new(12, 12)
8368
8369
Border_50.Name = "Border"
8370
Border_50.Parent = Borders_7
8371
Border_50.BackgroundColor3 = Color3.new(1, 1, 1)
8372
Border_50.BackgroundTransparency = 1
8373
Border_50.BorderSizePixel = 0
8374
Border_50.Position = UDim2.new(1, 0, 0, -12)
8375
Border_50.Size = UDim2.new(0, 12, 0, 12)
8376
Border_50.ZIndex = 110
8377
Border_50.Image = "http://www.roblox.com/asset/?id=238725003"
8378
Border_50.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
8379
Border_50.ImageRectOffset = Vector2.new(24, 0)
8380
Border_50.ImageRectSize = Vector2.new(12, 12)
8381
8382
Border_51.Name = "Border"
8383
Border_51.Parent = Borders_7
8384
Border_51.BackgroundColor3 = Color3.new(1, 1, 1)
8385
Border_51.BackgroundTransparency = 1
8386
Border_51.BorderSizePixel = 0
8387
Border_51.Position = UDim2.new(0, -12, 1, 0)
8388
Border_51.Size = UDim2.new(0, 12, 0, 12)
8389
Border_51.ZIndex = 110
8390
Border_51.Image = "http://www.roblox.com/asset/?id=238725003"
8391
Border_51.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
8392
Border_51.ImageRectOffset = Vector2.new(0, 24)
8393
Border_51.ImageRectSize = Vector2.new(12, 12)
8394
8395
Border_52.Name = "Border"
8396
Border_52.Parent = Borders_7
8397
Border_52.BackgroundColor3 = Color3.new(1, 1, 1)
8398
Border_52.BackgroundTransparency = 1
8399
Border_52.BorderSizePixel = 0
8400
Border_52.Position = UDim2.new(1, 0, 1, 0)
8401
Border_52.Size = UDim2.new(0, 12, 0, 12)
8402
Border_52.ZIndex = 110
8403
Border_52.Image = "http://www.roblox.com/asset/?id=238725003"
8404
Border_52.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
8405
Border_52.ImageRectOffset = Vector2.new(24, 24)
8406
Border_52.ImageRectSize = Vector2.new(12, 12)
8407
8408
Border_53.Name = "Border"
8409
Border_53.Parent = Borders_7
8410
Border_53.BackgroundColor3 = Color3.new(1, 1, 1)
8411
Border_53.BackgroundTransparency = 1
8412
Border_53.BorderSizePixel = 0
8413
Border_53.Position = UDim2.new(0, 0, 1, 0)
8414
Border_53.Size = UDim2.new(1, 0, 0, 12)
8415
Border_53.ZIndex = 110
8416
Border_53.Image = "http://www.roblox.com/asset/?id=238725003"
8417
Border_53.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
8418
Border_53.ImageRectOffset = Vector2.new(12, 24)
8419
Border_53.ImageRectSize = Vector2.new(12, 12)
8420
8421
Border_54.Name = "Border"
8422
Border_54.Parent = Borders_7
8423
Border_54.BackgroundColor3 = Color3.new(1, 1, 1)
8424
Border_54.BackgroundTransparency = 1
8425
Border_54.BorderSizePixel = 0
8426
Border_54.Position = UDim2.new(0, 0, 0, -12)
8427
Border_54.Size = UDim2.new(1, 0, 0, 12)
8428
Border_54.ZIndex = 110
8429
Border_54.Image = "http://www.roblox.com/asset/?id=238725003"
8430
Border_54.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
8431
Border_54.ImageRectOffset = Vector2.new(12, 0)
8432
Border_54.ImageRectSize = Vector2.new(12, 12)
8433
8434
Border_55.Name = "Border"
8435
Border_55.Parent = Borders_7
8436
Border_55.BackgroundColor3 = Color3.new(1, 1, 1)
8437
Border_55.BackgroundTransparency = 1
8438
Border_55.BorderSizePixel = 0
8439
Border_55.Position = UDim2.new(0, -12, 0, 0)
8440
Border_55.Size = UDim2.new(0, 12, 1, 0)
8441
Border_55.ZIndex = 110
8442
Border_55.Image = "http://www.roblox.com/asset/?id=238725003"
8443
Border_55.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
8444
Border_55.ImageRectOffset = Vector2.new(0, 12)
8445
Border_55.ImageRectSize = Vector2.new(12, 12)
8446
8447
Border_56.Name = "Border"
8448
Border_56.Parent = Borders_7
8449
Border_56.BackgroundColor3 = Color3.new(1, 1, 1)
8450
Border_56.BackgroundTransparency = 1
8451
Border_56.BorderSizePixel = 0
8452
Border_56.Position = UDim2.new(1, 0, 0, 0)
8453
Border_56.Size = UDim2.new(0, 12, 1, 0)
8454
Border_56.ZIndex = 110
8455
Border_56.Image = "http://www.roblox.com/asset/?id=238725003"
8456
Border_56.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
8457
Border_56.ImageRectOffset = Vector2.new(24, 12)
8458
Border_56.ImageRectSize = Vector2.new(12, 12)
8459
8460
Goto.Name = "Goto"
8461
Goto.Parent = MainCommandsFrame
8462
Goto.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
8463
Goto.BorderSizePixel = 0
8464
Goto.Position = UDim2.new(0.36328873, 0, 0.53174603, 0)
8465
Goto.Size = UDim2.new(0, 144, 0, 17)
8466
Goto.ZIndex = 120
8467
Goto.Font = Enum.Font.Highway
8468
Goto.Text = "Goto"
8469
Goto.TextColor3 = Color3.new(1, 1, 1)
8470
Goto.TextScaled = true
8471
Goto.TextSize = 14
8472
Goto.TextWrapped = true
8473
8474
Borders_8.Name = "Borders"
8475
Borders_8.Parent = Goto
8476
Borders_8.BackgroundColor3 = Color3.new(1, 1, 1)
8477
Borders_8.BackgroundTransparency = 1
8478
Borders_8.BorderSizePixel = 0
8479
Borders_8.Size = UDim2.new(1, 0, 1, 0)
8480
Borders_8.ZIndex = 120
8481
8482
Border_57.Name = "Border"
8483
Border_57.Parent = Borders_8
8484
Border_57.BackgroundColor3 = Color3.new(1, 1, 1)
8485
Border_57.BackgroundTransparency = 1
8486
Border_57.BorderSizePixel = 0
8487
Border_57.Position = UDim2.new(0, -12, 0, -12)
8488
Border_57.Size = UDim2.new(0, 12, 0, 12)
8489
Border_57.ZIndex = 110
8490
Border_57.Image = "http://www.roblox.com/asset/?id=238725003"
8491
Border_57.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
8492
Border_57.ImageRectSize = Vector2.new(12, 12)
8493
8494
Border_58.Name = "Border"
8495
Border_58.Parent = Borders_8
8496
Border_58.BackgroundColor3 = Color3.new(1, 1, 1)
8497
Border_58.BackgroundTransparency = 1
8498
Border_58.BorderSizePixel = 0
8499
Border_58.Position = UDim2.new(1, 0, 0, -12)
8500
Border_58.Size = UDim2.new(0, 12, 0, 12)
8501
Border_58.ZIndex = 110
8502
Border_58.Image = "http://www.roblox.com/asset/?id=238725003"
8503
Border_58.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
8504
Border_58.ImageRectOffset = Vector2.new(24, 0)
8505
Border_58.ImageRectSize = Vector2.new(12, 12)
8506
8507
Border_59.Name = "Border"
8508
Border_59.Parent = Borders_8
8509
Border_59.BackgroundColor3 = Color3.new(1, 1, 1)
8510
Border_59.BackgroundTransparency = 1
8511
Border_59.BorderSizePixel = 0
8512
Border_59.Position = UDim2.new(0, -12, 1, 0)
8513
Border_59.Size = UDim2.new(0, 12, 0, 12)
8514
Border_59.ZIndex = 110
8515
Border_59.Image = "http://www.roblox.com/asset/?id=238725003"
8516
Border_59.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
8517
Border_59.ImageRectOffset = Vector2.new(0, 24)
8518
Border_59.ImageRectSize = Vector2.new(12, 12)
8519
8520
Border_60.Name = "Border"
8521
Border_60.Parent = Borders_8
8522
Border_60.BackgroundColor3 = Color3.new(1, 1, 1)
8523
Border_60.BackgroundTransparency = 1
8524
Border_60.BorderSizePixel = 0
8525
Border_60.Position = UDim2.new(1, 0, 1, 0)
8526
Border_60.Size = UDim2.new(0, 12, 0, 12)
8527
Border_60.ZIndex = 110
8528
Border_60.Image = "http://www.roblox.com/asset/?id=238725003"
8529
Border_60.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
8530
Border_60.ImageRectOffset = Vector2.new(24, 24)
8531
Border_60.ImageRectSize = Vector2.new(12, 12)
8532
8533
Border_61.Name = "Border"
8534
Border_61.Parent = Borders_8
8535
Border_61.BackgroundColor3 = Color3.new(1, 1, 1)
8536
Border_61.BackgroundTransparency = 1
8537
Border_61.BorderSizePixel = 0
8538
Border_61.Position = UDim2.new(0, 0, 1, 0)
8539
Border_61.Size = UDim2.new(1, 0, 0, 12)
8540
Border_61.ZIndex = 110
8541
Border_61.Image = "http://www.roblox.com/asset/?id=238725003"
8542
Border_61.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
8543
Border_61.ImageRectOffset = Vector2.new(12, 24)
8544
Border_61.ImageRectSize = Vector2.new(12, 12)
8545
8546
Border_62.Name = "Border"
8547
Border_62.Parent = Borders_8
8548
Border_62.BackgroundColor3 = Color3.new(1, 1, 1)
8549
Border_62.BackgroundTransparency = 1
8550
Border_62.BorderSizePixel = 0
8551
Border_62.Position = UDim2.new(0, 0, 0, -12)
8552
Border_62.Size = UDim2.new(1, 0, 0, 12)
8553
Border_62.ZIndex = 110
8554
Border_62.Image = "http://www.roblox.com/asset/?id=238725003"
8555
Border_62.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
8556
Border_62.ImageRectOffset = Vector2.new(12, 0)
8557
Border_62.ImageRectSize = Vector2.new(12, 12)
8558
8559
Border_63.Name = "Border"
8560
Border_63.Parent = Borders_8
8561
Border_63.BackgroundColor3 = Color3.new(1, 1, 1)
8562
Border_63.BackgroundTransparency = 1
8563
Border_63.BorderSizePixel = 0
8564
Border_63.Position = UDim2.new(0, -12, 0, 0)
8565
Border_63.Size = UDim2.new(0, 12, 1, 0)
8566
Border_63.ZIndex = 110
8567
Border_63.Image = "http://www.roblox.com/asset/?id=238725003"
8568
Border_63.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
8569
Border_63.ImageRectOffset = Vector2.new(0, 12)
8570
Border_63.ImageRectSize = Vector2.new(12, 12)
8571
8572
Border_64.Name = "Border"
8573
Border_64.Parent = Borders_8
8574
Border_64.BackgroundColor3 = Color3.new(1, 1, 1)
8575
Border_64.BackgroundTransparency = 1
8576
Border_64.BorderSizePixel = 0
8577
Border_64.Position = UDim2.new(1, 0, 0, 0)
8578
Border_64.Size = UDim2.new(0, 12, 1, 0)
8579
Border_64.ZIndex = 110
8580
Border_64.Image = "http://www.roblox.com/asset/?id=238725003"
8581
Border_64.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
8582
Border_64.ImageRectOffset = Vector2.new(24, 12)
8583
Border_64.ImageRectSize = Vector2.new(12, 12)
8584
8585
ViewProfile.Name = "ViewProfile"
8586
ViewProfile.Parent = MainCommandsFrame
8587
ViewProfile.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
8588
ViewProfile.BorderSizePixel = 0
8589
ViewProfile.Position = UDim2.new(0.703632891, 0, 0.275793672, 0)
8590
ViewProfile.Size = UDim2.new(0, 144, 0, 17)
8591
ViewProfile.ZIndex = 120
8592
ViewProfile.Font = Enum.Font.Highway
8593
ViewProfile.Text = "View Profile"
8594
ViewProfile.TextColor3 = Color3.new(1, 1, 1)
8595
ViewProfile.TextScaled = true
8596
ViewProfile.TextSize = 14
8597
ViewProfile.TextWrapped = true
8598
8599
Borders_9.Name = "Borders"
8600
Borders_9.Parent = ViewProfile
8601
Borders_9.BackgroundColor3 = Color3.new(1, 1, 1)
8602
Borders_9.BackgroundTransparency = 1
8603
Borders_9.BorderSizePixel = 0
8604
Borders_9.Size = UDim2.new(1, 0, 1, 0)
8605
Borders_9.ZIndex = 120
8606
8607
Border_65.Name = "Border"
8608
Border_65.Parent = Borders_9
8609
Border_65.BackgroundColor3 = Color3.new(1, 1, 1)
8610
Border_65.BackgroundTransparency = 1
8611
Border_65.BorderSizePixel = 0
8612
Border_65.Position = UDim2.new(0, -12, 0, -12)
8613
Border_65.Size = UDim2.new(0, 12, 0, 12)
8614
Border_65.ZIndex = 110
8615
Border_65.Image = "http://www.roblox.com/asset/?id=238725003"
8616
Border_65.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
8617
Border_65.ImageRectSize = Vector2.new(12, 12)
8618
8619
Border_66.Name = "Border"
8620
Border_66.Parent = Borders_9
8621
Border_66.BackgroundColor3 = Color3.new(1, 1, 1)
8622
Border_66.BackgroundTransparency = 1
8623
Border_66.BorderSizePixel = 0
8624
Border_66.Position = UDim2.new(1, 0, 0, -12)
8625
Border_66.Size = UDim2.new(0, 12, 0, 12)
8626
Border_66.ZIndex = 110
8627
Border_66.Image = "http://www.roblox.com/asset/?id=238725003"
8628
Border_66.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
8629
Border_66.ImageRectOffset = Vector2.new(24, 0)
8630
Border_66.ImageRectSize = Vector2.new(12, 12)
8631
8632
Border_67.Name = "Border"
8633
Border_67.Parent = Borders_9
8634
Border_67.BackgroundColor3 = Color3.new(1, 1, 1)
8635
Border_67.BackgroundTransparency = 1
8636
Border_67.BorderSizePixel = 0
8637
Border_67.Position = UDim2.new(0, -12, 1, 0)
8638
Border_67.Size = UDim2.new(0, 12, 0, 12)
8639
Border_67.ZIndex = 110
8640
Border_67.Image = "http://www.roblox.com/asset/?id=238725003"
8641
Border_67.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
8642
Border_67.ImageRectOffset = Vector2.new(0, 24)
8643
Border_67.ImageRectSize = Vector2.new(12, 12)
8644
8645
Border_68.Name = "Border"
8646
Border_68.Parent = Borders_9
8647
Border_68.BackgroundColor3 = Color3.new(1, 1, 1)
8648
Border_68.BackgroundTransparency = 1
8649
Border_68.BorderSizePixel = 0
8650
Border_68.Position = UDim2.new(1, 0, 1, 0)
8651
Border_68.Size = UDim2.new(0, 12, 0, 12)
8652
Border_68.ZIndex = 110
8653
Border_68.Image = "http://www.roblox.com/asset/?id=238725003"
8654
Border_68.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
8655
Border_68.ImageRectOffset = Vector2.new(24, 24)
8656
Border_68.ImageRectSize = Vector2.new(12, 12)
8657
8658
Border_69.Name = "Border"
8659
Border_69.Parent = Borders_9
8660
Border_69.BackgroundColor3 = Color3.new(1, 1, 1)
8661
Border_69.BackgroundTransparency = 1
8662
Border_69.BorderSizePixel = 0
8663
Border_69.Position = UDim2.new(0, 0, 1, 0)
8664
Border_69.Size = UDim2.new(1, 0, 0, 12)
8665
Border_69.ZIndex = 110
8666
Border_69.Image = "http://www.roblox.com/asset/?id=238725003"
8667
Border_69.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
8668
Border_69.ImageRectOffset = Vector2.new(12, 24)
8669
Border_69.ImageRectSize = Vector2.new(12, 12)
8670
8671
Border_70.Name = "Border"
8672
Border_70.Parent = Borders_9
8673
Border_70.BackgroundColor3 = Color3.new(1, 1, 1)
8674
Border_70.BackgroundTransparency = 1
8675
Border_70.BorderSizePixel = 0
8676
Border_70.Position = UDim2.new(0, 0, 0, -12)
8677
Border_70.Size = UDim2.new(1, 0, 0, 12)
8678
Border_70.ZIndex = 110
8679
Border_70.Image = "http://www.roblox.com/asset/?id=238725003"
8680
Border_70.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
8681
Border_70.ImageRectOffset = Vector2.new(12, 0)
8682
Border_70.ImageRectSize = Vector2.new(12, 12)
8683
8684
Border_71.Name = "Border"
8685
Border_71.Parent = Borders_9
8686
Border_71.BackgroundColor3 = Color3.new(1, 1, 1)
8687
Border_71.BackgroundTransparency = 1
8688
Border_71.BorderSizePixel = 0
8689
Border_71.Position = UDim2.new(0, -12, 0, 0)
8690
Border_71.Size = UDim2.new(0, 12, 1, 0)
8691
Border_71.ZIndex = 110
8692
Border_71.Image = "http://www.roblox.com/asset/?id=238725003"
8693
Border_71.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
8694
Border_71.ImageRectOffset = Vector2.new(0, 12)
8695
Border_71.ImageRectSize = Vector2.new(12, 12)
8696
8697
Border_72.Name = "Border"
8698
Border_72.Parent = Borders_9
8699
Border_72.BackgroundColor3 = Color3.new(1, 1, 1)
8700
Border_72.BackgroundTransparency = 1
8701
Border_72.BorderSizePixel = 0
8702
Border_72.Position = UDim2.new(1, 0, 0, 0)
8703
Border_72.Size = UDim2.new(0, 12, 1, 0)
8704
Border_72.ZIndex = 110
8705
Border_72.Image = "http://www.roblox.com/asset/?id=238725003"
8706
Border_72.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
8707
Border_72.ImageRectOffset = Vector2.new(24, 12)
8708
Border_72.ImageRectSize = Vector2.new(12, 12)
8709
8710
PlayerIcon.Name = "PlayerIcon"
8711
PlayerIcon.Parent = MainCommandsFrame
8712
PlayerIcon.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
8713
PlayerIcon.BorderSizePixel = 0
8714
PlayerIcon.Position = UDim2.new(0, 11, 0, 53)
8715
PlayerIcon.Size = UDim2.new(0, 50, 0, 50)
8716
PlayerIcon.ZIndex = 110
8717
PlayerIcon.Image = "rbxassetid://1677963821"
8718
8719
Borders_10.Name = "Borders"
8720
Borders_10.Parent = PlayerIcon
8721
Borders_10.BackgroundColor3 = Color3.new(1, 1, 1)
8722
Borders_10.BackgroundTransparency = 1
8723
Borders_10.BorderSizePixel = 0
8724
Borders_10.Size = UDim2.new(1, 0, 1, 0)
8725
Borders_10.ZIndex = 120
8726
8727
Border_73.Name = "Border"
8728
Border_73.Parent = Borders_10
8729
Border_73.BackgroundColor3 = Color3.new(1, 1, 1)
8730
Border_73.BackgroundTransparency = 1
8731
Border_73.BorderSizePixel = 0
8732
Border_73.Position = UDim2.new(0, -12, 0, -12)
8733
Border_73.Size = UDim2.new(0, 12, 0, 12)
8734
Border_73.ZIndex = 110
8735
Border_73.Image = "http://www.roblox.com/asset/?id=238725003"
8736
Border_73.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
8737
Border_73.ImageRectSize = Vector2.new(12, 12)
8738
8739
Border_74.Name = "Border"
8740
Border_74.Parent = Borders_10
8741
Border_74.BackgroundColor3 = Color3.new(1, 1, 1)
8742
Border_74.BackgroundTransparency = 1
8743
Border_74.BorderSizePixel = 0
8744
Border_74.Position = UDim2.new(1, 0, 0, -12)
8745
Border_74.Size = UDim2.new(0, 12, 0, 12)
8746
Border_74.ZIndex = 110
8747
Border_74.Image = "http://www.roblox.com/asset/?id=238725003"
8748
Border_74.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
8749
Border_74.ImageRectOffset = Vector2.new(24, 0)
8750
Border_74.ImageRectSize = Vector2.new(12, 12)
8751
8752
Border_75.Name = "Border"
8753
Border_75.Parent = Borders_10
8754
Border_75.BackgroundColor3 = Color3.new(1, 1, 1)
8755
Border_75.BackgroundTransparency = 1
8756
Border_75.BorderSizePixel = 0
8757
Border_75.Position = UDim2.new(0, -12, 1, 0)
8758
Border_75.Size = UDim2.new(0, 12, 0, 12)
8759
Border_75.ZIndex = 110
8760
Border_75.Image = "http://www.roblox.com/asset/?id=238725003"
8761
Border_75.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
8762
Border_75.ImageRectOffset = Vector2.new(0, 24)
8763
Border_75.ImageRectSize = Vector2.new(12, 12)
8764
8765
Border_76.Name = "Border"
8766
Border_76.Parent = Borders_10
8767
Border_76.BackgroundColor3 = Color3.new(1, 1, 1)
8768
Border_76.BackgroundTransparency = 1
8769
Border_76.BorderSizePixel = 0
8770
Border_76.Position = UDim2.new(1, 0, 1, 0)
8771
Border_76.Size = UDim2.new(0, 12, 0, 12)
8772
Border_76.ZIndex = 110
8773
Border_76.Image = "http://www.roblox.com/asset/?id=238725003"
8774
Border_76.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
8775
Border_76.ImageRectOffset = Vector2.new(24, 24)
8776
Border_76.ImageRectSize = Vector2.new(12, 12)
8777
8778
Border_77.Name = "Border"
8779
Border_77.Parent = Borders_10
8780
Border_77.BackgroundColor3 = Color3.new(1, 1, 1)
8781
Border_77.BackgroundTransparency = 1
8782
Border_77.BorderSizePixel = 0
8783
Border_77.Position = UDim2.new(0, 0, 1, 0)
8784
Border_77.Size = UDim2.new(1, 0, 0, 12)
8785
Border_77.ZIndex = 110
8786
Border_77.Image = "http://www.roblox.com/asset/?id=238725003"
8787
Border_77.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
8788
Border_77.ImageRectOffset = Vector2.new(12, 24)
8789
Border_77.ImageRectSize = Vector2.new(12, 12)
8790
8791
Border_78.Name = "Border"
8792
Border_78.Parent = Borders_10
8793
Border_78.BackgroundColor3 = Color3.new(1, 1, 1)
8794
Border_78.BackgroundTransparency = 1
8795
Border_78.BorderSizePixel = 0
8796
Border_78.Position = UDim2.new(0, 0, 0, -12)
8797
Border_78.Size = UDim2.new(1, 0, 0, 12)
8798
Border_78.ZIndex = 110
8799
Border_78.Image = "http://www.roblox.com/asset/?id=238725003"
8800
Border_78.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
8801
Border_78.ImageRectOffset = Vector2.new(12, 0)
8802
Border_78.ImageRectSize = Vector2.new(12, 12)
8803
8804
Border_79.Name = "Border"
8805
Border_79.Parent = Borders_10
8806
Border_79.BackgroundColor3 = Color3.new(1, 1, 1)
8807
Border_79.BackgroundTransparency = 1
8808
Border_79.BorderSizePixel = 0
8809
Border_79.Position = UDim2.new(0, -12, 0, 0)
8810
Border_79.Size = UDim2.new(0, 12, 1, 0)
8811
Border_79.ZIndex = 110
8812
Border_79.Image = "http://www.roblox.com/asset/?id=238725003"
8813
Border_79.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
8814
Border_79.ImageRectOffset = Vector2.new(0, 12)
8815
Border_79.ImageRectSize = Vector2.new(12, 12)
8816
8817
Border_80.Name = "Border"
8818
Border_80.Parent = Borders_10
8819
Border_80.BackgroundColor3 = Color3.new(1, 1, 1)
8820
Border_80.BackgroundTransparency = 1
8821
Border_80.BorderSizePixel = 0
8822
Border_80.Position = UDim2.new(1, 0, 0, 0)
8823
Border_80.Size = UDim2.new(0, 12, 1, 0)
8824
Border_80.ZIndex = 110
8825
Border_80.Image = "http://www.roblox.com/asset/?id=238725003"
8826
Border_80.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
8827
Border_80.ImageRectOffset = Vector2.new(24, 12)
8828
Border_80.ImageRectSize = Vector2.new(12, 12)
8829
8830
PlayerNameLabel.Name = "PlayerNameLabel"
8831
PlayerNameLabel.Parent = MainCommandsFrame
8832
PlayerNameLabel.BackgroundColor3 = Color3.new(1, 1, 1)
8833
PlayerNameLabel.BackgroundTransparency = 1
8834
PlayerNameLabel.BorderSizePixel = 0
8835
PlayerNameLabel.Position = UDim2.new(0.139579356, 0, 0.242063493, 0)
8836
PlayerNameLabel.Size = UDim2.new(0.541108966, 0, 0.134920642, 0)
8837
PlayerNameLabel.ZIndex = 120
8838
PlayerNameLabel.Font = Enum.Font.Highway
8839
PlayerNameLabel.Text = "PlayerName"
8840
PlayerNameLabel.TextColor3 = Color3.new(0.784314, 0.784314, 0.784314)
8841
PlayerNameLabel.TextScaled = true
8842
PlayerNameLabel.TextSize = 14
8843
PlayerNameLabel.TextWrapped = true
8844
PlayerNameLabel.TextXAlignment = Enum.TextXAlignment.Left
8845
8846
Notify = Instance.new("BindableEvent",NotificationFrame)
8847
Notify.Name = "Notify"
8848
Notify.Event:Connect(function(Txt,Col,TxtCol)
8849
	NotificationFrame.MainText.Text = Txt
8850
	for i, v in pairs(NotificationFrame:GetDescendants()) do
8851
		pcall(function()
8852
			v.ImageColor3 = Col or Color3.fromRGB(255, 85, 0)
8853
		end)
8854
		pcall(function()
8855
			v.BackgroundColor3 = Col or Color3.fromRGB(255, 85, 0)
8856
		end)
8857
		pcall(function()
8858
			v.TextColor3 = TxtCol or Color3.fromRGB(255,255,255)
8859
		end)
8860
	end
8861
	NotificationFrame:TweenPosition(UDim2.new(0,0,0,0),Enum.EasingDirection.Out,Enum.EasingStyle.Sine,1)
8862
	wait(5)
8863
	NotificationFrame:TweenPosition(UDim2.new(0,0,0.2),Enum.EasingDirection.Out,Enum.EasingStyle.Sine,1)
8864
	wait(1)
8865
end)
8866
8867
8868
-- Scripts 
8869
8870
Survivor.Parent = Data.Player.PlayerGui
8871
MainFrame.Parent = Survivor
8872
ChallengesFrame.Parent = PageFrame
8873
ExtrasFrame.Parent = PageFrame
8874
MainCommandsFrame.Parent = PageFrame
8875
CreditsFrame.Parent = Survivor
8876
8877
for i, v in pairs(Survivor:GetDescendants())do
8878
	if v:IsA("TextButton") or v:IsA("ImageButton") then
8879
		v.AutoButtonColor = false
8880
	end
8881
end
8882
8883
--Startup 
8884
wait(3)
8885
CircleStart:TweenPosition(UDim2.new(0.427, 0,0.343, 0),Enum.EasingDirection.Out,Enum.EasingStyle.Sine,1)
8886
wait(1)
8887
wait(2)
8888
CircleStart.LoadNotify.Visible = false
8889
CircleStart.VersionNotify.Visible = false
8890
CircleStart.Vicon.Visible = false
8891
CircleStart:TweenSizeAndPosition(UDim2.new(0,6000,0,6000),UDim2.new(0,-1500,0,-1500),Enum.EasingDirection.Out,Enum.EasingStyle.Sine,3)
8892
wait(3)
8893
wait(1)
8894
CircleStart.Visible = false
8895
AuthFrame.Visible = true
8896
AuthFrame.DiscordTag:CaptureFocus()
8897
8898
AuthFrame.CancelButton.MouseButton1Click:Connect(function()
8899
	Survivor:Destroy()
8900
end)
8901
8902
AuthFrame.QuitButton.MouseButton1Click:Connect(function()
8903
	Survivor:Destroy()
8904
end)
8905
8906
HTBBtn.MouseButton1Click:Connect(function()
8907
	DiscordTag.Text = "Contact VeteranAnime#7468 To Purchase This."
8908
end)
8909
8910
RefreshButton.MouseButton1Click:Connect(function()
8911
	local Id = 1690972288
8912
	local Asset = game:GetService("MarketplaceService")
8913
	local HasAsset = true --Asset:PlayerOwnsAsset(Data.Player,Id)
8914
	if HasAsset == true then
8915
		Notify:Fire("Confirmed.",Color3.fromRGB(255, 255, 255),Color3.fromRGB(100,200,100))
8916
		wait(3)
8917
		AuthFrame.Visible = false
8918
		MainButton.Visible = true
8919
	else
8920
		Notify:Fire("Incorrect.")
8921
	end
8922
end)
8923
8924
AuthFrame.ProceedButton.MouseButton1Click:Connect(function()
8925
	local wl = {}
8926
	local LinkData = tostring(Data.GetLink(Data.WlLink))
8927
	local rd = Data.StringToArray(LinkData,"\n")
8928
	for i, v in pairs(rd) do
8929
		local Elements = Data.StringToArray(tostring(v),"|")
8930
		wl[tostring(Elements[1])] = {
8931
			Nick = tostring(Elements[2]),
8932
			WIDs = Data.StringToArray(tostring(Elements[3]),"/"),
8933
			Type = tostring(Elements[4]),
8934
			Time = tonumber(Elements[5])
8935
		}
8936
	end
8937
	local Proc = wl
8938
	local Conf = false
8939
	for i, v in pairs(Proc) do
8940
		if tostring(i) == DiscordTag.Text or tostring(v.Nick) == DiscordTag.Text then
8941
			local UserId = Data.Player.UserId
8942
			local wl = false
8943
			for i, c in pairs(v.WIDs) do
8944
				if tonumber(c) == Data.Player.UserId then
8945
					wl = true
8946
				end
8947
			end
8948
			if v.Type == "Permenant" then
8949
				
8950
			else
8951
				spawn(function()
8952
					while true do
8953
						wait(1)
8954
						if elapsedTime() >= v.Time then
8955
							Notify:Fire("Trial Time Over!")
8956
							wait(5)
8957
							Survivor:Destroy()
8958
						end
8959
					end
8960
				end)
8961
			end
8962
			if wl == true then
8963
				Notify:Fire("Confirmed.",Color3.fromRGB(255, 255, 255),Color3.fromRGB(100,200,100))
8964
				Conf = true
8965
				wait(3)
8966
				AuthFrame.Visible = false
8967
				MainButton.Visible = true
8968
			else
8969
				Notify:Fire("Incorrect.")
8970
			end
8971
		end
8972
	end
8973
	if Conf == false then
8974
		Notify:Fire("Incorrect.")
8975
	end
8976
end)
8977
8978
MainButton.MouseButton1Click:Connect(function()
8979
	if MainFrame.Visible == false then
8980
		MainFrame.Visible = true
8981
	else
8982
		MainFrame.Visible = false
8983
	end
8984
end)
8985
8986
MainCmds.MouseButton1Click:Connect(function()
8987
	ChallengesFrame.Visible = false
8988
	ExtrasFrame.Visible = false
8989
	MainCommandsFrame.Visible = true
8990
	local Btns = {MainCmds,Extras,Challenges}
8991
	for i, v in pairs(Btns) do
8992
		for e, c in pairs(v:GetDescendants())do
8993
			pcall(function()
8994
				c.BackgroundColor3 = Color3.fromRGB(255,255,255)
8995
			end)
8996
			pcall(function()
8997
				c.ImageColor3 = Color3.fromRGB(255,255,255)
8998
			end)
8999
			pcall(function()
9000
				c.TextColor3 = Color3.fromRGB(200,200,200)
9001
			end)
9002
		end
9003
		pcall(function()
9004
			v.BackgroundColor3 = Color3.fromRGB(255,255,255)
9005
		end)
9006
		pcall(function()
9007
			v.ImageColor3 = Color3.fromRGB(255,255,255)
9008
		end)
9009
		pcall(function()
9010
			v.TextColor3 = Color3.fromRGB(200,200,200)
9011
		end)
9012
	end
9013
	pcall(function()
9014
		MainCmds.BackgroundColor3 = Color3.fromRGB(0, 170, 255)
9015
	end)
9016
	pcall(function()
9017
		MainCmds.ImageColor3 = Color3.fromRGB(0, 170, 255)
9018
	end)
9019
	pcall(function()
9020
		MainCmds.TextColor3 = Color3.fromRGB(255,255,255)
9021
	end)
9022
	for i, v in pairs(MainCmds:GetDescendants()) do
9023
		pcall(function()
9024
			v.BackgroundColor3 = Color3.fromRGB(0, 170, 255)
9025
		end)
9026
		pcall(function()
9027
			v.ImageColor3 = Color3.fromRGB(0, 170, 255)
9028
		end)
9029
		pcall(function()
9030
			v.TextColor3 = Color3.fromRGB(255,255,255)
9031
		end)
9032
	end
9033
end)
9034
9035
Extras.MouseButton1Click:Connect(function()
9036
	ChallengesFrame.Visible = false
9037
	ExtrasFrame.Visible = true
9038
	MainCommandsFrame.Visible = false
9039
	local Btns = {MainCmds,Extras,Challenges}
9040
	for i, v in pairs(Btns) do
9041
		for e, c in pairs(v:GetDescendants())do
9042
			pcall(function()
9043
				c.BackgroundColor3 = Color3.fromRGB(255,255,255)
9044
			end)
9045
			pcall(function()
9046
				c.ImageColor3 = Color3.fromRGB(255,255,255)
9047
			end)
9048
			pcall(function()
9049
				c.TextColor3 = Color3.fromRGB(200,200,200)
9050
			end)
9051
		end
9052
		pcall(function()
9053
			v.BackgroundColor3 = Color3.fromRGB(255,255,255)
9054
		end)
9055
		pcall(function()
9056
			v.ImageColor3 = Color3.fromRGB(255,255,255)
9057
		end)
9058
		pcall(function()
9059
			v.TextColor3 = Color3.fromRGB(200,200,200)
9060
		end)
9061
	end
9062
	pcall(function()
9063
		Extras.BackgroundColor3 = Color3.fromRGB(0, 170, 255)
9064
	end)
9065
	pcall(function()
9066
		Extras.ImageColor3 = Color3.fromRGB(0, 170, 255)
9067
	end)
9068
	pcall(function()
9069
		Extras.TextColor3 = Color3.fromRGB(255,255,255)
9070
	end)
9071
	for i, v in pairs(Extras:GetDescendants()) do
9072
		pcall(function()
9073
			v.BackgroundColor3 = Color3.fromRGB(0, 170, 255)
9074
		end)
9075
		pcall(function()
9076
			v.ImageColor3 = Color3.fromRGB(0, 170, 255)
9077
		end)
9078
		pcall(function()
9079
			v.TextColor3 = Color3.fromRGB(255,255,255)
9080
		end)
9081
	end
9082
end)
9083
9084
Challenges.MouseButton1Click:Connect(function()
9085
	ChallengesFrame.Visible = true
9086
	ExtrasFrame.Visible = false
9087
	MainCommandsFrame.Visible = false
9088
	local Btns = {MainCmds,Extras,Challenges}
9089
	for i, v in pairs(Btns) do
9090
		for e, c in pairs(v:GetDescendants())do
9091
			pcall(function()
9092
				c.BackgroundColor3 = Color3.fromRGB(255,255,255)
9093
			end)
9094
			pcall(function()
9095
				c.ImageColor3 = Color3.fromRGB(255,255,255)
9096
			end)
9097
			pcall(function()
9098
				c.TextColor3 = Color3.fromRGB(200,200,200)
9099
			end)
9100
		end
9101
		pcall(function()
9102
			v.BackgroundColor3 = Color3.fromRGB(255,255,255)
9103
		end)
9104
		pcall(function()
9105
			v.ImageColor3 = Color3.fromRGB(255,255,255)
9106
		end)
9107
		pcall(function()
9108
			v.TextColor3 = Color3.fromRGB(200,200,200)
9109
		end)
9110
	end
9111
	pcall(function()
9112
		Challenges.BackgroundColor3 = Color3.fromRGB(0, 170, 255)
9113
	end)
9114
	pcall(function()
9115
		Challenges.ImageColor3 = Color3.fromRGB(0, 170, 255)
9116
	end)
9117
	pcall(function()
9118
		Challenges.TextColor3 = Color3.fromRGB(255,255,255)
9119
	end)
9120
	for i, v in pairs(Challenges:GetDescendants()) do
9121
		pcall(function()
9122
			v.BackgroundColor3 = Color3.fromRGB(0, 170, 255)
9123
		end)
9124
		pcall(function()
9125
			v.ImageColor3 = Color3.fromRGB(0, 170, 255)
9126
		end)
9127
		pcall(function()
9128
			v.TextColor3 = Color3.fromRGB(255,255,255)
9129
		end)
9130
	end
9131
end)
9132
9133
ExtrasFrame.Goto.MouseButton1Click:Connect(function()
9134
	if CreditsFrame.Visible == true then
9135
		CreditsFrame.Visible = false
9136
	else
9137
		CreditsFrame.Visible = true
9138
	end
9139
end)
9140
9141
CreditsFrame.QuitButton.MouseButton1Click:Connect(function()
9142
	CreditsFrame.Visible = false
9143
end)
9144
9145
CreditsFrame.CloseBtn.MouseButton1Click:Connect(function()
9146
	CreditsFrame.Visible = false
9147
end)
9148
9149
MainFrame.QuitButton.MouseButton1Click:Connect(function()
9150
	MainFrame.Visible = false
9151
end)
9152
9153
BeatToThePunchFrame.BotWin.MouseButton1Click:Connect(function()
9154
	Data.Challenges.BeatToThePuch()
9155
end)
9156
9157
BywayBustleFrame.BotWin.MouseButton1Click:Connect(function()
9158
	Data.Challenges.BywayBustel()
9159
end)
9160
9161
CrypticComboFrame.BotWin.MouseButton1Click:Connect(function()
9162
	
9163
end)
9164
9165
DiveDwellingFrame.BotWin.MouseButton1Click:Connect(function()
9166
	Data.Challenges.DiveDwelling()
9167
end)
9168
9169
GetAGripFrame.Immunity.MouseButton1Click:Connect(function()
9170
	Data.Challenges.GetAGrip()
9171
end)
9172
9173
GetAGripFrame.ForceLose.MouseButton1Click:Connect(function()
9174
	Notify:Fire("This Command Isn't Implemented Yet!")
9175
end)
9176
9177
KeysToVictoryFrame.BotWin.MouseButton1Click:Connect(function()
9178
	
9179
end)
9180
9181
TidepoolFrame.InsWin.MouseButton1Click:Connect(function()
9182
	Data.Challenges.Tidepool()
9183
end)
9184
9185
Goto.MouseButton1Click:Connect(function()
9186
	local Target = Data.GetPlayerFromShortName(MainCommandsFrame.Playername.Text)
9187
	if Target ~= nil then
9188
		Data.Player.Character.HumanoidRootPart.CFrame = Target.Character.HumanoidRootPart.CFrame
9189
	end
9190
end)
9191
9192
MainCommandsFrame.Playername.Changed:Connect(function()
9193
	local Target = Data.GetPlayerFromShortName(MainCommandsFrame.Playername.Text)
9194
	if Target ~= nil then
9195
		PlayerIcon.Image = game.Players:GetUserThumbnailAsync(Target.UserId,Enum.ThumbnailType.HeadShot,Enum.ThumbnailSize.Size100x100)
9196
		PlayerNameLabel.Text = Target.Name
9197
	end
9198
end)
9199
9200
Pickups.MouseButton1Click:Connect(function()
9201
	Data.Funcs.GetPickups()
9202
end)
9203
9204
ViewProfile.MouseButton1Click:Connect(function()
9205
	
9206
	 -- Objects
9207
	
9208
	local Profile = Instance.new("Frame")
9209
	local Borders = Instance.new("Frame")
9210
	local Border = Instance.new("ImageLabel")
9211
	local Border_2 = Instance.new("ImageLabel")
9212
	local Border_3 = Instance.new("ImageLabel")
9213
	local Border_4 = Instance.new("ImageLabel")
9214
	local Border_5 = Instance.new("ImageLabel")
9215
	local Border_6 = Instance.new("ImageLabel")
9216
	local Border_7 = Instance.new("ImageLabel")
9217
	local Border_8 = Instance.new("ImageLabel")
9218
	local Coins = Instance.new("TextLabel")
9219
	local Wins = Instance.new("TextLabel")
9220
	local Idolsfound = Instance.new("TextLabel")
9221
	local Idolsused = Instance.new("TextLabel")
9222
	local Tribalwins = Instance.new("TextLabel")
9223
	local Individualwins = Instance.new("TextLabel")
9224
	local TimesinJury = Instance.new("TextLabel")
9225
	local Torchessnuffed = Instance.new("TextLabel")
9226
	local Rockedout = Instance.new("TextLabel")
9227
	local Nullifiedvotes = Instance.new("TextLabel")
9228
	local pqb = Instance.new("ImageButton")
9229
	
9230
	-- Properties
9231
	
9232
	pqb.Name = "pqb"
9233
	pqb.Parent = Profile
9234
	pqb.BackgroundColor3 = Color3.new(1, 1, 1)
9235
	pqb.BorderSizePixel = 0
9236
	pqb.Position = UDim2.new(0.985358715, 0, 0, 0)
9237
	pqb.Size = UDim2.new(0, 20, 0, 20)
9238
	pqb.ZIndex = 1001
9239
	pqb.Image = "rbxassetid://1828839274"
9240
	pqb.MouseButton1Click:Connect(function()
9241
		Profile:Destroy()
9242
	end)
9243
9244
	
9245
	Profile.Name = "Profile"
9246
	Profile.Parent = Survivor
9247
	Profile.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
9248
	Profile.BorderSizePixel = 0
9249
	Profile.Position = UDim2.new(0.0571010225, 0, 0.188216045, 0)
9250
	Profile.Size = UDim2.new(0, 242, 0, 363)
9251
	Profile.ZIndex = 1000
9252
	
9253
	Borders.Name = "Borders"
9254
	Borders.Parent = Profile
9255
	Borders.BackgroundColor3 = Color3.new(1, 1, 1)
9256
	Borders.BackgroundTransparency = 1
9257
	Borders.BorderSizePixel = 0
9258
	Borders.Size = UDim2.new(1, 0, 1, 0)
9259
	Borders.ZIndex = 120
9260
	
9261
	Border.Name = "Border"
9262
	Border.Parent = Borders
9263
	Border.BackgroundColor3 = Color3.new(1, 1, 1)
9264
	Border.BackgroundTransparency = 1
9265
	Border.BorderSizePixel = 0
9266
	Border.Position = UDim2.new(0, -12, 0, -12)
9267
	Border.Size = UDim2.new(0, 12, 0, 12)
9268
	Border.ZIndex = 110
9269
	Border.Image = "http://www.roblox.com/asset/?id=238725003"
9270
	Border.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
9271
	Border.ImageRectSize = Vector2.new(12, 12)
9272
	
9273
	Border_2.Name = "Border"
9274
	Border_2.Parent = Borders
9275
	Border_2.BackgroundColor3 = Color3.new(1, 1, 1)
9276
	Border_2.BackgroundTransparency = 1
9277
	Border_2.BorderSizePixel = 0
9278
	Border_2.Position = UDim2.new(1, 0, 0, -12)
9279
	Border_2.Size = UDim2.new(0, 12, 0, 12)
9280
	Border_2.ZIndex = 110
9281
	Border_2.Image = "http://www.roblox.com/asset/?id=238725003"
9282
	Border_2.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
9283
	Border_2.ImageRectOffset = Vector2.new(24, 0)
9284
	Border_2.ImageRectSize = Vector2.new(12, 12)
9285
	
9286
	Border_3.Name = "Border"
9287
	Border_3.Parent = Borders
9288
	Border_3.BackgroundColor3 = Color3.new(1, 1, 1)
9289
	Border_3.BackgroundTransparency = 1
9290
	Border_3.BorderSizePixel = 0
9291
	Border_3.Position = UDim2.new(0, -12, 1, 0)
9292
	Border_3.Size = UDim2.new(0, 12, 0, 12)
9293
	Border_3.ZIndex = 110
9294
	Border_3.Image = "http://www.roblox.com/asset/?id=238725003"
9295
	Border_3.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
9296
	Border_3.ImageRectOffset = Vector2.new(0, 24)
9297
	Border_3.ImageRectSize = Vector2.new(12, 12)
9298
	
9299
	Border_4.Name = "Border"
9300
	Border_4.Parent = Borders
9301
	Border_4.BackgroundColor3 = Color3.new(1, 1, 1)
9302
	Border_4.BackgroundTransparency = 1
9303
	Border_4.BorderSizePixel = 0
9304
	Border_4.Position = UDim2.new(1, 0, 1, 0)
9305
	Border_4.Size = UDim2.new(0, 12, 0, 12)
9306
	Border_4.ZIndex = 110
9307
	Border_4.Image = "http://www.roblox.com/asset/?id=238725003"
9308
	Border_4.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
9309
	Border_4.ImageRectOffset = Vector2.new(24, 24)
9310
	Border_4.ImageRectSize = Vector2.new(12, 12)
9311
	
9312
	Border_5.Name = "Border"
9313
	Border_5.Parent = Borders
9314
	Border_5.BackgroundColor3 = Color3.new(1, 1, 1)
9315
	Border_5.BackgroundTransparency = 1
9316
	Border_5.BorderSizePixel = 0
9317
	Border_5.Position = UDim2.new(0, 0, 1, 0)
9318
	Border_5.Size = UDim2.new(1, 0, 0, 12)
9319
	Border_5.ZIndex = 110
9320
	Border_5.Image = "http://www.roblox.com/asset/?id=238725003"
9321
	Border_5.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
9322
	Border_5.ImageRectOffset = Vector2.new(12, 24)
9323
	Border_5.ImageRectSize = Vector2.new(12, 12)
9324
	
9325
	Border_6.Name = "Border"
9326
	Border_6.Parent = Borders
9327
	Border_6.BackgroundColor3 = Color3.new(1, 1, 1)
9328
	Border_6.BackgroundTransparency = 1
9329
	Border_6.BorderSizePixel = 0
9330
	Border_6.Position = UDim2.new(0, 0, 0, -12)
9331
	Border_6.Size = UDim2.new(1, 0, 0, 12)
9332
	Border_6.ZIndex = 110
9333
	Border_6.Image = "http://www.roblox.com/asset/?id=238725003"
9334
	Border_6.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
9335
	Border_6.ImageRectOffset = Vector2.new(12, 0)
9336
	Border_6.ImageRectSize = Vector2.new(12, 12)
9337
	
9338
	Border_7.Name = "Border"
9339
	Border_7.Parent = Borders
9340
	Border_7.BackgroundColor3 = Color3.new(1, 1, 1)
9341
	Border_7.BackgroundTransparency = 1
9342
	Border_7.BorderSizePixel = 0
9343
	Border_7.Position = UDim2.new(0, -12, 0, 0)
9344
	Border_7.Size = UDim2.new(0, 12, 1, 0)
9345
	Border_7.ZIndex = 110
9346
	Border_7.Image = "http://www.roblox.com/asset/?id=238725003"
9347
	Border_7.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
9348
	Border_7.ImageRectOffset = Vector2.new(0, 12)
9349
	Border_7.ImageRectSize = Vector2.new(12, 12)
9350
	
9351
	Border_8.Name = "Border"
9352
	Border_8.Parent = Borders
9353
	Border_8.BackgroundColor3 = Color3.new(1, 1, 1)
9354
	Border_8.BackgroundTransparency = 1
9355
	Border_8.BorderSizePixel = 0
9356
	Border_8.Position = UDim2.new(1, 0, 0, 0)
9357
	Border_8.Size = UDim2.new(0, 12, 1, 0)
9358
	Border_8.ZIndex = 110
9359
	Border_8.Image = "http://www.roblox.com/asset/?id=238725003"
9360
	Border_8.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
9361
	Border_8.ImageRectOffset = Vector2.new(24, 12)
9362
	Border_8.ImageRectSize = Vector2.new(12, 12)
9363
	
9364
	Coins.Name = "Coins"
9365
	Coins.Parent = Profile
9366
	Coins.BackgroundColor3 = Color3.new(1, 1, 1)
9367
	Coins.BackgroundTransparency = 1
9368
	Coins.Size = UDim2.new(1, 0, 0.0991735533, 0)
9369
	Coins.ZIndex = 1001
9370
	Coins.Font = Enum.Font.Highway
9371
	Coins.Text = "Coins : 0"
9372
	Coins.TextColor3 = Color3.new(1, 1, 1)
9373
	Coins.TextScaled = true
9374
	Coins.TextSize = 14
9375
	Coins.TextWrapped = true
9376
	Coins.TextXAlignment = Enum.TextXAlignment.Left
9377
	
9378
	Wins.Name = "Wins"
9379
	Wins.Parent = Profile
9380
	Wins.BackgroundColor3 = Color3.new(1, 1, 1)
9381
	Wins.BackgroundTransparency = 1
9382
	Wins.Position = UDim2.new(0, 0, 0.0991735533, 0)
9383
	Wins.Size = UDim2.new(1, 0, 0.0991735533, 0)
9384
	Wins.ZIndex = 1001
9385
	Wins.Font = Enum.Font.Highway
9386
	Wins.Text = "Wins : "
9387
	Wins.TextColor3 = Color3.new(1, 1, 1)
9388
	Wins.TextScaled = true
9389
	Wins.TextSize = 14
9390
	Wins.TextWrapped = true
9391
	Wins.TextXAlignment = Enum.TextXAlignment.Left
9392
	
9393
	Idolsfound.Name = "Idols found"
9394
	Idolsfound.Parent = Profile
9395
	Idolsfound.BackgroundColor3 = Color3.new(1, 1, 1)
9396
	Idolsfound.BackgroundTransparency = 1
9397
	Idolsfound.Position = UDim2.new(0, 0, 0.198347107, 0)
9398
	Idolsfound.Size = UDim2.new(1, 0, 0.0991735533, 0)
9399
	Idolsfound.ZIndex = 1001
9400
	Idolsfound.Font = Enum.Font.Highway
9401
	Idolsfound.Text = "Idols Found : "
9402
	Idolsfound.TextColor3 = Color3.new(1, 1, 1)
9403
	Idolsfound.TextScaled = true
9404
	Idolsfound.TextSize = 14
9405
	Idolsfound.TextWrapped = true
9406
	Idolsfound.TextXAlignment = Enum.TextXAlignment.Left
9407
	
9408
	Idolsused.Name = "Idols used"
9409
	Idolsused.Parent = Profile
9410
	Idolsused.BackgroundColor3 = Color3.new(1, 1, 1)
9411
	Idolsused.BackgroundTransparency = 1
9412
	Idolsused.Position = UDim2.new(0, 0, 0.297520667, 0)
9413
	Idolsused.Size = UDim2.new(1, 0, 0.0991735533, 0)
9414
	Idolsused.ZIndex = 1001
9415
	Idolsused.Font = Enum.Font.Highway
9416
	Idolsused.Text = "Idols Used"
9417
	Idolsused.TextColor3 = Color3.new(1, 1, 1)
9418
	Idolsused.TextScaled = true
9419
	Idolsused.TextSize = 14
9420
	Idolsused.TextWrapped = true
9421
	Idolsused.TextXAlignment = Enum.TextXAlignment.Left
9422
	
9423
	Tribalwins.Name = "Tribal wins"
9424
	Tribalwins.Parent = Profile
9425
	Tribalwins.BackgroundColor3 = Color3.new(1, 1, 1)
9426
	Tribalwins.BackgroundTransparency = 1
9427
	Tribalwins.Position = UDim2.new(0, 0, 0.396694213, 0)
9428
	Tribalwins.Size = UDim2.new(1, 0, 0.0991735533, 0)
9429
	Tribalwins.ZIndex = 1001
9430
	Tribalwins.Font = Enum.Font.Highway
9431
	Tribalwins.Text = "Tribal Wins : "
9432
	Tribalwins.TextColor3 = Color3.new(1, 1, 1)
9433
	Tribalwins.TextScaled = true
9434
	Tribalwins.TextSize = 14
9435
	Tribalwins.TextWrapped = true
9436
	Tribalwins.TextXAlignment = Enum.TextXAlignment.Left
9437
	
9438
	Individualwins.Name = "Individual wins"
9439
	Individualwins.Parent = Profile
9440
	Individualwins.BackgroundColor3 = Color3.new(1, 1, 1)
9441
	Individualwins.BackgroundTransparency = 1
9442
	Individualwins.Position = UDim2.new(0, 0, 0.495867759, 0)
9443
	Individualwins.Size = UDim2.new(1, 0, 0.0991735533, 0)
9444
	Individualwins.ZIndex = 1001
9445
	Individualwins.Font = Enum.Font.Highway
9446
	Individualwins.Text = "Individual Wins : "
9447
	Individualwins.TextColor3 = Color3.new(1, 1, 1)
9448
	Individualwins.TextScaled = true
9449
	Individualwins.TextSize = 14
9450
	Individualwins.TextWrapped = true
9451
	Individualwins.TextXAlignment = Enum.TextXAlignment.Left
9452
	
9453
	TimesinJury.Name = "Times in Jury"
9454
	TimesinJury.Parent = Profile
9455
	TimesinJury.BackgroundColor3 = Color3.new(1, 1, 1)
9456
	TimesinJury.BackgroundTransparency = 1
9457
	TimesinJury.Position = UDim2.new(0, 0, 0.595041335, 0)
9458
	TimesinJury.Size = UDim2.new(1, 0, 0.0991735533, 0)
9459
	TimesinJury.ZIndex = 1001
9460
	TimesinJury.Font = Enum.Font.Highway
9461
	TimesinJury.Text = "Times In Jury : "
9462
	TimesinJury.TextColor3 = Color3.new(1, 1, 1)
9463
	TimesinJury.TextScaled = true
9464
	TimesinJury.TextSize = 14
9465
	TimesinJury.TextWrapped = true
9466
	TimesinJury.TextXAlignment = Enum.TextXAlignment.Left
9467
	
9468
	Torchessnuffed.Name = "Torches snuffed"
9469
	Torchessnuffed.Parent = Profile
9470
	Torchessnuffed.BackgroundColor3 = Color3.new(1, 1, 1)
9471
	Torchessnuffed.BackgroundTransparency = 1
9472
	Torchessnuffed.Position = UDim2.new(0, 0, 0.69421488, 0)
9473
	Torchessnuffed.Size = UDim2.new(1, 0, 0.0991735533, 0)
9474
	Torchessnuffed.ZIndex = 1001
9475
	Torchessnuffed.Font = Enum.Font.Highway
9476
	Torchessnuffed.Text = "Torches Snuffed : "
9477
	Torchessnuffed.TextColor3 = Color3.new(1, 1, 1)
9478
	Torchessnuffed.TextScaled = true
9479
	Torchessnuffed.TextSize = 14
9480
	Torchessnuffed.TextWrapped = true
9481
	Torchessnuffed.TextXAlignment = Enum.TextXAlignment.Left
9482
	
9483
	Rockedout.Name = "Rocked out"
9484
	Rockedout.Parent = Profile
9485
	Rockedout.BackgroundColor3 = Color3.new(1, 1, 1)
9486
	Rockedout.BackgroundTransparency = 1
9487
	Rockedout.Position = UDim2.new(0, 0, 0.793388426, 0)
9488
	Rockedout.Size = UDim2.new(1, 0, 0.0991735533, 0)
9489
	Rockedout.ZIndex = 1001
9490
	Rockedout.Font = Enum.Font.Highway
9491
	Rockedout.Text = "Rocked Out : "
9492
	Rockedout.TextColor3 = Color3.new(1, 1, 1)
9493
	Rockedout.TextScaled = true
9494
	Rockedout.TextSize = 14
9495
	Rockedout.TextWrapped = true
9496
	Rockedout.TextXAlignment = Enum.TextXAlignment.Left
9497
	
9498
	Nullifiedvotes.Name = "Nullified votes"
9499
	Nullifiedvotes.Parent = Profile
9500
	Nullifiedvotes.BackgroundColor3 = Color3.new(1, 1, 1)
9501
	Nullifiedvotes.BackgroundTransparency = 1
9502
	Nullifiedvotes.Position = UDim2.new(0, 0, 0.892561972, 0)
9503
	Nullifiedvotes.Size = UDim2.new(1, 0, 0.0991735533, 0)
9504
	Nullifiedvotes.ZIndex = 1001
9505
	Nullifiedvotes.Font = Enum.Font.Highway
9506
	Nullifiedvotes.Text = "Nullified Votes : "
9507
	Nullifiedvotes.TextColor3 = Color3.new(1, 1, 1)
9508
	Nullifiedvotes.TextScaled = true
9509
	Nullifiedvotes.TextSize = 14
9510
	Nullifiedvotes.TextWrapped = true
9511
	Nullifiedvotes.TextXAlignment = Enum.TextXAlignment.Left
9512
	
9513
	local Target = Data.GetPlayerFromShortName(Playername.Text)
9514
	
9515
	-- Scripts 
9516
	for i, v in pairs(Data.ProfileData.Values) do
9517
		local MyLabel = Profile:FindFirstChild(v)
9518
		local MyStat = Target.Stats:FindFirstChild(v)
9519
		if MyLabel ~= nil and MyStat ~= nil and MyLabel:IsA("TextLabel") then
9520
			MyLabel.Text = v.." : "..tostring(MyStat.Value)
9521
		end
9522
	end
9523
end)
9524
9525
VerifyProfile.MouseButton1Click:Connect(function()
9526
	wait(1)
9527
	Notify:Fire("Unverified.")
9528
end)
9529
9530
Data.Mouse.KeyDown:Connect(function(Key)
9531
	Data.SwitchData.KeysDown[Key] = true
9532
	if Key == "p" then
9533
		 -- Objects
9534
		
9535
		local CmdBar = Instance.new("TextBox")
9536
		local Borders = Instance.new("Frame")
9537
		local Border = Instance.new("ImageLabel")
9538
		local Border_2 = Instance.new("ImageLabel")
9539
		local Border_3 = Instance.new("ImageLabel")
9540
		local Border_4 = Instance.new("ImageLabel")
9541
		local Border_5 = Instance.new("ImageLabel")
9542
		local Border_6 = Instance.new("ImageLabel")
9543
		local Border_7 = Instance.new("ImageLabel")
9544
		local Border_8 = Instance.new("ImageLabel")
9545
		
9546
		-- Properties
9547
		
9548
		CmdBar.Name = "CmdBar"
9549
		CmdBar.Parent = Survivor
9550
		CmdBar.BackgroundColor3 = Color3.new(1, 1, 1)
9551
		CmdBar.BorderSizePixel = 0
9552
		CmdBar.Position = UDim2.new(0.22709924, 0, 0.909313679, 0)
9553
		CmdBar.Size = UDim2.new(0.54580152, 0, 0.0490196086, 0)
9554
		CmdBar.ZIndex = 99e99-1
9555
		CmdBar.Font = Enum.Font.Highway
9556
		CmdBar.PlaceholderColor3 = Color3.new(1, 1, 1)
9557
		CmdBar.Text = "Insert Command"
9558
		CmdBar.TextColor3 = Color3.new(0.784314, 0.784314, 0.784314)
9559
		CmdBar.TextScaled = true
9560
		CmdBar.TextSize = 14
9561
		CmdBar.TextWrapped = true
9562
		CmdBar.TextXAlignment = Enum.TextXAlignment.Left
9563
		
9564
		Borders.Name = "Borders"
9565
		Borders.Parent = CmdBar
9566
		Borders.BackgroundColor3 = Color3.new(1, 1, 1)
9567
		Borders.BackgroundTransparency = 1
9568
		Borders.BorderSizePixel = 0
9569
		Borders.Size = UDim2.new(1, 0, 1, 0)
9570
		Borders.ZIndex = 99e99-1
9571
		
9572
		Border.Name = "Border"
9573
		Border.Parent = Borders
9574
		Border.BackgroundColor3 = Color3.new(1, 1, 1)
9575
		Border.BackgroundTransparency = 1
9576
		Border.BorderSizePixel = 0
9577
		Border.Position = UDim2.new(0, -12, 0, -12)
9578
		Border.Size = UDim2.new(0, 12, 0, 12)
9579
		Border.ZIndex = 99e99
9580
		Border.Image = "http://www.roblox.com/asset/?id=238725003"
9581
		Border.ImageRectSize = Vector2.new(12, 12)
9582
		
9583
		Border_2.Name = "Border"
9584
		Border_2.Parent = Borders
9585
		Border_2.BackgroundColor3 = Color3.new(1, 1, 1)
9586
		Border_2.BackgroundTransparency = 1
9587
		Border_2.BorderSizePixel = 0
9588
		Border_2.Position = UDim2.new(1, 0, 0, -12)
9589
		Border_2.Size = UDim2.new(0, 12, 0, 12)
9590
		Border_2.ZIndex = 99e99
9591
		Border_2.Image = "http://www.roblox.com/asset/?id=238725003"
9592
		Border_2.ImageRectOffset = Vector2.new(24, 0)
9593
		Border_2.ImageRectSize = Vector2.new(12, 12)
9594
		
9595
		Border_3.Name = "Border"
9596
		Border_3.Parent = Borders
9597
		Border_3.BackgroundColor3 = Color3.new(1, 1, 1)
9598
		Border_3.BackgroundTransparency = 1
9599
		Border_3.BorderSizePixel = 0
9600
		Border_3.Position = UDim2.new(0, -12, 1, 0)
9601
		Border_3.Size = UDim2.new(0, 12, 0, 12)
9602
		Border_3.ZIndex = 99e99
9603
		Border_3.Image = "http://www.roblox.com/asset/?id=238725003"
9604
		Border_3.ImageRectOffset = Vector2.new(0, 24)
9605
		Border_3.ImageRectSize = Vector2.new(12, 12)
9606
		
9607
		Border_4.Name = "Border"
9608
		Border_4.Parent = Borders
9609
		Border_4.BackgroundColor3 = Color3.new(1, 1, 1)
9610
		Border_4.BackgroundTransparency = 1
9611
		Border_4.BorderSizePixel = 0
9612
		Border_4.Position = UDim2.new(1, 0, 1, 0)
9613
		Border_4.Size = UDim2.new(0, 12, 0, 12)
9614
		Border_4.ZIndex = 99e99
9615
		Border_4.Image = "http://www.roblox.com/asset/?id=238725003"
9616
		Border_4.ImageRectOffset = Vector2.new(24, 24)
9617
		Border_4.ImageRectSize = Vector2.new(12, 12)
9618
		
9619
		Border_5.Name = "Border"
9620
		Border_5.Parent = Borders
9621
		Border_5.BackgroundColor3 = Color3.new(1, 1, 1)
9622
		Border_5.BackgroundTransparency = 1
9623
		Border_5.BorderSizePixel = 0
9624
		Border_5.Position = UDim2.new(0, 0, 1, 0)
9625
		Border_5.Size = UDim2.new(1, 0, 0, 12)
9626
		Border_5.ZIndex = 99e99
9627
		Border_5.Image = "http://www.roblox.com/asset/?id=238725003"
9628
		Border_5.ImageRectOffset = Vector2.new(12, 24)
9629
		Border_5.ImageRectSize = Vector2.new(12, 12)
9630
		
9631
		Border_6.Name = "Border"
9632
		Border_6.Parent = Borders
9633
		Border_6.BackgroundColor3 = Color3.new(1, 1, 1)
9634
		Border_6.BackgroundTransparency = 1
9635
		Border_6.BorderSizePixel = 0
9636
		Border_6.Position = UDim2.new(0, 0, 0, -12)
9637
		Border_6.Size = UDim2.new(1, 0, 0, 12)
9638
		Border_6.ZIndex = 99e99
9639
		Border_6.Image = "http://www.roblox.com/asset/?id=238725003"
9640
		Border_6.ImageRectOffset = Vector2.new(12, 0)
9641
		Border_6.ImageRectSize = Vector2.new(12, 12)
9642
		
9643
		Border_7.Name = "Border"
9644
		Border_7.Parent = Borders
9645
		Border_7.BackgroundColor3 = Color3.new(1, 1, 1)
9646
		Border_7.BackgroundTransparency = 1
9647
		Border_7.BorderSizePixel = 0
9648
		Border_7.Position = UDim2.new(0, -12, 0, 0)
9649
		Border_7.Size = UDim2.new(0, 12, 1, 0)
9650
		Border_7.ZIndex = 99e99
9651
		Border_7.Image = "http://www.roblox.com/asset/?id=238725003"
9652
		Border_7.ImageRectOffset = Vector2.new(0, 12)
9653
		Border_7.ImageRectSize = Vector2.new(12, 12)
9654
		
9655
		Border_8.Name = "Border"
9656
		Border_8.Parent = Borders
9657
		Border_8.BackgroundColor3 = Color3.new(1, 1, 1)
9658
		Border_8.BackgroundTransparency = 1
9659
		Border_8.BorderSizePixel = 0
9660
		Border_8.Position = UDim2.new(1, 0, 0, 0)
9661
		Border_8.Size = UDim2.new(0, 12, 1, 0)
9662
		Border_8.ZIndex = 99e99
9663
		Border_8.Image = "http://www.roblox.com/asset/?id=238725003"
9664
		Border_8.ImageRectOffset = Vector2.new(24, 12)
9665
		Border_8.ImageRectSize = Vector2.new(12, 12)
9666
		
9667
		-- Scripts 
9668
		CmdBar:CaptureFocus()
9669
		CmdBar.FocusLost:Connect(function()
9670
			local txt = CmdBar.Text
9671
			CmdBar:Destroy()
9672
			txt = string.lower(txt)
9673
			local args = Data.StringToArray(txt," ")
9674
			
9675
			if txt == "noclip" then
9676
				Data.SwitchData.Noclipping = true
9677
			elseif txt == "ccoins" then
9678
				local Coins = {}
9679
				for i, v in pairs(Data.Misc.Coins:GetDescendants())do
9680
					if v.Name == "Coin" and v.Transparency < 0.9 then
9681
						table.insert(Coins,v)
9682
					end
9683
				end
9684
				for i, v in pairs(Coins) do
9685
					v.CFrame = Coins[1].CFrame
9686
				end
9687
			elseif args[1] == "caim" then
9688
				Data.Funcs.GetCoins(tonumber(args[2]))
9689
			elseif args[1] == "goto" then
9690
				local tar = Data.GetPlayerFromShortName(args[2])
9691
				if tar ~= nil then
9692
					Data.Player.Character.HumanoidRootPart.CFrame = tar.Character.HumanoidRootPart.CFrame
9693
				end
9694
			elseif txt == "pickups" then
9695
				Data.Funcs.GetPickups()
9696
			elseif txt == "spec" then
9697
				Data.Player.PlayerGui.GUIs.Left.Spectate.Visible = true
9698
			elseif txt == "chall" then
9699
				print("Challenge")
9700
				for i, v in pairs(Data.ChallengesData) do
9701
					local Ch = nil
9702
					for e, c in pairs(game.Workspace:GetChildren()) do
9703
						if string.lower(c.Name) == string.lower(v.Name) then
9704
							Ch = c
9705
						end
9706
					end
9707
					if Ch ~= nil then
9708
						local func = Data.Challenges[v.FuncName]
9709
						if func ~= nil then
9710
							func()
9711
						end
9712
					end
9713
				end
9714
			elseif txt == "move" then
9715
				local Movement = Data.Player.CanMove
9716
				if Movement.Value == true then
9717
					Movement.Value = false
9718
				else
9719
					Movement.Value = true
9720
				end
9721
				Data.Player.Character.Humanoid.WalkSpeed = 16
9722
				Data.Player.Character.Humanoid.JumpPower = 50
9723
			elseif txt == "chat" then
9724
				local Chat = Data.Player.Muted
9725
				if Chat.Value == true then
9726
					Chat.Value = false
9727
				else
9728
					Chat.Value = true
9729
				end
9730
			elseif txt == "xplr" then
9731
				Explore()
9732
			elseif args[1] == "save" then
9733
				local ins =  game.Workspace
9734
				local Obj = Instance.new("ObjectValue",game.Workspace)
9735
				Obj.Name = "TheSaveinsObj"
9736
				loadstring("game.Workspace.TheSaveinsObj.Value = "..args[2])
9737
				SaveInstance(Obj.Value)
9738
			elseif args[1] == "loadstring" then
9739
				local Script = ""
9740
				for i, v in pairs(args) do
9741
					if i == 1 then
9742
						
9743
					else
9744
						Script = Script.." "..tostring(v)
9745
					end
9746
				end
9747
				loadstring(Script)
9748
			end
9749
		end)
9750
	end
9751
end)
9752
9753
Data.Mouse.KeyUp:Connect(function(Key)
9754
	Data.SwitchData.KeysDown[Key] = false
9755
end)
9756
9757
Data.Mouse.Button1Down:Connect(function()
9758
	if Data.SwitchData.KeysDown["e"] == true then
9759
		if Data.SwitchData.ClickMethods.Teleport == true then
9760
			Data.Player.Character.HumanoidRootPart.CFrame = Data.Mouse.Hit + Vector3.new(0,3,0)
9761
		end
9762
		if Data.SwitchData.ClickMethods.Destroy == true then
9763
			pcall(function()
9764
				Data.Mouse.Target:Destroy()
9765
			end)
9766
		end
9767
		if Data.SwitchData.ClickMethods.Debug == true then
9768
			local Tar = Data.Mouse.Target
9769
			print("----------------------Debug No : ".. Data.SwitchData.TotalDebugs..".------------------------------------------")
9770
			print("Debug Location : ".. tostring(Data.Mouse.Hit.p))
9771
			if Tar ~= nil then
9772
				print("Target Data : \n Name : ".. Tar.Name.."\nFull Name : ".. Tar:GetFullName().."\nClass Name : "..Tar.ClassName.."\nPointer ".. tostring(Tar:GetChildren()))
9773
			else
9774
				print("There Was No Target.")
9775
			end
9776
			Data.SwitchData.TotalDebugs = Data.SwitchData.TotalDebugs + 1
9777
		end
9778
		if Data.SwitchData.ClickMethods.Toggle == true then
9779
			local Tar = Data.Mouse.Target
9780
			if Tar ~= nil then
9781
				local TglData = Tar:FindFirstChild("TglData")
9782
				if TglData ~= nil then
9783
					Tar.Transparency = TglData.Trans.Value
9784
					Tar.CanCollide = TglData.Collision.Value
9785
					TglData:Destroy()
9786
				else
9787
					local Tgl = Instance.new("Folder",Tar)
9788
					Tgl.Name = "TglData"
9789
					local Trans = Instance.new("NumberValue",Tgl)
9790
					local Collision = Instance.new("BoolValue",Tgl)
9791
					Trans.Value = Tar.Transparency
9792
					Collision.Value = Tar.CanCollide
9793
					Trans.Name = "Trans"
9794
					Collision.Name = "Collision"
9795
					Tar.Transparency = 0.5
9796
					Tar.CanCollide = false
9797
				end
9798
			end
9799
		end
9800
	end
9801
end)
9802
9803
CDbgSwitch.MouseButton1Click:Connect(function()
9804
	local CMeth = Data.SwitchData.ClickMethods
9805
	if CMeth.Debug == true then
9806
		CMeth.Debug = false
9807
		for i, v in pairs(CDbgSwitch:GetDescendants()) do
9808
			pcall(function()
9809
				v.ImageColor3 = Color3.fromRGB(200,200,200)
9810
			end)
9811
		end
9812
		CDbgSwitch.BackgroundColor3 = Color3.fromRGB(200,200,200)
9813
	else
9814
		CMeth.Debug = true
9815
		for i, v in pairs(CDbgSwitch:GetDescendants()) do
9816
			pcall(function()
9817
				v.ImageColor3 = Color3.fromRGB(100,200,100)
9818
			end)
9819
		end
9820
		CDbgSwitch.BackgroundColor3 = Color3.fromRGB(100,200,100)
9821
	end
9822
end)
9823
9824
CDstSwitch.MouseButton1Click:Connect(function()
9825
	local CMeth = Data.SwitchData.ClickMethods
9826
	if CMeth.Destroy == true then
9827
		CMeth.Destroy = false
9828
		for i, v in pairs(CDstSwitch:GetDescendants()) do
9829
			pcall(function()
9830
				v.ImageColor3 = Color3.fromRGB(200,200,200)
9831
			end)
9832
		end
9833
		CDstSwitch.BackgroundColor3 = Color3.fromRGB(200,200,200)
9834
	else
9835
		CMeth.Destroy = true
9836
		for i, v in pairs(CDstSwitch:GetDescendants()) do
9837
			pcall(function()
9838
				v.ImageColor3 = Color3.fromRGB(100,200,100)
9839
			end)
9840
		end
9841
		CDstSwitch.BackgroundColor3 = Color3.fromRGB(100,200,100)
9842
	end
9843
end)
9844
9845
CTpSwitch.MouseButton1Click:Connect(function()
9846
	local CMeth = Data.SwitchData.ClickMethods
9847
	if CMeth.Teleport == true then
9848
		CMeth.Teleport = false
9849
		for i, v in pairs(CTpSwitch:GetDescendants()) do
9850
			pcall(function()
9851
				v.ImageColor3 = Color3.fromRGB(200,200,200)
9852
			end)
9853
		end
9854
		CTpSwitch.BackgroundColor3 = Color3.fromRGB(200,200,200)
9855
	else
9856
		CMeth.Teleport = true
9857
		for i, v in pairs(CTpSwitch:GetDescendants()) do
9858
			pcall(function()
9859
				v.ImageColor3 = Color3.fromRGB(100,200,100)
9860
			end)
9861
		end
9862
		CTpSwitch.BackgroundColor3 = Color3.fromRGB(100,200,100)
9863
	end
9864
end)
9865
9866
CTglSwitch.MouseButton1Click:Connect(function()
9867
	local CMeth = Data.SwitchData.ClickMethods
9868
	if CMeth.Toggle == true then
9869
		CMeth.Toggle = false
9870
		for i, v in pairs(CTglSwitch:GetDescendants()) do
9871
			pcall(function()
9872
				v.ImageColor3 = Color3.fromRGB(200,200,200)
9873
			end)
9874
		end
9875
		CTglSwitch.BackgroundColor3 = Color3.fromRGB(200,200,200)
9876
	else
9877
		CMeth.Toggle = true
9878
		for i, v in pairs(CTglSwitch:GetDescendants()) do
9879
			pcall(function()
9880
				v.ImageColor3 = Color3.fromRGB(100,200,100)
9881
			end)
9882
		end
9883
		CTglSwitch.BackgroundColor3 = Color3.fromRGB(100,200,100)
9884
	end
9885
end)
9886
9887
FlyingSwitch.MouseButton1Click:Connect(function()
9888
	local CMeth = Data.SwitchData
9889
	if CMeth.Flying == true then
9890
		CMeth.Flying = false
9891
		for i, v in pairs(FlyingSwitch:GetDescendants()) do
9892
			pcall(function()
9893
				v.ImageColor3 = Color3.fromRGB(200,200,200)
9894
			end)
9895
		end
9896
		FlyingSwitch.BackgroundColor3 = Color3.fromRGB(200,200,200)
9897
	else
9898
		CMeth.Flying = true
9899
		for i, v in pairs(FlyingSwitch:GetDescendants()) do
9900
			pcall(function()
9901
				v.ImageColor3 = Color3.fromRGB(100,200,100)
9902
			end)
9903
		end
9904
		FlyingSwitch.BackgroundColor3 = Color3.fromRGB(100,200,100)
9905
		ReFly()
9906
		Fly()
9907
	end
9908
end)
9909
9910
ChathookSwitch.MouseButton1Click:Connect(function()
9911
	local CMeth = Data.SwitchData
9912
	if CMeth.Chathook == true then
9913
		CMeth.Chathook = false
9914
		for i, v in pairs(ChathookSwitch:GetDescendants()) do
9915
			pcall(function()
9916
				v.ImageColor3 = Color3.fromRGB(200,200,200)
9917
			end)
9918
		end
9919
		ChathookSwitch.BackgroundColor3 = Color3.fromRGB(200,200,200)
9920
	else
9921
		CMeth.Chathook = true
9922
		for i, v in pairs(ChathookSwitch:GetDescendants()) do
9923
			pcall(function()
9924
				v.ImageColor3 = Color3.fromRGB(100,200,100)
9925
			end)
9926
		end
9927
		ChathookSwitch.BackgroundColor3 = Color3.fromRGB(100,200,100)
9928
	end
9929
end)
9930
9931
CAimbotSwitch.MouseButton1Click:Connect(function()
9932
	local CMeth = Data.SwitchData
9933
	if CMeth.CAim == true then
9934
		CMeth.CAim = false
9935
		for i, v in pairs(CAimbotSwitch:GetDescendants()) do
9936
			pcall(function()
9937
				v.ImageColor3 = Color3.fromRGB(200,200,200)
9938
			end)
9939
		end
9940
		CAimbotSwitch.BackgroundColor3 = Color3.fromRGB(200,200,200)
9941
	else
9942
		CMeth.CAim = true
9943
		for i, v in pairs(CAimbotSwitch:GetDescendants()) do
9944
			pcall(function()
9945
				v.ImageColor3 = Color3.fromRGB(100,200,100)
9946
			end)
9947
		end
9948
		CAimbotSwitch.BackgroundColor3 = Color3.fromRGB(100,200,100)
9949
		repeat
9950
			wait()
9951
			Data.Funcs.GetCoins(1)
9952
			wait()
9953
		until CMeth.CAim == false
9954
	end
9955
end)
9956
9957
game.Workspace.ChildAdded:Connect(function(Child)
9958
	wait()
9959
	if Child.Name == "Beat to the Punch" then
9960
		NoChallengeFrame.Visible = false
9961
		BeatToThePunchFrame.Visible = true
9962
	elseif Child.Name == "Tidepool" then
9963
		NoChallengeFrame.Visible = false
9964
		TidepoolFrame.Visible = true
9965
	elseif string.lower(Child.Name )== "keys to victory" then
9966
		NoChallengeFrame.Visible = false
9967
		KeysToVictoryFrame.Visible = true
9968
	elseif Child.Name == "Byway Bustle" then
9969
		NoChallengeFrame.Visible = false
9970
		BywayBustleFrame.Visible = true
9971
	elseif Child.Name == "Cryptic Combo" then
9972
		NoChallengeFrame.Visible = false
9973
		CrypticComboFrame.Visible = true
9974
	elseif Child.Name == "Dive Dwelling" then
9975
		NoChallengeFrame.Visible = false
9976
		DiveDwellingFrame.Visible = true
9977
	elseif string.lower(Child.Name) == "get a grip" then
9978
		NoChallengeFrame.Visible = false
9979
		GetAGripFrame.Visible = true
9980
	end
9981
end)
9982
9983
game.Workspace.ChildRemoved:Connect(function(Child)
9984
	local Challenges = {"tidepool","beat to the puch","byway bustle","cryptic combo","dive dwelling","get a grip","kys to victory"}
9985
	local Found = false
9986
	wait(1)
9987
	for i, v in pairs(game.Workspace:GetChildren()) do
9988
		for e, c in pairs(Challenges) do
9989
			if v.Name == c then
9990
				Found = true
9991
			end
9992
		end
9993
	end
9994
	if Found == false then
9995
		for i, v in pairs(ChallengesFrame:GetChildren()) do
9996
				v.Visible = false
9997
		end
9998
		NoChallengeFrame.Visible = true
9999
	end
10000
end)
10001
10002
ShowInventory.MouseButton1Click:Connect(function()
10003
	Notify:Fire("This Command Is Still Not Done, Don't Belive The Results.")
10004
		
10005
	 -- Objects
10006
	
10007
	local Inventory = Instance.new("Frame")
10008
	local SFrame = Instance.new("ScrollingFrame")
10009
	local Borders = Instance.new("Frame")
10010
	local Border = Instance.new("ImageLabel")
10011
	local Border_2 = Instance.new("ImageLabel")
10012
	local Border_3 = Instance.new("ImageLabel")
10013
	local Border_4 = Instance.new("ImageLabel")
10014
	local Border_5 = Instance.new("ImageLabel")
10015
	local Border_6 = Instance.new("ImageLabel")
10016
	local Border_7 = Instance.new("ImageLabel")
10017
	local Border_8 = Instance.new("ImageLabel")
10018
	local Background = Instance.new("Frame")
10019
	local Down = Instance.new("TextButton")
10020
	local Borders_2 = Instance.new("Frame")
10021
	local Border_9 = Instance.new("ImageLabel")
10022
	local Border_10 = Instance.new("ImageLabel")
10023
	local Border_11 = Instance.new("ImageLabel")
10024
	local Border_12 = Instance.new("ImageLabel")
10025
	local Border_13 = Instance.new("ImageLabel")
10026
	local Border_14 = Instance.new("ImageLabel")
10027
	local Border_15 = Instance.new("ImageLabel")
10028
	local Border_16 = Instance.new("ImageLabel")
10029
	local Up = Instance.new("TextButton")
10030
	local Borders_3 = Instance.new("Frame")
10031
	local Border_17 = Instance.new("ImageLabel")
10032
	local Border_18 = Instance.new("ImageLabel")
10033
	local Border_19 = Instance.new("ImageLabel")
10034
	local Border_20 = Instance.new("ImageLabel")
10035
	local Border_21 = Instance.new("ImageLabel")
10036
	local Border_22 = Instance.new("ImageLabel")
10037
	local Border_23 = Instance.new("ImageLabel")
10038
	local Border_24 = Instance.new("ImageLabel")
10039
	local pqb = Instance.new("ImageButton")
10040
	
10041
	-- Properties
10042
	
10043
	pqb.Name = "pqb"
10044
	pqb.Parent = Inventory
10045
	pqb.BackgroundColor3 = Color3.new(1, 1, 1)
10046
	pqb.BorderSizePixel = 0
10047
	pqb.Position = UDim2.new(0.0146412887, 425, 0.254500836, 0)
10048
	pqb.Size = UDim2.new(0, 20, 0, 20)
10049
	pqb.ZIndex = 1001
10050
	pqb.Image = "rbxassetid://1828839274"
10051
	pqb.MouseButton1Click:Connect(function()
10052
		Inventory:Destroy()
10053
	end)
10054
	
10055
	Inventory.Name = "Inventory"
10056
	Inventory.Parent = Survivor
10057
	Inventory.BackgroundColor3 = Color3.new(1, 1, 1)
10058
	Inventory.BackgroundTransparency = 1
10059
	Inventory.BorderSizePixel = 0
10060
	Inventory.Size = UDim2.new(1, 0, 1, 0)
10061
	
10062
	SFrame.Name = "SFrame"
10063
	SFrame.Parent = Inventory
10064
	SFrame.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
10065
	SFrame.BackgroundTransparency = 1
10066
	SFrame.BorderSizePixel = 0
10067
	SFrame.Position = UDim2.new(0.0146412887, 0, 0.254500836, 0)
10068
	SFrame.Size = UDim2.new(0, 400, 0, 300)
10069
	SFrame.CanvasSize = UDim2.new(0, 0, 0, 1200)
10070
	SFrame.VerticalScrollBarPosition = Enum.VerticalScrollBarPosition.Left
10071
	
10072
	Borders.Name = "Borders"
10073
	Borders.Parent = SFrame
10074
	Borders.BackgroundColor3 = Color3.new(1, 1, 1)
10075
	Borders.BackgroundTransparency = 1
10076
	Borders.BorderSizePixel = 0
10077
	Borders.Position = UDim2.new(0, 12, 0, 12)
10078
	Borders.Size = UDim2.new(0, 364, 0, 276)
10079
	Borders.ZIndex = 120
10080
	
10081
	Border.Name = "Border"
10082
	Border.Parent = Borders
10083
	Border.BackgroundColor3 = Color3.new(1, 1, 1)
10084
	Border.BackgroundTransparency = 1
10085
	Border.BorderSizePixel = 0
10086
	Border.Position = UDim2.new(0, -12, 0, -12)
10087
	Border.Size = UDim2.new(0, 12, 0, 12)
10088
	Border.ZIndex = 110
10089
	Border.Image = "http://www.roblox.com/asset/?id=238725003"
10090
	Border.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
10091
	Border.ImageRectSize = Vector2.new(12, 12)
10092
	
10093
	Border_2.Name = "Border"
10094
	Border_2.Parent = Borders
10095
	Border_2.BackgroundColor3 = Color3.new(1, 1, 1)
10096
	Border_2.BackgroundTransparency = 1
10097
	Border_2.BorderSizePixel = 0
10098
	Border_2.Position = UDim2.new(1, 0, 0, -12)
10099
	Border_2.Size = UDim2.new(0, 12, 0, 12)
10100
	Border_2.ZIndex = 110
10101
	Border_2.Image = "http://www.roblox.com/asset/?id=238725003"
10102
	Border_2.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
10103
	Border_2.ImageRectOffset = Vector2.new(24, 0)
10104
	Border_2.ImageRectSize = Vector2.new(12, 12)
10105
	
10106
	Border_3.Name = "Border"
10107
	Border_3.Parent = Borders
10108
	Border_3.BackgroundColor3 = Color3.new(1, 1, 1)
10109
	Border_3.BackgroundTransparency = 1
10110
	Border_3.BorderSizePixel = 0
10111
	Border_3.Position = UDim2.new(0, -12, 1, 0)
10112
	Border_3.Size = UDim2.new(0, 12, 0, 12)
10113
	Border_3.ZIndex = 110
10114
	Border_3.Image = "http://www.roblox.com/asset/?id=238725003"
10115
	Border_3.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
10116
	Border_3.ImageRectOffset = Vector2.new(0, 24)
10117
	Border_3.ImageRectSize = Vector2.new(12, 12)
10118
	
10119
	Border_4.Name = "Border"
10120
	Border_4.Parent = Borders
10121
	Border_4.BackgroundColor3 = Color3.new(1, 1, 1)
10122
	Border_4.BackgroundTransparency = 1
10123
	Border_4.BorderSizePixel = 0
10124
	Border_4.Position = UDim2.new(1, 0, 1, 0)
10125
	Border_4.Size = UDim2.new(0, 12, 0, 12)
10126
	Border_4.ZIndex = 110
10127
	Border_4.Image = "http://www.roblox.com/asset/?id=238725003"
10128
	Border_4.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
10129
	Border_4.ImageRectOffset = Vector2.new(24, 24)
10130
	Border_4.ImageRectSize = Vector2.new(12, 12)
10131
	
10132
	Border_5.Name = "Border"
10133
	Border_5.Parent = Borders
10134
	Border_5.BackgroundColor3 = Color3.new(1, 1, 1)
10135
	Border_5.BackgroundTransparency = 1
10136
	Border_5.BorderSizePixel = 0
10137
	Border_5.Position = UDim2.new(0, 0, 1, 0)
10138
	Border_5.Size = UDim2.new(1, 0, 0, 12)
10139
	Border_5.ZIndex = 110
10140
	Border_5.Image = "http://www.roblox.com/asset/?id=238725003"
10141
	Border_5.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
10142
	Border_5.ImageRectOffset = Vector2.new(12, 24)
10143
	Border_5.ImageRectSize = Vector2.new(12, 12)
10144
	
10145
	Border_6.Name = "Border"
10146
	Border_6.Parent = Borders
10147
	Border_6.BackgroundColor3 = Color3.new(1, 1, 1)
10148
	Border_6.BackgroundTransparency = 1
10149
	Border_6.BorderSizePixel = 0
10150
	Border_6.Position = UDim2.new(0, 0, 0, -12)
10151
	Border_6.Size = UDim2.new(1, 0, 0, 12)
10152
	Border_6.ZIndex = 110
10153
	Border_6.Image = "http://www.roblox.com/asset/?id=238725003"
10154
	Border_6.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
10155
	Border_6.ImageRectOffset = Vector2.new(12, 0)
10156
	Border_6.ImageRectSize = Vector2.new(12, 12)
10157
	
10158
	Border_7.Name = "Border"
10159
	Border_7.Parent = Borders
10160
	Border_7.BackgroundColor3 = Color3.new(1, 1, 1)
10161
	Border_7.BackgroundTransparency = 1
10162
	Border_7.BorderSizePixel = 0
10163
	Border_7.Position = UDim2.new(0, -12, 0, 0)
10164
	Border_7.Size = UDim2.new(0, 12, 1, 0)
10165
	Border_7.ZIndex = 110
10166
	Border_7.Image = "http://www.roblox.com/asset/?id=238725003"
10167
	Border_7.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
10168
	Border_7.ImageRectOffset = Vector2.new(0, 12)
10169
	Border_7.ImageRectSize = Vector2.new(12, 12)
10170
	
10171
	Border_8.Name = "Border"
10172
	Border_8.Parent = Borders
10173
	Border_8.BackgroundColor3 = Color3.new(1, 1, 1)
10174
	Border_8.BackgroundTransparency = 1
10175
	Border_8.BorderSizePixel = 0
10176
	Border_8.Position = UDim2.new(1, 0, 0, 0)
10177
	Border_8.Size = UDim2.new(0, 12, 1, 0)
10178
	Border_8.ZIndex = 110
10179
	Border_8.Image = "http://www.roblox.com/asset/?id=238725003"
10180
	Border_8.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
10181
	Border_8.ImageRectOffset = Vector2.new(24, 12)
10182
	Border_8.ImageRectSize = Vector2.new(12, 12)
10183
	
10184
	Background.Name = "Background"
10185
	Background.Parent = Borders
10186
	Background.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
10187
	Background.Size = UDim2.new(1, 0, 1, 0)
10188
	
10189
	Down.Name = "Down"
10190
	Down.Parent = Inventory
10191
	Down.BackgroundColor3 = Color3.new(1, 1, 1)
10192
	Down.BorderSizePixel = 0
10193
	Down.Position = UDim2.new(0.308931172, 0, 0.693944335, 0)
10194
	Down.Size = UDim2.new(0, 20, 0, 20)
10195
	Down.Font = Enum.Font.SourceSans
10196
	Down.Text = "V"
10197
	Down.TextColor3 = Color3.new(0.784314, 0.784314, 0.784314)
10198
	Down.TextScaled = true
10199
	Down.TextSize = 14
10200
	Down.TextWrapped = true
10201
	
10202
	Borders_2.Name = "Borders"
10203
	Borders_2.Parent = Down
10204
	Borders_2.BackgroundColor3 = Color3.new(1, 1, 1)
10205
	Borders_2.BackgroundTransparency = 1
10206
	Borders_2.BorderSizePixel = 0
10207
	Borders_2.Size = UDim2.new(1, 0, 1, 0)
10208
	Borders_2.ZIndex = 120
10209
	
10210
	Border_9.Name = "Border"
10211
	Border_9.Parent = Borders_2
10212
	Border_9.BackgroundColor3 = Color3.new(1, 1, 1)
10213
	Border_9.BackgroundTransparency = 1
10214
	Border_9.BorderSizePixel = 0
10215
	Border_9.Position = UDim2.new(0, -12, 0, -12)
10216
	Border_9.Size = UDim2.new(0, 12, 0, 12)
10217
	Border_9.ZIndex = 110
10218
	Border_9.Image = "http://www.roblox.com/asset/?id=238725003"
10219
	Border_9.ImageRectSize = Vector2.new(12, 12)
10220
	
10221
	Border_10.Name = "Border"
10222
	Border_10.Parent = Borders_2
10223
	Border_10.BackgroundColor3 = Color3.new(1, 1, 1)
10224
	Border_10.BackgroundTransparency = 1
10225
	Border_10.BorderSizePixel = 0
10226
	Border_10.Position = UDim2.new(1, 0, 0, -12)
10227
	Border_10.Size = UDim2.new(0, 12, 0, 12)
10228
	Border_10.ZIndex = 110
10229
	Border_10.Image = "http://www.roblox.com/asset/?id=238725003"
10230
	Border_10.ImageRectOffset = Vector2.new(24, 0)
10231
	Border_10.ImageRectSize = Vector2.new(12, 12)
10232
	
10233
	Border_11.Name = "Border"
10234
	Border_11.Parent = Borders_2
10235
	Border_11.BackgroundColor3 = Color3.new(1, 1, 1)
10236
	Border_11.BackgroundTransparency = 1
10237
	Border_11.BorderSizePixel = 0
10238
	Border_11.Position = UDim2.new(0, -12, 1, 0)
10239
	Border_11.Size = UDim2.new(0, 12, 0, 12)
10240
	Border_11.ZIndex = 110
10241
	Border_11.Image = "http://www.roblox.com/asset/?id=238725003"
10242
	Border_11.ImageRectOffset = Vector2.new(0, 24)
10243
	Border_11.ImageRectSize = Vector2.new(12, 12)
10244
	
10245
	Border_12.Name = "Border"
10246
	Border_12.Parent = Borders_2
10247
	Border_12.BackgroundColor3 = Color3.new(1, 1, 1)
10248
	Border_12.BackgroundTransparency = 1
10249
	Border_12.BorderSizePixel = 0
10250
	Border_12.Position = UDim2.new(1, 0, 1, 0)
10251
	Border_12.Size = UDim2.new(0, 12, 0, 12)
10252
	Border_12.ZIndex = 110
10253
	Border_12.Image = "http://www.roblox.com/asset/?id=238725003"
10254
	Border_12.ImageRectOffset = Vector2.new(24, 24)
10255
	Border_12.ImageRectSize = Vector2.new(12, 12)
10256
	
10257
	Border_13.Name = "Border"
10258
	Border_13.Parent = Borders_2
10259
	Border_13.BackgroundColor3 = Color3.new(1, 1, 1)
10260
	Border_13.BackgroundTransparency = 1
10261
	Border_13.BorderSizePixel = 0
10262
	Border_13.Position = UDim2.new(0, 0, 1, 0)
10263
	Border_13.Size = UDim2.new(1, 0, 0, 12)
10264
	Border_13.ZIndex = 110
10265
	Border_13.Image = "http://www.roblox.com/asset/?id=238725003"
10266
	Border_13.ImageRectOffset = Vector2.new(12, 24)
10267
	Border_13.ImageRectSize = Vector2.new(12, 12)
10268
	
10269
	Border_14.Name = "Border"
10270
	Border_14.Parent = Borders_2
10271
	Border_14.BackgroundColor3 = Color3.new(1, 1, 1)
10272
	Border_14.BackgroundTransparency = 1
10273
	Border_14.BorderSizePixel = 0
10274
	Border_14.Position = UDim2.new(0, 0, 0, -12)
10275
	Border_14.Size = UDim2.new(1, 0, 0, 12)
10276
	Border_14.ZIndex = 110
10277
	Border_14.Image = "http://www.roblox.com/asset/?id=238725003"
10278
	Border_14.ImageRectOffset = Vector2.new(12, 0)
10279
	Border_14.ImageRectSize = Vector2.new(12, 12)
10280
	
10281
	Border_15.Name = "Border"
10282
	Border_15.Parent = Borders_2
10283
	Border_15.BackgroundColor3 = Color3.new(1, 1, 1)
10284
	Border_15.BackgroundTransparency = 1
10285
	Border_15.BorderSizePixel = 0
10286
	Border_15.Position = UDim2.new(0, -12, 0, 0)
10287
	Border_15.Size = UDim2.new(0, 12, 1, 0)
10288
	Border_15.ZIndex = 110
10289
	Border_15.Image = "http://www.roblox.com/asset/?id=238725003"
10290
	Border_15.ImageRectOffset = Vector2.new(0, 12)
10291
	Border_15.ImageRectSize = Vector2.new(12, 12)
10292
	
10293
	Border_16.Name = "Border"
10294
	Border_16.Parent = Borders_2
10295
	Border_16.BackgroundColor3 = Color3.new(1, 1, 1)
10296
	Border_16.BackgroundTransparency = 1
10297
	Border_16.BorderSizePixel = 0
10298
	Border_16.Position = UDim2.new(1, 0, 0, 0)
10299
	Border_16.Size = UDim2.new(0, 12, 1, 0)
10300
	Border_16.ZIndex = 110
10301
	Border_16.Image = "http://www.roblox.com/asset/?id=238725003"
10302
	Border_16.ImageRectOffset = Vector2.new(24, 12)
10303
	Border_16.ImageRectSize = Vector2.new(12, 12)
10304
	
10305
	Up.Name = "Up"
10306
	Up.Parent = Inventory
10307
	Up.BackgroundColor3 = Color3.new(1, 1, 1)
10308
	Up.BorderSizePixel = 0
10309
	Up.Position = UDim2.new(0.308931172, 0, 0.274959058, 0)
10310
	Up.Size = UDim2.new(0, 20, 0, 20)
10311
	Up.Font = Enum.Font.SourceSans
10312
	Up.Text = "^"
10313
	Up.TextColor3 = Color3.new(0.784314, 0.784314, 0.784314)
10314
	Up.TextScaled = true
10315
	Up.TextSize = 14
10316
	Up.TextWrapped = true
10317
	
10318
	Borders_3.Name = "Borders"
10319
	Borders_3.Parent = Up
10320
	Borders_3.BackgroundColor3 = Color3.new(1, 1, 1)
10321
	Borders_3.BackgroundTransparency = 1
10322
	Borders_3.BorderSizePixel = 0
10323
	Borders_3.Size = UDim2.new(1, 0, 1, 0)
10324
	Borders_3.ZIndex = 120
10325
	
10326
	Border_17.Name = "Border"
10327
	Border_17.Parent = Borders_3
10328
	Border_17.BackgroundColor3 = Color3.new(1, 1, 1)
10329
	Border_17.BackgroundTransparency = 1
10330
	Border_17.BorderSizePixel = 0
10331
	Border_17.Position = UDim2.new(0, -12, 0, -12)
10332
	Border_17.Size = UDim2.new(0, 12, 0, 12)
10333
	Border_17.ZIndex = 110
10334
	Border_17.Image = "http://www.roblox.com/asset/?id=238725003"
10335
	Border_17.ImageRectSize = Vector2.new(12, 12)
10336
	
10337
	Border_18.Name = "Border"
10338
	Border_18.Parent = Borders_3
10339
	Border_18.BackgroundColor3 = Color3.new(1, 1, 1)
10340
	Border_18.BackgroundTransparency = 1
10341
	Border_18.BorderSizePixel = 0
10342
	Border_18.Position = UDim2.new(1, 0, 0, -12)
10343
	Border_18.Size = UDim2.new(0, 12, 0, 12)
10344
	Border_18.ZIndex = 110
10345
	Border_18.Image = "http://www.roblox.com/asset/?id=238725003"
10346
	Border_18.ImageRectOffset = Vector2.new(24, 0)
10347
	Border_18.ImageRectSize = Vector2.new(12, 12)
10348
	
10349
	Border_19.Name = "Border"
10350
	Border_19.Parent = Borders_3
10351
	Border_19.BackgroundColor3 = Color3.new(1, 1, 1)
10352
	Border_19.BackgroundTransparency = 1
10353
	Border_19.BorderSizePixel = 0
10354
	Border_19.Position = UDim2.new(0, -12, 1, 0)
10355
	Border_19.Size = UDim2.new(0, 12, 0, 12)
10356
	Border_19.ZIndex = 110
10357
	Border_19.Image = "http://www.roblox.com/asset/?id=238725003"
10358
	Border_19.ImageRectOffset = Vector2.new(0, 24)
10359
	Border_19.ImageRectSize = Vector2.new(12, 12)
10360
	
10361
	Border_20.Name = "Border"
10362
	Border_20.Parent = Borders_3
10363
	Border_20.BackgroundColor3 = Color3.new(1, 1, 1)
10364
	Border_20.BackgroundTransparency = 1
10365
	Border_20.BorderSizePixel = 0
10366
	Border_20.Position = UDim2.new(1, 0, 1, 0)
10367
	Border_20.Size = UDim2.new(0, 12, 0, 12)
10368
	Border_20.ZIndex = 110
10369
	Border_20.Image = "http://www.roblox.com/asset/?id=238725003"
10370
	Border_20.ImageRectOffset = Vector2.new(24, 24)
10371
	Border_20.ImageRectSize = Vector2.new(12, 12)
10372
	
10373
	Border_21.Name = "Border"
10374
	Border_21.Parent = Borders_3
10375
	Border_21.BackgroundColor3 = Color3.new(1, 1, 1)
10376
	Border_21.BackgroundTransparency = 1
10377
	Border_21.BorderSizePixel = 0
10378
	Border_21.Position = UDim2.new(0, 0, 1, 0)
10379
	Border_21.Size = UDim2.new(1, 0, 0, 12)
10380
	Border_21.ZIndex = 110
10381
	Border_21.Image = "http://www.roblox.com/asset/?id=238725003"
10382
	Border_21.ImageRectOffset = Vector2.new(12, 24)
10383
	Border_21.ImageRectSize = Vector2.new(12, 12)
10384
	
10385
	Border_22.Name = "Border"
10386
	Border_22.Parent = Borders_3
10387
	Border_22.BackgroundColor3 = Color3.new(1, 1, 1)
10388
	Border_22.BackgroundTransparency = 1
10389
	Border_22.BorderSizePixel = 0
10390
	Border_22.Position = UDim2.new(0, 0, 0, -12)
10391
	Border_22.Size = UDim2.new(1, 0, 0, 12)
10392
	Border_22.ZIndex = 110
10393
	Border_22.Image = "http://www.roblox.com/asset/?id=238725003"
10394
	Border_22.ImageRectOffset = Vector2.new(12, 0)
10395
	Border_22.ImageRectSize = Vector2.new(12, 12)
10396
	
10397
	Border_23.Name = "Border"
10398
	Border_23.Parent = Borders_3
10399
	Border_23.BackgroundColor3 = Color3.new(1, 1, 1)
10400
	Border_23.BackgroundTransparency = 1
10401
	Border_23.BorderSizePixel = 0
10402
	Border_23.Position = UDim2.new(0, -12, 0, 0)
10403
	Border_23.Size = UDim2.new(0, 12, 1, 0)
10404
	Border_23.ZIndex = 110
10405
	Border_23.Image = "http://www.roblox.com/asset/?id=238725003"
10406
	Border_23.ImageRectOffset = Vector2.new(0, 12)
10407
	Border_23.ImageRectSize = Vector2.new(12, 12)
10408
	
10409
	Border_24.Name = "Border"
10410
	Border_24.Parent = Borders_3
10411
	Border_24.BackgroundColor3 = Color3.new(1, 1, 1)
10412
	Border_24.BackgroundTransparency = 1
10413
	Border_24.BorderSizePixel = 0
10414
	Border_24.Position = UDim2.new(1, 0, 0, 0)
10415
	Border_24.Size = UDim2.new(0, 12, 1, 0)
10416
	Border_24.ZIndex = 110
10417
	Border_24.Image = "http://www.roblox.com/asset/?id=238725003"
10418
	Border_24.ImageRectOffset = Vector2.new(24, 12)
10419
	Border_24.ImageRectSize = Vector2.new(12, 12)
10420
	
10421
	-- Scripts 
10422
	
10423
	local Target = Data.GetPlayerFromShortName(Playername.Text)
10424
	local Pos = Vector2.new(12, 12)
10425
	if Target ~= nil then
10426
		local Stats = Target.Stats
10427
		for i, v in pairs(Stats:GetChildren())do
10428
			local bl = false
10429
			for e, c in pairs(Data.ProfileData.Values) do
10430
				if v.Name == c.Name then
10431
					bl = true
10432
				end
10433
			end
10434
			if bl == false then
10435
				 -- Objects
10436
				
10437
				local Item = Instance.new("ImageLabel")
10438
				local Borders = Instance.new("Frame")
10439
				local Border = Instance.new("ImageLabel")
10440
				local Border_2 = Instance.new("ImageLabel")
10441
				local Border_3 = Instance.new("ImageLabel")
10442
				local Border_4 = Instance.new("ImageLabel")
10443
				local Border_5 = Instance.new("ImageLabel")
10444
				local Border_6 = Instance.new("ImageLabel")
10445
				local Border_7 = Instance.new("ImageLabel")
10446
				local Border_8 = Instance.new("ImageLabel")
10447
				
10448
				-- Properties
10449
				
10450
				Item.Name = "Item"
10451
				Item.Parent = SFrame
10452
				Item.BackgroundColor3 = Color3.new(1, 1, 1)
10453
				Item.BorderSizePixel = 0
10454
				Item.Position = UDim2.new(0.142752558, 0, 0.489361703, 0)
10455
				Item.Size = UDim2.new(0, 50, 0, 50)
10456
				Item.ZIndex = 101
10457
				
10458
				Borders.Name = "Borders"
10459
				Borders.Parent = Item
10460
				Borders.BackgroundColor3 = Color3.new(1, 1, 1)
10461
				Borders.BackgroundTransparency = 1
10462
				Borders.BorderSizePixel = 0
10463
				Borders.Size = UDim2.new(1, 0, 1, 0)
10464
				Borders.ZIndex = 120
10465
				
10466
				Border.Name = "Border"
10467
				Border.Parent = Borders
10468
				Border.BackgroundColor3 = Color3.new(1, 1, 1)
10469
				Border.BackgroundTransparency = 1
10470
				Border.BorderSizePixel = 0
10471
				Border.Position = UDim2.new(0, -12, 0, -12)
10472
				Border.Size = UDim2.new(0, 12, 0, 12)
10473
				Border.ZIndex = 110
10474
				Border.Image = "http://www.roblox.com/asset/?id=238725003"
10475
				Border.ImageRectSize = Vector2.new(12, 12)
10476
				
10477
				Border_2.Name = "Border"
10478
				Border_2.Parent = Borders
10479
				Border_2.BackgroundColor3 = Color3.new(1, 1, 1)
10480
				Border_2.BackgroundTransparency = 1
10481
				Border_2.BorderSizePixel = 0
10482
				Border_2.Position = UDim2.new(1, 0, 0, -12)
10483
				Border_2.Size = UDim2.new(0, 12, 0, 12)
10484
				Border_2.ZIndex = 110
10485
				Border_2.Image = "http://www.roblox.com/asset/?id=238725003"
10486
				Border_2.ImageRectOffset = Vector2.new(24, 0)
10487
				Border_2.ImageRectSize = Vector2.new(12, 12)
10488
				
10489
				Border_3.Name = "Border"
10490
				Border_3.Parent = Borders
10491
				Border_3.BackgroundColor3 = Color3.new(1, 1, 1)
10492
				Border_3.BackgroundTransparency = 1
10493
				Border_3.BorderSizePixel = 0
10494
				Border_3.Position = UDim2.new(0, -12, 1, 0)
10495
				Border_3.Size = UDim2.new(0, 12, 0, 12)
10496
				Border_3.ZIndex = 110
10497
				Border_3.Image = "http://www.roblox.com/asset/?id=238725003"
10498
				Border_3.ImageRectOffset = Vector2.new(0, 24)
10499
				Border_3.ImageRectSize = Vector2.new(12, 12)
10500
				
10501
				Border_4.Name = "Border"
10502
				Border_4.Parent = Borders
10503
				Border_4.BackgroundColor3 = Color3.new(1, 1, 1)
10504
				Border_4.BackgroundTransparency = 1
10505
				Border_4.BorderSizePixel = 0
10506
				Border_4.Position = UDim2.new(1, 0, 1, 0)
10507
				Border_4.Size = UDim2.new(0, 12, 0, 12)
10508
				Border_4.ZIndex = 110
10509
				Border_4.Image = "http://www.roblox.com/asset/?id=238725003"
10510
				Border_4.ImageRectOffset = Vector2.new(24, 24)
10511
				Border_4.ImageRectSize = Vector2.new(12, 12)
10512
				
10513
				Border_5.Name = "Border"
10514
				Border_5.Parent = Borders
10515
				Border_5.BackgroundColor3 = Color3.new(1, 1, 1)
10516
				Border_5.BackgroundTransparency = 1
10517
				Border_5.BorderSizePixel = 0
10518
				Border_5.Position = UDim2.new(0, 0, 1, 0)
10519
				Border_5.Size = UDim2.new(1, 0, 0, 12)
10520
				Border_5.ZIndex = 110
10521
				Border_5.Image = "http://www.roblox.com/asset/?id=238725003"
10522
				Border_5.ImageRectOffset = Vector2.new(12, 24)
10523
				Border_5.ImageRectSize = Vector2.new(12, 12)
10524
				
10525
				Border_6.Name = "Border"
10526
				Border_6.Parent = Borders
10527
				Border_6.BackgroundColor3 = Color3.new(1, 1, 1)
10528
				Border_6.BackgroundTransparency = 1
10529
				Border_6.BorderSizePixel = 0
10530
				Border_6.Position = UDim2.new(0, 0, 0, -12)
10531
				Border_6.Size = UDim2.new(1, 0, 0, 12)
10532
				Border_6.ZIndex = 110
10533
				Border_6.Image = "http://www.roblox.com/asset/?id=238725003"
10534
				Border_6.ImageRectOffset = Vector2.new(12, 0)
10535
				Border_6.ImageRectSize = Vector2.new(12, 12)
10536
				
10537
				Border_7.Name = "Border"
10538
				Border_7.Parent = Borders
10539
				Border_7.BackgroundColor3 = Color3.new(1, 1, 1)
10540
				Border_7.BackgroundTransparency = 1
10541
				Border_7.BorderSizePixel = 0
10542
				Border_7.Position = UDim2.new(0, -12, 0, 0)
10543
				Border_7.Size = UDim2.new(0, 12, 1, 0)
10544
				Border_7.ZIndex = 110
10545
				Border_7.Image = "http://www.roblox.com/asset/?id=238725003"
10546
				Border_7.ImageRectOffset = Vector2.new(0, 12)
10547
				Border_7.ImageRectSize = Vector2.new(12, 12)
10548
				
10549
				Border_8.Name = "Border"
10550
				Border_8.Parent = Borders
10551
				Border_8.BackgroundColor3 = Color3.new(1, 1, 1)
10552
				Border_8.BackgroundTransparency = 1
10553
				Border_8.BorderSizePixel = 0
10554
				Border_8.Position = UDim2.new(1, 0, 0, 0)
10555
				Border_8.Size = UDim2.new(0, 12, 1, 0)
10556
				Border_8.ZIndex = 110
10557
				Border_8.Image = "http://www.roblox.com/asset/?id=238725003"
10558
				Border_8.ImageRectOffset = Vector2.new(24, 12)
10559
				Border_8.ImageRectSize = Vector2.new(12, 12)
10560
				
10561
				-- Scripts 
10562
				
10563
				local IImage = nil
10564
				for e, c in pairs(game.ReplicatedStorage.ShopData:GetDescendants())do
10565
					if c.Name == v.Name then
10566
						IImage = "rbxassetid://"..c.Value
10567
					end
10568
				end
10569
				if IImage == nil and v.Value == 0 then
10570
					Item:Destroy()
10571
				else
10572
					Item.Image = IImage
10573
					Item.Position = UDim2.new(0,Pos.X,0,Pos.Y)
10574
					if Pos.X >= 350 then
10575
						Pos = Pos + Vector2.new(0,75)
10576
						Pos = Vector2.new(0,Pos.Y)
10577
					else
10578
						Pos = Pos + Vector2.new(75,0)
10579
					end
10580
				end
10581
			end
10582
			Up.MouseButton1Click:Connect(function()
10583
				SFrame.CanvasPosition = SFrame.CanvasPosition + Vector2.new(0,10)
10584
			end)
10585
			Down.MouseButton1Click:Connect(function()
10586
				SFrame.CanvasPosition = SFrame.CanvasPosition - Vector2.new(0,10)
10587
			end)
10588
		end
10589
	end
10590
end)
10591
10592
Data.Player.Chatted:Connect(function(Msg)
10593
	if Data.SwitchData.Chathook == true then
10594
		local Args = Data.StringToArray(Msg," ")
10595
		if string.lower(Args[1]) == "/noclip" then
10596
			print("Noclip")
10597
			if Data.SwitchData.Noclipping == true then
10598
				Data.SwitchData.Noclipping = false
10599
			else
10600
				Data.SwitchData.Noclipping = true
10601
			end
10602
		elseif string.lower(Args[1]) == "/goto" then
10603
			local Target = Data.GetPlayerFromShortName(Args[2])
10604
			if Target ~= nil then
10605
				Data.Player.Character.HumanoidRootPart.CFrame = Target.Character.HumanoidRootPart.CFrame
10606
			end
10607
		elseif string.lower(Args[1]) == "/mute" then
10608
			local muted = Data.Player.Muted
10609
			if muted.Value == true then
10610
				muted.Value = false
10611
			else
10612
				muted.Value = true
10613
			end
10614
		elseif string.lower(Args[1]) == "/move" then
10615
			local muted = Data.Player.CanMove
10616
			if muted.Value == true then
10617
				muted.Value = false
10618
			else
10619
				muted.Value = true
10620
			end
10621
		elseif string.lower(Args[1]) == "/caim" then
10622
			Data.Funcs.GetCoins(tonumber(Args[2]))
10623
		end
10624
	end
10625
end)
10626
10627
local RS = game:GetService("RunService")
10628
10629
RS.Heartbeat:Connect(function(Step)
10630
	if Data.SwitchData.Noclipping == true then
10631
		while true do
10632
			if Data.SwitchData.Noclipping == true then
10633
				for _,v in pairs(Data.Player.Character:children()) do
10634
					pcall(function()
10635
						if v.className == "Part" then
10636
							v.CanCollide = false
10637
						elseif v.ClassName == "Model" then
10638
							v.Head.CanCollide = false
10639
						end
10640
					end)
10641
				end
10642
			end
10643
			game:service("RunService").Stepped:wait()
10644
		end
10645
	end
10646
end)
10647
10648
--[[
10649
local Players = game.Players
10650
local Player = Players.LocalPlayer
10651
local Mouse = Player:GetMouse()
10652
Mouse.KeyDown:Connect(function(Key)
10653
if Key == "t" then
10654
for i, v in pairs(Players:GetChildren())do
10655
print(v.Name)
10656
v.Character.HumanoidRootPart.CFrame = Player.Character.HumanoidRootPart.CFrame
10657
print("Done")
10658
end
10659
end
10660
end)
10661
--]]
10662
end)