Guest User

Untitled

a guest
Jul 31st, 2018
1,177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 372.97 KB | None | 0 0
  1. -- Objects
  2. --https://v3rmillion.net/member.php?action=profile&uid=61310
  3. wait(3)
  4.  
  5. local ObjectValues = {}
  6.  
  7. local function StringToArray(String,Separator)
  8. local Array = {}
  9. local ExtStr = String
  10. repeat
  11. if ExtStr == "" or ExtStr == " " then
  12.  
  13. else
  14. local Start = string.find(ExtStr,Separator)
  15. if Start ~= nil then
  16. local Arg = string.sub(ExtStr,0,Start-1)
  17. table.insert(Array,Arg)
  18. ExtStr = string.sub(ExtStr,Start+string.len(Separator))
  19. else
  20. table.insert(Array,ExtStr)
  21. ExtStr = ""
  22. end
  23. end
  24. until ExtStr == ""
  25. if string.lower(Array[1]) == "/e" then
  26. Array[1] = nil
  27. for i, v in pairs(Array) do
  28. if i == 1 then
  29.  
  30. else
  31. Array[i-1] = v
  32. end
  33. end
  34. end
  35. return Array
  36. end
  37.  
  38. local function IndicateValue(Value)
  39. local Type = tostring(typeof(Value))
  40. if Type == "string" then
  41. return "'"..Value.."'"
  42. elseif Type == "number" then
  43. return Value
  44. elseif Type == "Instance" then
  45. return "ObjectValue"
  46. elseif Type == "Color3" then
  47. return "Color3.new("..Value.r..","..Value.g..","..Value.b..")"
  48. elseif Type == "Vector3" then
  49. return "Vector3.new("..Value.X..","..Value.Y..","..Value.Z..")"
  50. elseif Type == "nil" then
  51. return "nil"
  52. elseif Type == "boolean" then
  53. return tostring(Value)
  54. elseif Type == "BrickColor" then
  55. return "BrickColor.new("..Value.r..","..Value.g..","..Value.b..")"
  56. elseif Type == "EnumItem" then
  57. return tostring(Value)
  58. elseif Type == "UDim2" then
  59. return "UDim2.new("..Value.X.Scale..","..Value.X.Offset..","..Value.Y.Scale..","..Value.Y.Offset..")"
  60. else
  61. return "Unable To Indicate Propety... "
  62. end
  63. end
  64.  
  65. local Properties = {
  66. "Value",
  67. "Color",
  68. "AllowSweep",
  69. "WaterColor",
  70. "ParallelPhysics",
  71. "Is30FpsThrottleEnabled",
  72. "HeadsUpDisplay",
  73. "Texture",
  74. "Value",
  75. "WaterColor",
  76. "SkinColor",
  77. "SparkleColor",
  78. "FogColor",
  79. "HeadColor",
  80. "LeftArmColor",
  81. "RightArmColor",
  82. "TorsoColor",
  83. "RightLegColor",
  84. "LeftLegColor",
  85. "ShadowColor",
  86. "Ambient",
  87. "SecondaryColor",
  88. "Anchored",
  89. "AllowInsertFreeModels",
  90. "SuperSafeChatReplicate",
  91. "Player",
  92. "HangDetection",
  93. "FullScriptCode",
  94. "DataModelJobs",
  95. "DeviceLost",
  96. "SSAO",
  97. "SoundEnabled",
  98. "SoftwareSound",
  99. "TextFits",
  100. "TextWrap",
  101. "Draggable",
  102. "BubbleChat" ,
  103. "AutoRuns",
  104. "Guest",
  105. "LocalSaveEnabled",
  106. "PlatformStand",
  107. "AutoRotate",
  108. "CelestialBodiesShown",
  109. "HasBuildTools" ,
  110. "ClassicChat" ,
  111. "DevEnableMouseLock",
  112. "Netural",
  113. "CanCollide",
  114. "Disabled",
  115. "Outlines",
  116. "Jump",
  117. "Sit",
  118. "Visible",
  119. "IsSmooth" ,
  120. "Enabled",
  121. "Locked",
  122. "FilteringEnabled",
  123. "StreamingEnabled",
  124. "GlobalShadows",
  125. "ScriptsDisabled",
  126. "ZOffset",
  127. "CharacterAppearance",
  128. "PrimaryPart",
  129. "SkyboxBk",
  130. "SkyboxDn",
  131. "WaterTransparency",
  132. "WaterWaveSpeed",
  133. "HipHeight",
  134. "ChatHistory",
  135. "ConversationDistance",
  136. "BlastPressure",
  137. "BlastRadius",
  138. "InitialPrompt",
  139. "CPU",
  140. "OSVer",
  141. "OsPlatformId",
  142. "CpuSpeed",
  143. "D",
  144. "P",
  145. "maxForce",
  146. "InstanceCount",
  147. "PlaceId",
  148. "workspace",
  149. "GarbageCollectionFrequency",
  150. "BinType",
  151. "Grip",
  152. "ActivationState",
  153. "GarbageCollectionLimit",
  154. "ShadowColor",
  155. "TargetPoint",
  156. "WalkDirection",
  157. "WalkToPart",
  158. "Image",
  159. "Font",
  160. "ClearTextOnFocus",
  161. "TextTransparency",
  162. "WalkToPoint",
  163. "ColorShift_Bottom",
  164. "ColorShift_Top",
  165. "MaxSpeed",
  166. "CartoonFactor",
  167. "Target",
  168. "MaxThrust",
  169. "MaxTorque",
  170. "TargetOffset",
  171. "ThrustD",
  172. "ThrustP",
  173. "TurnD",
  174. "TurnP",
  175. "profileName",
  176. "Resolution",
  177. "Shadow",
  178. "Bevels",
  179. "BatchSize",
  180. "AASamples",
  181. "Genre",
  182. "CreatorType",
  183. "CreatorId",
  184. "JobId",
  185. "SkyboxUp",
  186. "SkyboxFt",
  187. "SkyboxLf",
  188. "StarCount",
  189. "ReporterType",
  190. "Outfit1",
  191. "Outfit2",
  192. "Pants",
  193. "PlayCount",
  194. "Shirt",
  195. "MinReportInterval",
  196. "VelocitySpread",
  197. "Rate",
  198. "DataSendRate",
  199. "DataGCRate",
  200. "NameDisplayerDistance",
  201. "MaxVelocity",
  202. "PantsTemplate",
  203. "ShirtTemplate",
  204. "SoundId",
  205. "Pitch",
  206. "IsPlaying",
  207. "IsPaused",
  208. "Looped",
  209. "PlayOnRemove",
  210. "StudsPerTileU",
  211. "StudsPerTileV",
  212. "Name",
  213. "Value",
  214. "MaxPlayers" ,
  215. "PersonalServerRank" ,
  216. "NumPlayers" ,
  217. "Text",
  218. "Reflectance",
  219. "FogEnd",
  220. "FogStart",
  221. "WaterTransparency",
  222. "Transparency",
  223. "Heat",
  224. "TeamName",
  225. "WalkSpeed",
  226. "Health",
  227. "MaxHealth",
  228. "Size",
  229. "TeamColor",
  230. "userId",
  231. "Brightness",
  232. "Ambient",
  233. "OsPlatform",
  234. "ChatMode",
  235. "AccountAgeReplicate",
  236. "Character",
  237. "Steer",
  238. "Style",
  239. "NetworkOwnerV3",
  240. "CanCollide",
  241. "TimeOfDay",
  242. "FieldOfView",
  243. "CameraType",
  244. "LinkedSource",
  245. "MachineAddress",
  246. "Port",
  247. "PrimaryPart",
  248. "BackgroundTransparency",
  249. "BackgroundColor3",
  250. "ImageColor3",
  251. "BorderColor3",
  252. "BorderSizePixel",
  253. "Position",
  254. "Rotation",
  255. "Selectable",
  256. "FrontSurface",
  257. "BackSurface",
  258. "RightSurface",
  259. "LeftSurface",
  260. "TopSurface",
  261. "BottomSurface",
  262. "MeshId",
  263. "TextureID",
  264. "Scale",
  265. "TextureId",
  266. "Shape"
  267. }
  268.  
  269. local function SeparateString(Str)
  270. local Arr = {}
  271. local Len = string.len(Str)
  272. for i = 0,Len do
  273. local SubStr = string.sub(Str,i,i)
  274. table.insert(Arr,SubStr)
  275. end
  276. return Arr
  277. end
  278.  
  279.  
  280. local function FormatText (Text)
  281. local Spaces = StringToArray(Text,".")
  282. local Str = Text
  283. local Arr = SeparateString(Str)
  284. local function GetArrBack(Index)
  285. local Len = table.getn(Arr)- Index
  286. Arr[Index] = "</Dot>"
  287. end
  288. local Blacklist = true
  289. repeat
  290. Blacklist = true
  291. for i, v in pairs(Arr) do
  292. if v == "." then
  293. Blacklist = false
  294. GetArrBack(i)
  295. end
  296. end
  297. until Blacklist == true
  298. Str = ""
  299. for i, v in pairs(Arr) do
  300. Str = Str..v
  301. end
  302. Str = StringToArray(Str,"</Dot>")
  303. local a = Str
  304. Str = ""
  305. for i, v in pairs(a)do
  306. Str = Str.."['"..v.."']"
  307. end
  308. return Str
  309. end
  310.  
  311. local function GetSaveInstanceString(InstanceValue)
  312. local Str = "pcall(function()\n_G['"..InstanceValue.Name.."'] = Instance.new('"..InstanceValue.ClassName.."',game"..FormatText(InstanceValue.Parent:GetFullName())..")\n"
  313. for i, v in pairs(Properties) do
  314. local Prop = "ur mom gey lmao"
  315. pcall(function()
  316. Prop = InstanceValue[v]
  317. end)
  318. if Prop == "ur mom gey lmao" then
  319.  
  320. else
  321. local IndProp = IndicateValue(Prop)
  322. if IndProp ~= "Unable To Indicate Propety... " and IndProp ~= "ObjectValue" and IndProp ~= nil and IndProp ~= "nil" then
  323. Str = Str.."_G['"..InstanceValue.Name.."']."..v.." = "..IndProp.."\n"
  324. else
  325.  
  326. end
  327. end
  328. end
  329. pcall(function()
  330. local Pos = InstanceValue.CFrame.p
  331. local Rot = InstanceValue.Orientation
  332. 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.."))"
  333. end)
  334. Str = Str.."end)\n"
  335. return Str
  336. end
  337.  
  338. local function GetSaveDescendantsString(InstanceValue)
  339. local Str = GetSaveInstanceString(InstanceValue)
  340. for i, v in pairs(InstanceValue:GetDescendants()) do
  341. Str = Str..GetSaveInstanceString(v)
  342. end
  343. return Str
  344. end
  345.  
  346. local function SaveInstance(Inst)
  347. setclipboard(GetSaveDescendantsString(Inst))
  348. end
  349.  
  350. local function Explore()
  351. 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"}
  352. 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"}
  353. BrickColorProperties = {"BrickColor", "Color","AllowSweep", "WaterColor", "ParallelPhysics", "Is30FpsThrottleEnabled", "HeadsUpDisplay", "Texture", "Value", "WaterColor", "SkinColor", "SparkleColor", "FogColor", "HeadColor", "LeftArmColor", "RightArmColor", "TorsoColor", "RightLegColor", "LeftLegColor","ShadowColor", "Ambient", "SecondaryColor"}
  354. s = Instance.new("ScreenGui", game.Players.LocalPlayer.PlayerGui)
  355. pgr = Instance.new("TextButton")
  356. pgr.Parent = s
  357. pgr.Size = UDim2.new(0,100,0,40)
  358. pgr.Position = UDim2.new(0,30,0,440)
  359. pgr.Text="Xplorer"
  360. pgr.BackgroundTransparency = 0.7
  361. pgr.TextColor = BrickColor.new("Black")
  362. pgr.BackgroundColor = BrickColor.new("Really Black")
  363. pgr.BorderColor = BrickColor.new("Black")
  364. pgr.Font = "ArialBold"
  365. pgr.FontSize = "Size14"
  366. pgr.TextStrokeColor3 = Color3.new(0/0,0/0,0/0)
  367. pgr.TextStrokeTransparency = 0.3
  368. pgr.BorderSizePixel = 1
  369. pgr.BorderColor = BrickColor.new("White")
  370.  
  371. if game.Players.LocalPlayer.PlayerGui:findFirstChild("Explorer") then
  372. game.Players.LocalPlayer.PlayerGui:findFirstChild("Explorer"):Remove()
  373. end
  374.  
  375.  
  376.  
  377. local Cloned
  378. local Deleted
  379. local DeleteParent
  380. local Player
  381. local Search
  382. local ScriptSearch
  383. local Gui
  384. local Cloned = nil
  385. local Deleted = nil
  386. local DeleteParent = nil
  387. local Current = 0
  388. local CurrentOption = 0
  389.  
  390. function Clear()
  391. if Gui then
  392. Gui:Remove()
  393. end
  394. Current = 0
  395. CurrentOption = 0
  396. end
  397.  
  398. function AddButton(N, Function, Color, Copy)
  399. if not N then
  400. error("RenderButton - No Name Specified")
  401. end
  402. if not Function then
  403. error("RenderButton - No Function Specified")
  404. end
  405. if not Color then
  406. Color = Color3.new(1, 1, 1)
  407. end
  408. if Copy == nil then
  409. Copy = true
  410. end
  411. P = Instance.new("TextButton")
  412. if Copy then
  413. P.Size = UDim2.new(0, 110, 0, 20)
  414. else
  415. P.Size = UDim2.new(0, 130, 0, 20)
  416. end
  417. P.Text = N.Name
  418. P.Name = N.Name
  419. P.Parent = Gui
  420. P.BackgroundColor3 = Color
  421. P.TextColor3 = Color3.new(0, 0, 0)
  422. P.BackgroundTransparency = 0.5
  423. P.Position = UDim2.new(0, ((math.modf(Current/30))*150)+300, 0, 50+(20*((Current%30)-1)))
  424. P.MouseButton1Click:connect(function()
  425. Function(P)
  426. end)
  427. D = Instance.new("TextButton")
  428. D.Size = UDim2.new(0, 20, 0, 20)
  429. D.Text = "X"
  430. D.Name = N.Name
  431. D.Parent = Gui
  432. D.BackgroundColor3 = Color3.new(1, 0, 0)
  433. D.TextColor3 = Color3.new(0, 0, 0)
  434. D.BackgroundTransparency = 0.5
  435. D.Position = UDim2.new(0, ((math.modf(Current/30))*150)+300+130, 0, 50+(20*((Current%30)-1)))
  436. D.MouseButton1Click:connect(function()
  437. Deleted = N
  438. DeleteParent = N.Parent
  439. N.Parent = nil
  440. Clear()
  441. Search(DeleteParent)
  442. end)
  443. if Copy then
  444. C = Instance.new("TextButton")
  445. C.Size = UDim2.new(0, 20, 0, 20)
  446. C.Text = "C"
  447. C.Name = N.Name
  448. C.Parent = Gui
  449. C.BackgroundColor3 = Color3.new(0, 1, 0.5)
  450. C.TextColor3 = Color3.new(0, 0, 0)
  451. C.BackgroundTransparency = 0.5
  452. C.Position = UDim2.new(0, ((math.modf(Current/30))*150)+300+110, 0, 50+(20*((Current%30)-1)))
  453. C.MouseButton1Click:connect(function()
  454. Cloned = N
  455. Clear()
  456. Search(N.Parent)
  457. end)
  458. end
  459. Current = Current + 1
  460. return P
  461. end
  462.  
  463. function AddOption(N, Function, Color, Text)
  464. if not N then
  465. error("RenderButton - No Name Specified")
  466. end
  467. if not Color then
  468. Color = Color3.new(1, 1, 1)
  469. end
  470. if Text == nil then
  471. Text = false
  472. end
  473. if Text then
  474. P = Instance.new("TextBox")
  475. else
  476. P = Instance.new("TextButton")
  477. end
  478. P.Text = N
  479. P.Name = N
  480. P.Parent = Gui
  481. P.BackgroundColor3 = Color
  482. P.TextColor3 = Color3.new(0, 0, 0)
  483. P.BackgroundTransparency = 0.5
  484. P.Size = UDim2.new(0, 150, 0, 20)
  485. P.Position = UDim2.new(0, ((math.modf(CurrentOption/30))*150)+150, 0, 50+(20*((CurrentOption%30)-1)))
  486. if not Text and Function then
  487. P.MouseButton1Click:connect(function() Function(P) end)
  488. end
  489. CurrentOption = CurrentOption + 1
  490. return P
  491. end
  492.  
  493. function AddTextOption(Obj, Prop)
  494. local Ob = Obj
  495. local Pro = Prop
  496. if type(Ob[Pro]) == "number" or type(Ob[Pro]) == "string" then
  497. CurrentOption = CurrentOption + 1
  498. local T = AddOption(Ob[Pro], nil, Color3.new(0.1, 0.4, 0.1), true)
  499. CurrentOption = CurrentOption - 2
  500. local O = AddOption("Change "..Pro..":", function() Ob[Pro] = T.Text end, Color3.new(0.1, 0.8, 0.1), false)
  501. CurrentOption = CurrentOption + 1
  502. end
  503. end
  504.  
  505. function AddBrickColorOption(Obj, Prop)
  506. local Ob = Obj
  507. local Pro = Prop
  508. if BrickColor.new(tostring(Ob[Pro])) == Ob[Pro] then
  509. CurrentOption = CurrentOption + 1
  510. local T = AddOption(tostring(Ob[Pro]), nil, Color3.new(0.1, 0.4, 0.1), true)
  511. CurrentOption = CurrentOption - 2
  512. local O = AddOption("Change "..Pro..":", function() Ob[Pro] = BrickColor.new(T.Text) end, Color3.new(0.1, 0.8, 0.1), false)
  513. CurrentOption = CurrentOption + 1
  514. end
  515. end
  516.  
  517. function UnanchorObject(Objects)
  518. local function Recurse(Base)
  519. for _, Object in pairs(Base:GetChildren()) do
  520. if _G.TestProperty(Object, "Anchored") then
  521. Object.Anchored = not Object.Anchored
  522. end
  523. Recurse(Object)
  524. end
  525. end
  526. Recurse(Objects)
  527. end
  528.  
  529.  
  530.  
  531.  
  532. function AddBoolOption(Obj, Prop)
  533. local Ob = Obj
  534. local Pro = Prop
  535. if type(Ob[Pro]) == "boolean" then
  536. local O = AddOption(Pro..": "..tostring(Ob[Pro]), nil, Color3.new(0.1, 0.8, 0.1), false)
  537. O.MouseButton1Click:connect(function()
  538. if Ob[Pro] then
  539. Ob[Pro] = false
  540. O.Text = Pro..": false"
  541. else
  542. Ob[Pro] = true
  543. O.Text = Pro..": true"
  544. end
  545. end)
  546. end
  547. end
  548.  
  549. function TestProperty(Obj, Property)
  550. Success = pcall(function()
  551. if Obj[Property] then
  552. return
  553. end
  554. end)
  555. return Success
  556. end
  557.  
  558. function LoadOptions(Object)
  559. for Num, Prop in pairs(TextProperties) do
  560. if TestProperty(Object, Prop) then
  561. AddTextOption(Object, Prop)
  562. end
  563. end
  564. for Num, Prop in pairs(BoolProperties) do
  565. if TestProperty(Object, Prop) then
  566. AddBoolOption(Object, Prop)
  567. end
  568. end
  569. for Num, Prop in pairs(BrickColorProperties) do
  570. if TestProperty(Object, Prop) then
  571. AddBrickColorOption(Object, Prop)
  572. end
  573. end
  574. end
  575.  
  576.  
  577. function AddForceField(Player)
  578. Instance.new("ForceField", Player.Character)
  579. end
  580. function Killp(Player)
  581. Player.Character.Humanoid.Health=0
  582. end
  583. function AddExplode(Player)
  584. Instance.new("Explosion", Player.Character)
  585. end
  586. function AddSparkles(Player)
  587. Instance.new("Sparkles", Player.Character)
  588. end
  589.  
  590.  
  591. function FreezeParts(b)
  592. if (b.className == "Part") then
  593. b.Anchored=true;
  594. end
  595. end
  596.  
  597.  
  598.  
  599.  
  600. function Search(Object)
  601. Gui = Instance.new("ScreenGui")
  602. Gui.Parent = game.Players.LocalPlayer.PlayerGui
  603. Gui.Name = "Explorer"
  604. if Object ~= game then
  605. AddOption("Back", function()
  606. Clear();
  607. Search(Object.Parent)
  608. end, Color3.new(0.5, 1, 1), false)
  609. end
  610. if Object:IsA("Sound") then
  611. AddOption("Copy ID", function() CopyString(tostring(Object.SoundId):sub(14)); warn("Copied."); Clear(); Search(Object); end, Color3.new(1, 0.2, 0), false)
  612. AddOption("Play", function() Object:Play(); Clear(); Search(Object); end, Color3.new(0, 0, 1), false)
  613. AddOption("Stop", function() Object:Stop(); Clear(); Search(Object); end, Color3.new(1, 1, 0), false)
  614. end
  615. if Object:IsA("BoolValue") then
  616. AddBoolOption(Object,"Value")
  617. end
  618. if Object:IsA("Workspace") then
  619. 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)
  620. end
  621. if Object:IsA("IntValue") or Object:IsA("StringValue") or Object:IsA("NumberValue") then
  622. AddOption("Copy Value", function() CopyString(tostring(Object.Value)); warn("Copied."); Clear(); Search(Object); end, Color3.new(1, 0.2, 0), false)
  623. end
  624. if Object:IsA("TextLabel") or Object:IsA("TextBox") or Object:IsA("Message") then
  625. AddOption("Copy Value", function() CopyString(tostring(Object.Text)); warn("Copied."); Clear(); Search(Object); end, Color3.new(1, 0.2, 0), false)
  626. end
  627. if Object ~= game then
  628. AddOption("Unanchor Children", function() UnanchorObject(Object); Clear(); Search(Object); end, Color3.new(1, 0.2, 0), false)
  629. AddOption("ClearAllChildren", function() Object:ClearAllChildren(); Clear(); Search(Object); end, Color3.new(1, 0.6, 0.1), false)
  630. end
  631. if Object:IsA("Model") then
  632. AddOption("SaveInstance", function() SaveInstance(Object) end, Color3.new(1, 1, 1), false)
  633. end
  634. AddOption("Reload", function() Clear(); Search(Object); end, Color3.new(0.2, 1, 0.2), false)
  635. if Cloned then
  636. AddOption("Paste", function() Cloned:Clone().Parent = Object; Clear(); Search(Object); end, Color3.new(0.5, 1, 1), false)
  637. end
  638. if Deleted then
  639. AddOption("Undo", function() Deleted.Parent = DeleteParent; Deleted = nil; DeletedParent = nil; Clear(); Search(Object); end, Color3.new(1, 0.6, 0.1), false)
  640. end
  641. if Object:IsA("Player") then
  642. 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)
  643. AddOption("Goto Character", function() Clear(); if Object.Character then Search(Object.Character); end end, Color3.new(1, 1, 1), false)
  644. AddOption("Kill", function() Killp(Object) end, Color3.new(1,0.6,0.1), false)
  645. AddOption("Freeze", function() FreezeParts(Object.Character.Torso); end, Color3.new(1, 0.6, 0.1), false)
  646. AddOption("Unequip Tools", function() Object.Character.Humanoid:UnequipTools() end, Color3.new(1, 0.6, 0.1), false)
  647. --AddOption("Explode", function() AddExplode(Object); end, Color3.new(1, 0.6, 0.1), false)
  648. end
  649.  
  650.  
  651.  
  652. if Object:IsA("Lighting") then
  653. AddOption("Night", function() Object.TimeOfDay="24:24:24" end, Color3.new(1.,0.6,0.1), false)
  654. AddOption("Day", function() Object.TimeOfDay="12:12:12" end, Color3.new(1.,0.6,0.1), false)
  655. end
  656. if Object:IsA("LocalScript") or Object:IsA("ModuleScript") then
  657. AddOption("EditScript", function() Clear(); ScriptSearch(Object); end, Color3.new(1, 1, 1), false)
  658. end
  659. if Object:IsA("Terrain") then
  660. AddOption("Clear", function() Object:Clear(); end, Color3.new(1, 1, 1), false)
  661. end
  662.  
  663. LoadOptions(Object)
  664. AddOption("Close", Clear, Color3.new(1, 0.2, 0), false)
  665. if not Object:IsA("Workspace") or not Object:IsA("Player") then
  666. for Num, Obj in pairs(Object:GetChildren()) do
  667. --if not Obj:IsA("BasePart") or not Object.Parent == game.Workspace then
  668. if true then
  669. if Obj:IsA("LocalScript") then
  670. AddButton(Obj, function() Clear(); Search(Obj); end, Color3.new(1, 0, 0), true)
  671. elseif Obj:IsA("Script") or Obj:IsA("StarterScript") or Obj:IsA("CoreScript") then
  672. AddButton(Obj, function() Clear(); Search(Obj); end, Color3.new(0.5, 0.5, 0.8), true)
  673. elseif Obj.Parent == game then
  674. AddButton(Obj, function() Clear(); Search(Obj); end, Color3.new(1, 1, 1), false)
  675. else
  676. AddButton(Obj, function() Clear(); Search(Obj); end, Color3.new(1, 1, 1), true)
  677. end
  678. end
  679. end
  680. end
  681. function MoveUp(Place, Amount)
  682. for i,v in pairs(Place:GetChildren()) do
  683. if v:IsA("TextLabel") or v:IsA("TextBox") then
  684. v.Position = v.Position + UDim2.new(0,0,0,-Amount)
  685. end
  686. end
  687. end
  688. function MoveDown(Place, Amount)
  689. for i,v in pairs(Place:GetChildren()) do
  690. if v:IsA("TextLabel") or v:IsA("TextBox") then
  691. v.Position = v.Position + UDim2.new(0,0,0,Amount)
  692. end
  693. end
  694. end
  695. i=0
  696. function ScriptSearch(S)
  697. Script2 = S
  698. Script = decompile(Script2)
  699. Table = {}
  700. Enabled = true
  701. Gui = Instance.new("ScreenGui")
  702. Gui.Parent = game.Players.LocalPlayer.PlayerGui
  703. Gui.Name = "Explorer"
  704. while Enabled do
  705. Start, End = string.find(Script, '\n')
  706. print(Start, End)
  707. if Start and End then
  708. table.insert(Table, string.sub(Script, 1, End))
  709. New = string.sub(Script, End+1, string.len(Script))
  710. Script = New
  711. else
  712. Enabled = false
  713. table.insert(Table, string.sub(Script, 1, End))
  714. print("Finished")
  715. end
  716. end
  717. P = Instance.new("TextLabel")
  718. P.Size = UDim2.new(0, 500, 0, 20)
  719. P.Text = Script2.Name
  720. P.Name = "Script Line"
  721. P.Parent = Gui
  722. P.BackgroundColor3 = Color3.new(1, 1, 1)
  723. P.TextColor3 = Color3.new(0, 0, 0)
  724. P.BackgroundTransparency = 0.5
  725. P.Position = UDim2.new(0.5, -250, 0, 150+(20*(i-1)))
  726. P.TextXAlignment = "Left"
  727. i=i+1
  728. New = {}
  729. for I,Val in pairs(Table) do
  730. print(Val)
  731. P = Instance.new("TextBox")
  732. P.ClearTextOnFocus = false
  733. P.Size = UDim2.new(0, 500, 0, 20)
  734. P.Text = Val
  735. P.Name = "Script Line"
  736. P.Parent = Gui
  737. P.BackgroundColor3 = Color3.new(1, 1, 1)
  738. P.TextColor3 = Color3.new(0, 0, 0)
  739. P.BackgroundTransparency = 0.5
  740. P.Position = UDim2.new(0.5, -250, 0, 150+(20*(i-1)))
  741. P.TextXAlignment = "Left"
  742. table.insert(New, P)
  743. i=i+1
  744. end
  745. i=1
  746. P = Instance.new("TextButton")
  747. P.Size = UDim2.new(0, 20, 0, 20)
  748. P.Text = "^"
  749. P.Name = "Scroll"
  750. P.Parent = Gui
  751. P.BackgroundColor3 = Color3.new(1, 1, 1)
  752. P.TextColor3 = Color3.new(0, 0, 0)
  753. P.BackgroundTransparency = 0.5
  754. P.Position = UDim2.new(0.5, -270, 0, 150+(20*(i-1)))
  755. P.MouseButton1Click:connect(function()
  756. MoveUp(Gui, -20)
  757. end)
  758. i=i+1
  759. P = Instance.new("TextButton")
  760. P.Size = UDim2.new(0, 20, 0, 20)
  761. P.Text = "v"
  762. P.Name = "Scroll"
  763. P.Parent = Gui
  764. P.BackgroundColor3 = Color3.new(1, 1, 1)
  765. P.TextColor3 = Color3.new(0, 0, 0)
  766. P.BackgroundTransparency = 0.5
  767. P.Position = UDim2.new(0.5, -270, 0, 150+(20*(i-1)))
  768. P.MouseButton1Click:connect(function()
  769. MoveDown(Gui, -20)
  770. end)
  771. i=i+1
  772. P = Instance.new("TextButton")
  773. P.Size = UDim2.new(0, 20, 0, 20)
  774. P.Text = "^^"
  775. P.Name = "Scroll"
  776. P.Parent = Gui
  777. P.BackgroundColor3 = Color3.new(1, 1, 1)
  778. P.TextColor3 = Color3.new(0, 0, 0)
  779. P.BackgroundTransparency = 0.5
  780. P.Position = UDim2.new(0.5, -270, 0, 150+(20*(i-1)))
  781. P.MouseButton1Click:connect(function()
  782. MoveUp(Gui, -200)
  783. end)
  784. i=i+1
  785. P = Instance.new("TextButton")
  786. P.Size = UDim2.new(0, 20, 0, 20)
  787. P.Text = "vv"
  788. P.Name = "Scroll"
  789. P.Parent = Gui
  790. P.BackgroundColor3 = Color3.new(1, 1, 1)
  791. P.TextColor3 = Color3.new(0, 0, 0)
  792. P.BackgroundTransparency = 0.5
  793. P.Position = UDim2.new(0.5, -270, 0, 150+(20*(i-1)))
  794. P.MouseButton1Click:connect(function()
  795. MoveDown(Gui, -200)
  796. end)
  797. i=i+1
  798. P = Instance.new("TextButton")
  799. P.Size = UDim2.new(0, 20, 0, 20)
  800. P.Text = "S"
  801. P.Name = "Save"
  802. P.Parent = Gui
  803. P.BackgroundColor3 = Color3.new(0, 1, 0)
  804. P.TextColor3 = Color3.new(0, 0, 0)
  805. P.BackgroundTransparency = 0.5
  806. P.Position = UDim2.new(0.5, -270, 0, 150+(20*(i-1)))
  807. P.MouseButton1Click:connect(function()
  808. StringS = ""
  809. for Num, Obj in pairs(New) do
  810. StringS = StringS..Obj.Text..'\n'
  811. end
  812. S.Source = StringS
  813. S.Disabled = true
  814. S.Disabled = false
  815. end)
  816. i=i+1
  817. P = Instance.new("TextButton")
  818. P.Size = UDim2.new(0, 20, 0, 20)
  819. P.Text = "C"
  820. P.Name = "Copy"
  821. P.Parent = Gui
  822. P.BackgroundColor3 = Color3.new(1, 0.2, 0)
  823. P.TextColor3 = Color3.new(0, 0, 0)
  824. P.BackgroundTransparency = 0.5
  825. P.Position = UDim2.new(0.5, -270, 0, 150+(20*(i-1)))
  826. P.MouseButton1Click:connect(function()
  827. StringS = ""
  828. for Num, Obj in pairs(New) do
  829. StringS = StringS..Obj.Text..'\n'
  830. end
  831. CopyString(StringS)
  832. end)
  833. i=i+1
  834. P = Instance.new("TextButton")
  835. P.Size = UDim2.new(0, 20, 0, 20)
  836. P.Text = "x"
  837. P.Name = "Back"
  838. P.Parent = Gui
  839. P.BackgroundColor3 = Color3.new(1, 0.2, 0)
  840. P.TextColor3 = Color3.new(0, 0, 0)
  841. P.BackgroundTransparency = 0.5
  842. P.Position = UDim2.new(0.5, -270, 0, 150+(20*(i-1)))
  843. P.MouseButton1Click:connect(function()
  844. Clear()
  845. i=0
  846. Search(S)
  847. end)
  848. i=i+1
  849. end
  850. end
  851.  
  852. pgr.MouseButton1Click:connect(function()
  853. Clear()
  854. Search(game)
  855. end)
  856. end
  857.  
  858. Survivor = Instance.new("ScreenGui")
  859. CircleStart = Instance.new("ImageLabel")
  860. Vicon = Instance.new("ImageLabel")
  861. LoadNotify = Instance.new("TextLabel")
  862. VersionNotify = Instance.new("TextLabel")
  863. NotificationFrame = Instance.new("Frame")
  864. MainText = Instance.new("TextLabel")
  865. Borders = Instance.new("Frame")
  866. Border = Instance.new("ImageLabel")
  867. Border_2 = Instance.new("ImageLabel")
  868. Border_3 = Instance.new("ImageLabel")
  869. Border_4 = Instance.new("ImageLabel")
  870. Border_5 = Instance.new("ImageLabel")
  871. Border_6 = Instance.new("ImageLabel")
  872. Border_7 = Instance.new("ImageLabel")
  873. Border_8 = Instance.new("ImageLabel")
  874. Info = Instance.new("TextLabel")
  875. Borders_2 = Instance.new("Frame")
  876. Border_9 = Instance.new("ImageLabel")
  877. Border_10 = Instance.new("ImageLabel")
  878. Border_11 = Instance.new("ImageLabel")
  879. Border_12 = Instance.new("ImageLabel")
  880. Border_13 = Instance.new("ImageLabel")
  881. Border_14 = Instance.new("ImageLabel")
  882. Border_15 = Instance.new("ImageLabel")
  883. Border_16 = Instance.new("ImageLabel")
  884. AuthFrame = Instance.new("Frame")
  885. DiscordTag = Instance.new("TextBox")
  886. Borders_3 = Instance.new("Frame")
  887. Border_17 = Instance.new("ImageLabel")
  888. Border_18 = Instance.new("ImageLabel")
  889. Border_19 = Instance.new("ImageLabel")
  890. Border_20 = Instance.new("ImageLabel")
  891. Border_21 = Instance.new("ImageLabel")
  892. Border_22 = Instance.new("ImageLabel")
  893. Border_23 = Instance.new("ImageLabel")
  894. Border_24 = Instance.new("ImageLabel")
  895. Vicon_2 = Instance.new("ImageLabel")
  896. Title = Instance.new("TextLabel")
  897. ProceedButton = Instance.new("TextButton")
  898. Borders_4 = Instance.new("Frame")
  899. Border_25 = Instance.new("ImageLabel")
  900. Border_26 = Instance.new("ImageLabel")
  901. Border_27 = Instance.new("ImageLabel")
  902. Border_28 = Instance.new("ImageLabel")
  903. Border_29 = Instance.new("ImageLabel")
  904. Border_30 = Instance.new("ImageLabel")
  905. Border_31 = Instance.new("ImageLabel")
  906. Border_32 = Instance.new("ImageLabel")
  907. CancelButton = Instance.new("TextButton")
  908. Borders_5 = Instance.new("Frame")
  909. Border_33 = Instance.new("ImageLabel")
  910. Border_34 = Instance.new("ImageLabel")
  911. Border_35 = Instance.new("ImageLabel")
  912. Border_36 = Instance.new("ImageLabel")
  913. Border_37 = Instance.new("ImageLabel")
  914. Border_38 = Instance.new("ImageLabel")
  915. Border_39 = Instance.new("ImageLabel")
  916. Border_40 = Instance.new("ImageLabel")
  917. HTBBtn = Instance.new("TextButton")
  918. Borders_6 = Instance.new("Frame")
  919. Border_41 = Instance.new("ImageLabel")
  920. Border_42 = Instance.new("ImageLabel")
  921. Border_43 = Instance.new("ImageLabel")
  922. Border_44 = Instance.new("ImageLabel")
  923. Border_45 = Instance.new("ImageLabel")
  924. Border_46 = Instance.new("ImageLabel")
  925. Border_47 = Instance.new("ImageLabel")
  926. Border_48 = Instance.new("ImageLabel")
  927. QuitButton = Instance.new("ImageButton")
  928. Borders_7 = Instance.new("Frame")
  929. Border_49 = Instance.new("ImageLabel")
  930. Border_50 = Instance.new("ImageLabel")
  931. Border_51 = Instance.new("ImageLabel")
  932. Border_52 = Instance.new("ImageLabel")
  933. Border_53 = Instance.new("ImageLabel")
  934. Border_54 = Instance.new("ImageLabel")
  935. Border_55 = Instance.new("ImageLabel")
  936. Border_56 = Instance.new("ImageLabel")
  937. RefreshButton = Instance.new("ImageButton")
  938. Borders_8 = Instance.new("Frame")
  939. Border_57 = Instance.new("ImageLabel")
  940. Border_58 = Instance.new("ImageLabel")
  941. Border_59 = Instance.new("ImageLabel")
  942. Border_60 = Instance.new("ImageLabel")
  943. Border_61 = Instance.new("ImageLabel")
  944. Border_62 = Instance.new("ImageLabel")
  945. Border_63 = Instance.new("ImageLabel")
  946. Border_64 = Instance.new("ImageLabel")
  947. MainButton = Instance.new("ImageButton")
  948. Borders_9 = Instance.new("Frame")
  949. Border_65 = Instance.new("ImageLabel")
  950. Border_66 = Instance.new("ImageLabel")
  951. Border_67 = Instance.new("ImageLabel")
  952. Border_68 = Instance.new("ImageLabel")
  953. Border_69 = Instance.new("ImageLabel")
  954. Border_70 = Instance.new("ImageLabel")
  955. Border_71 = Instance.new("ImageLabel")
  956. Border_72 = Instance.new("ImageLabel")
  957.  
  958. -- Properties
  959.  
  960. Survivor.Name = "Survivor"
  961. Survivor.Parent = game.CoreGui
  962. Survivor.ResetOnSpawn = false
  963.  
  964. CircleStart.Name = "CircleStart"
  965. CircleStart.Parent = Survivor
  966. CircleStart.BackgroundColor3 = Color3.new(1, 1, 1)
  967. CircleStart.BackgroundTransparency = 1
  968. CircleStart.BorderSizePixel = 0
  969. CircleStart.Position = UDim2.new(0.426999986, 0, 1, 0)
  970. CircleStart.Size = UDim2.new(0, 200, 0, 200)
  971. CircleStart.ZIndex = 100
  972. CircleStart.Image = "rbxassetid://232918622"
  973. CircleStart.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  974.  
  975. Vicon.Name = "Vicon"
  976. Vicon.Parent = CircleStart
  977. Vicon.BackgroundColor3 = Color3.new(1, 1, 1)
  978. Vicon.BackgroundTransparency = 1
  979. Vicon.BorderSizePixel = 0
  980. Vicon.Position = UDim2.new(0, 50, 0, 50)
  981. Vicon.Size = UDim2.new(0, 100, 0, 100)
  982. Vicon.ZIndex = 110
  983. Vicon.Image = "rbxassetid://1677963821"
  984.  
  985. LoadNotify.Name = "LoadNotify"
  986. LoadNotify.Parent = CircleStart
  987. LoadNotify.BackgroundColor3 = Color3.new(1, 1, 1)
  988. LoadNotify.BackgroundTransparency = 1
  989. LoadNotify.BorderSizePixel = 0
  990. LoadNotify.Position = UDim2.new(0, 0, 0, 150)
  991. LoadNotify.Size = UDim2.new(0, 200, 0, 50)
  992. LoadNotify.ZIndex = 150
  993. LoadNotify.Font = Enum.Font.Highway
  994. LoadNotify.Text = "Survivor GUI Loaded."
  995. LoadNotify.TextColor3 = Color3.new(1, 1, 1)
  996. LoadNotify.TextSize = 14
  997.  
  998. VersionNotify.Name = "VersionNotify"
  999. VersionNotify.Parent = CircleStart
  1000. VersionNotify.BackgroundColor3 = Color3.new(1, 1, 1)
  1001. VersionNotify.BackgroundTransparency = 1
  1002. VersionNotify.BorderSizePixel = 0
  1003. VersionNotify.Size = UDim2.new(0, 200, 0, 50)
  1004. VersionNotify.ZIndex = 150
  1005. VersionNotify.Font = Enum.Font.Highway
  1006. VersionNotify.Text = "Version 4.0"
  1007. VersionNotify.TextColor3 = Color3.new(1, 1, 1)
  1008. VersionNotify.TextSize = 14
  1009.  
  1010. NotificationFrame.Name = "NotificationFrame"
  1011. NotificationFrame.Parent = Survivor
  1012. NotificationFrame.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  1013. NotificationFrame.BackgroundTransparency = 1
  1014. NotificationFrame.Position = UDim2.new(0, 0, 0.100000001, 0)
  1015. NotificationFrame.Size = UDim2.new(1, 0, 1, 0)
  1016. NotificationFrame.ZIndex = 150
  1017.  
  1018. MainText.Name = "MainText"
  1019. MainText.Parent = NotificationFrame
  1020. MainText.BackgroundColor3 = Color3.new(1, 0.333333, 0)
  1021. MainText.BorderSizePixel = 0
  1022. MainText.Position = UDim2.new(0.0724743754, 0, 0.921383619, 0)
  1023. MainText.Size = UDim2.new(0.912884355, 0, 0.0503144637, 0)
  1024. MainText.ZIndex = 220
  1025. MainText.Font = Enum.Font.Highway
  1026. MainText.Text = "Unable To Load Whitelist."
  1027. MainText.TextColor3 = Color3.new(1, 1, 1)
  1028. MainText.TextScaled = true
  1029. MainText.TextSize = 14
  1030. MainText.TextWrapped = true
  1031.  
  1032. Borders.Name = "Borders"
  1033. Borders.Parent = MainText
  1034. Borders.BackgroundColor3 = Color3.new(1, 1, 1)
  1035. Borders.BackgroundTransparency = 1
  1036. Borders.BorderSizePixel = 0
  1037. Borders.Size = UDim2.new(1, 0, 1, 0)
  1038. Borders.ZIndex = 120
  1039.  
  1040. Border.Name = "Border"
  1041. Border.Parent = Borders
  1042. Border.BackgroundColor3 = Color3.new(1, 0.333333, 0)
  1043. Border.BackgroundTransparency = 1
  1044. Border.BorderSizePixel = 0
  1045. Border.Position = UDim2.new(0, -12, 0, -12)
  1046. Border.Size = UDim2.new(0, 12, 0, 12)
  1047. Border.ZIndex = 220
  1048. Border.Image = "http://www.roblox.com/asset/?id=238725003"
  1049. Border.ImageColor3 = Color3.new(1, 0.333333, 0)
  1050. Border.ImageRectSize = Vector2.new(12, 12)
  1051.  
  1052. Border_2.Name = "Border"
  1053. Border_2.Parent = Borders
  1054. Border_2.BackgroundColor3 = Color3.new(1, 0.333333, 0)
  1055. Border_2.BackgroundTransparency = 1
  1056. Border_2.BorderSizePixel = 0
  1057. Border_2.Position = UDim2.new(1, 0, 0, -12)
  1058. Border_2.Size = UDim2.new(0, 12, 0, 12)
  1059. Border_2.ZIndex = 220
  1060. Border_2.Image = "http://www.roblox.com/asset/?id=238725003"
  1061. Border_2.ImageColor3 = Color3.new(1, 0.333333, 0)
  1062. Border_2.ImageRectOffset = Vector2.new(24, 0)
  1063. Border_2.ImageRectSize = Vector2.new(12, 12)
  1064.  
  1065. Border_3.Name = "Border"
  1066. Border_3.Parent = Borders
  1067. Border_3.BackgroundColor3 = Color3.new(1, 0.333333, 0)
  1068. Border_3.BackgroundTransparency = 1
  1069. Border_3.BorderSizePixel = 0
  1070. Border_3.Position = UDim2.new(0, -12, 1, 0)
  1071. Border_3.Size = UDim2.new(0, 12, 0, 12)
  1072. Border_3.ZIndex = 220
  1073. Border_3.Image = "http://www.roblox.com/asset/?id=238725003"
  1074. Border_3.ImageColor3 = Color3.new(1, 0.333333, 0)
  1075. Border_3.ImageRectOffset = Vector2.new(0, 24)
  1076. Border_3.ImageRectSize = Vector2.new(12, 12)
  1077.  
  1078. Border_4.Name = "Border"
  1079. Border_4.Parent = Borders
  1080. Border_4.BackgroundColor3 = Color3.new(1, 0.333333, 0)
  1081. Border_4.BackgroundTransparency = 1
  1082. Border_4.BorderSizePixel = 0
  1083. Border_4.Position = UDim2.new(1, 0, 1, 0)
  1084. Border_4.Size = UDim2.new(0, 12, 0, 12)
  1085. Border_4.ZIndex = 220
  1086. Border_4.Image = "http://www.roblox.com/asset/?id=238725003"
  1087. Border_4.ImageColor3 = Color3.new(1, 0.333333, 0)
  1088. Border_4.ImageRectOffset = Vector2.new(24, 24)
  1089. Border_4.ImageRectSize = Vector2.new(12, 12)
  1090.  
  1091. Border_5.Name = "Border"
  1092. Border_5.Parent = Borders
  1093. Border_5.BackgroundColor3 = Color3.new(1, 0.333333, 0)
  1094. Border_5.BackgroundTransparency = 1
  1095. Border_5.BorderSizePixel = 0
  1096. Border_5.Position = UDim2.new(0, 0, 1, 0)
  1097. Border_5.Size = UDim2.new(1, 0, 0, 12)
  1098. Border_5.ZIndex = 220
  1099. Border_5.Image = "http://www.roblox.com/asset/?id=238725003"
  1100. Border_5.ImageColor3 = Color3.new(1, 0.333333, 0)
  1101. Border_5.ImageRectOffset = Vector2.new(12, 24)
  1102. Border_5.ImageRectSize = Vector2.new(12, 12)
  1103.  
  1104. Border_6.Name = "Border"
  1105. Border_6.Parent = Borders
  1106. Border_6.BackgroundColor3 = Color3.new(1, 0.333333, 0)
  1107. Border_6.BackgroundTransparency = 1
  1108. Border_6.BorderSizePixel = 0
  1109. Border_6.Position = UDim2.new(0, 0, 0, -12)
  1110. Border_6.Size = UDim2.new(1, 0, 0, 12)
  1111. Border_6.ZIndex = 220
  1112. Border_6.Image = "http://www.roblox.com/asset/?id=238725003"
  1113. Border_6.ImageColor3 = Color3.new(1, 0.333333, 0)
  1114. Border_6.ImageRectOffset = Vector2.new(12, 0)
  1115. Border_6.ImageRectSize = Vector2.new(12, 12)
  1116.  
  1117. Border_7.Name = "Border"
  1118. Border_7.Parent = Borders
  1119. Border_7.BackgroundColor3 = Color3.new(1, 0.333333, 0)
  1120. Border_7.BackgroundTransparency = 1
  1121. Border_7.BorderSizePixel = 0
  1122. Border_7.Position = UDim2.new(0, -12, 0, 0)
  1123. Border_7.Size = UDim2.new(0, 12, 1, 0)
  1124. Border_7.ZIndex = 220
  1125. Border_7.Image = "http://www.roblox.com/asset/?id=238725003"
  1126. Border_7.ImageColor3 = Color3.new(1, 0.333333, 0)
  1127. Border_7.ImageRectOffset = Vector2.new(0, 12)
  1128. Border_7.ImageRectSize = Vector2.new(12, 12)
  1129.  
  1130. Border_8.Name = "Border"
  1131. Border_8.Parent = Borders
  1132. Border_8.BackgroundColor3 = Color3.new(1, 0.333333, 0)
  1133. Border_8.BackgroundTransparency = 1
  1134. Border_8.BorderSizePixel = 0
  1135. Border_8.Position = UDim2.new(1, 0, 0, 0)
  1136. Border_8.Size = UDim2.new(0, 12, 1, 0)
  1137. Border_8.ZIndex = 220
  1138. Border_8.Image = "http://www.roblox.com/asset/?id=238725003"
  1139. Border_8.ImageColor3 = Color3.new(1, 0.333333, 0)
  1140. Border_8.ImageRectOffset = Vector2.new(24, 12)
  1141. Border_8.ImageRectSize = Vector2.new(12, 12)
  1142.  
  1143. Info.Name = "Info"
  1144. Info.Parent = NotificationFrame
  1145. Info.BackgroundColor3 = Color3.new(1, 0.333333, 0)
  1146. Info.BorderSizePixel = 0
  1147. Info.Position = UDim2.new(0.0117130307, 0, 0.921383679, 0)
  1148. Info.Size = UDim2.new(0.0263543185, 0, 0.0503144637, 0)
  1149. Info.ZIndex = 220
  1150. Info.Font = Enum.Font.Highway
  1151. Info.Text = "!"
  1152. Info.TextColor3 = Color3.new(1, 1, 1)
  1153. Info.TextScaled = true
  1154. Info.TextSize = 14
  1155. Info.TextWrapped = true
  1156.  
  1157. Borders_2.Name = "Borders"
  1158. Borders_2.Parent = Info
  1159. Borders_2.BackgroundColor3 = Color3.new(1, 1, 1)
  1160. Borders_2.BackgroundTransparency = 1
  1161. Borders_2.BorderSizePixel = 0
  1162. Borders_2.Size = UDim2.new(1, 0, 1, 0)
  1163. Borders_2.ZIndex = 120
  1164.  
  1165. Border_9.Name = "Border"
  1166. Border_9.Parent = Borders_2
  1167. Border_9.BackgroundColor3 = Color3.new(1, 0.333333, 0)
  1168. Border_9.BackgroundTransparency = 1
  1169. Border_9.BorderSizePixel = 0
  1170. Border_9.Position = UDim2.new(0, -12, 0, -12)
  1171. Border_9.Size = UDim2.new(0, 12, 0, 12)
  1172. Border_9.ZIndex = 220
  1173. Border_9.Image = "http://www.roblox.com/asset/?id=238725003"
  1174. Border_9.ImageColor3 = Color3.new(1, 0.333333, 0)
  1175. Border_9.ImageRectSize = Vector2.new(12, 12)
  1176.  
  1177. Border_10.Name = "Border"
  1178. Border_10.Parent = Borders_2
  1179. Border_10.BackgroundColor3 = Color3.new(1, 0.333333, 0)
  1180. Border_10.BackgroundTransparency = 1
  1181. Border_10.BorderSizePixel = 0
  1182. Border_10.Position = UDim2.new(1, 0, 0, -12)
  1183. Border_10.Size = UDim2.new(0, 12, 0, 12)
  1184. Border_10.ZIndex = 220
  1185. Border_10.Image = "http://www.roblox.com/asset/?id=238725003"
  1186. Border_10.ImageColor3 = Color3.new(1, 0.333333, 0)
  1187. Border_10.ImageRectOffset = Vector2.new(24, 0)
  1188. Border_10.ImageRectSize = Vector2.new(12, 12)
  1189.  
  1190. Border_11.Name = "Border"
  1191. Border_11.Parent = Borders_2
  1192. Border_11.BackgroundColor3 = Color3.new(1, 0.333333, 0)
  1193. Border_11.BackgroundTransparency = 1
  1194. Border_11.BorderSizePixel = 0
  1195. Border_11.Position = UDim2.new(0, -12, 1, 0)
  1196. Border_11.Size = UDim2.new(0, 12, 0, 12)
  1197. Border_11.ZIndex = 220
  1198. Border_11.Image = "http://www.roblox.com/asset/?id=238725003"
  1199. Border_11.ImageColor3 = Color3.new(1, 0.333333, 0)
  1200. Border_11.ImageRectOffset = Vector2.new(0, 24)
  1201. Border_11.ImageRectSize = Vector2.new(12, 12)
  1202.  
  1203. Border_12.Name = "Border"
  1204. Border_12.Parent = Borders_2
  1205. Border_12.BackgroundColor3 = Color3.new(1, 0.333333, 0)
  1206. Border_12.BackgroundTransparency = 1
  1207. Border_12.BorderSizePixel = 0
  1208. Border_12.Position = UDim2.new(1, 0, 1, 0)
  1209. Border_12.Size = UDim2.new(0, 12, 0, 12)
  1210. Border_12.ZIndex = 220
  1211. Border_12.Image = "http://www.roblox.com/asset/?id=238725003"
  1212. Border_12.ImageColor3 = Color3.new(1, 0.333333, 0)
  1213. Border_12.ImageRectOffset = Vector2.new(24, 24)
  1214. Border_12.ImageRectSize = Vector2.new(12, 12)
  1215.  
  1216. Border_13.Name = "Border"
  1217. Border_13.Parent = Borders_2
  1218. Border_13.BackgroundColor3 = Color3.new(1, 0.333333, 0)
  1219. Border_13.BackgroundTransparency = 1
  1220. Border_13.BorderSizePixel = 0
  1221. Border_13.Position = UDim2.new(0, 0, 1, 0)
  1222. Border_13.Size = UDim2.new(1, 0, 0, 12)
  1223. Border_13.ZIndex = 220
  1224. Border_13.Image = "http://www.roblox.com/asset/?id=238725003"
  1225. Border_13.ImageColor3 = Color3.new(1, 0.333333, 0)
  1226. Border_13.ImageRectOffset = Vector2.new(12, 24)
  1227. Border_13.ImageRectSize = Vector2.new(12, 12)
  1228.  
  1229. Border_14.Name = "Border"
  1230. Border_14.Parent = Borders_2
  1231. Border_14.BackgroundColor3 = Color3.new(1, 0.333333, 0)
  1232. Border_14.BackgroundTransparency = 1
  1233. Border_14.BorderSizePixel = 0
  1234. Border_14.Position = UDim2.new(0, 0, 0, -12)
  1235. Border_14.Size = UDim2.new(1, 0, 0, 12)
  1236. Border_14.ZIndex = 220
  1237. Border_14.Image = "http://www.roblox.com/asset/?id=238725003"
  1238. Border_14.ImageColor3 = Color3.new(1, 0.333333, 0)
  1239. Border_14.ImageRectOffset = Vector2.new(12, 0)
  1240. Border_14.ImageRectSize = Vector2.new(12, 12)
  1241.  
  1242. Border_15.Name = "Border"
  1243. Border_15.Parent = Borders_2
  1244. Border_15.BackgroundColor3 = Color3.new(1, 0.333333, 0)
  1245. Border_15.BackgroundTransparency = 1
  1246. Border_15.BorderSizePixel = 0
  1247. Border_15.Position = UDim2.new(0, -12, 0, 0)
  1248. Border_15.Size = UDim2.new(0, 12, 1, 0)
  1249. Border_15.ZIndex = 220
  1250. Border_15.Image = "http://www.roblox.com/asset/?id=238725003"
  1251. Border_15.ImageColor3 = Color3.new(1, 0.333333, 0)
  1252. Border_15.ImageRectOffset = Vector2.new(0, 12)
  1253. Border_15.ImageRectSize = Vector2.new(12, 12)
  1254.  
  1255. Border_16.Name = "Border"
  1256. Border_16.Parent = Borders_2
  1257. Border_16.BackgroundColor3 = Color3.new(1, 0.333333, 0)
  1258. Border_16.BackgroundTransparency = 1
  1259. Border_16.BorderSizePixel = 0
  1260. Border_16.Position = UDim2.new(1, 0, 0, 0)
  1261. Border_16.Size = UDim2.new(0, 12, 1, 0)
  1262. Border_16.ZIndex = 220
  1263. Border_16.Image = "http://www.roblox.com/asset/?id=238725003"
  1264. Border_16.ImageColor3 = Color3.new(1, 0.333333, 0)
  1265. Border_16.ImageRectOffset = Vector2.new(24, 12)
  1266. Border_16.ImageRectSize = Vector2.new(12, 12)
  1267.  
  1268. AuthFrame.Name = "AuthFrame"
  1269. AuthFrame.Parent = Survivor
  1270. AuthFrame.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  1271. AuthFrame.Size = UDim2.new(1, 0, 1, 0)
  1272. AuthFrame.Visible = false
  1273. AuthFrame.ZIndex = 100
  1274.  
  1275. DiscordTag.Name = "DiscordTag"
  1276. DiscordTag.Parent = AuthFrame
  1277. DiscordTag.BackgroundColor3 = Color3.new(1, 1, 1)
  1278. DiscordTag.BorderSizePixel = 0
  1279. DiscordTag.Position = UDim2.new(0.214494854, 0, 0.463836491, 0)
  1280. DiscordTag.Size = UDim2.new(0.545387983, 0, 0.0723270476, 0)
  1281. DiscordTag.ZIndex = 120
  1282. DiscordTag.Font = Enum.Font.Highway
  1283. DiscordTag.PlaceholderColor3 = Color3.new(1, 1, 1)
  1284. DiscordTag.Text = "DiscordTag#0000"
  1285. DiscordTag.TextColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  1286. DiscordTag.TextScaled = true
  1287. DiscordTag.TextSize = 14
  1288. DiscordTag.TextWrapped = true
  1289. DiscordTag.TextXAlignment = Enum.TextXAlignment.Left
  1290.  
  1291. Borders_3.Name = "Borders"
  1292. Borders_3.Parent = DiscordTag
  1293. Borders_3.BackgroundColor3 = Color3.new(1, 1, 1)
  1294. Borders_3.BackgroundTransparency = 1
  1295. Borders_3.BorderSizePixel = 0
  1296. Borders_3.Size = UDim2.new(1, 0, 1, 0)
  1297. Borders_3.ZIndex = 120
  1298.  
  1299. Border_17.Name = "Border"
  1300. Border_17.Parent = Borders_3
  1301. Border_17.BackgroundColor3 = Color3.new(1, 1, 1)
  1302. Border_17.BackgroundTransparency = 1
  1303. Border_17.BorderSizePixel = 0
  1304. Border_17.Position = UDim2.new(0, -12, 0, -12)
  1305. Border_17.Size = UDim2.new(0, 12, 0, 12)
  1306. Border_17.ZIndex = 120
  1307. Border_17.Image = "http://www.roblox.com/asset/?id=238725003"
  1308. Border_17.ImageRectSize = Vector2.new(12, 12)
  1309.  
  1310. Border_18.Name = "Border"
  1311. Border_18.Parent = Borders_3
  1312. Border_18.BackgroundColor3 = Color3.new(1, 1, 1)
  1313. Border_18.BackgroundTransparency = 1
  1314. Border_18.BorderSizePixel = 0
  1315. Border_18.Position = UDim2.new(1, 0, 0, -12)
  1316. Border_18.Size = UDim2.new(0, 12, 0, 12)
  1317. Border_18.ZIndex = 120
  1318. Border_18.Image = "http://www.roblox.com/asset/?id=238725003"
  1319. Border_18.ImageRectOffset = Vector2.new(24, 0)
  1320. Border_18.ImageRectSize = Vector2.new(12, 12)
  1321.  
  1322. Border_19.Name = "Border"
  1323. Border_19.Parent = Borders_3
  1324. Border_19.BackgroundColor3 = Color3.new(1, 1, 1)
  1325. Border_19.BackgroundTransparency = 1
  1326. Border_19.BorderSizePixel = 0
  1327. Border_19.Position = UDim2.new(0, -12, 1, 0)
  1328. Border_19.Size = UDim2.new(0, 12, 0, 12)
  1329. Border_19.ZIndex = 120
  1330. Border_19.Image = "http://www.roblox.com/asset/?id=238725003"
  1331. Border_19.ImageRectOffset = Vector2.new(0, 24)
  1332. Border_19.ImageRectSize = Vector2.new(12, 12)
  1333.  
  1334. Border_20.Name = "Border"
  1335. Border_20.Parent = Borders_3
  1336. Border_20.BackgroundColor3 = Color3.new(1, 1, 1)
  1337. Border_20.BackgroundTransparency = 1
  1338. Border_20.BorderSizePixel = 0
  1339. Border_20.Position = UDim2.new(1, 0, 1, 0)
  1340. Border_20.Size = UDim2.new(0, 12, 0, 12)
  1341. Border_20.ZIndex = 120
  1342. Border_20.Image = "http://www.roblox.com/asset/?id=238725003"
  1343. Border_20.ImageRectOffset = Vector2.new(24, 24)
  1344. Border_20.ImageRectSize = Vector2.new(12, 12)
  1345.  
  1346. Border_21.Name = "Border"
  1347. Border_21.Parent = Borders_3
  1348. Border_21.BackgroundColor3 = Color3.new(1, 1, 1)
  1349. Border_21.BackgroundTransparency = 1
  1350. Border_21.BorderSizePixel = 0
  1351. Border_21.Position = UDim2.new(0, 0, 1, 0)
  1352. Border_21.Size = UDim2.new(1, 0, 0, 12)
  1353. Border_21.ZIndex = 120
  1354. Border_21.Image = "http://www.roblox.com/asset/?id=238725003"
  1355. Border_21.ImageRectOffset = Vector2.new(12, 24)
  1356. Border_21.ImageRectSize = Vector2.new(12, 12)
  1357.  
  1358. Border_22.Name = "Border"
  1359. Border_22.Parent = Borders_3
  1360. Border_22.BackgroundColor3 = Color3.new(1, 1, 1)
  1361. Border_22.BackgroundTransparency = 1
  1362. Border_22.BorderSizePixel = 0
  1363. Border_22.Position = UDim2.new(0, 0, 0, -12)
  1364. Border_22.Size = UDim2.new(1, 0, 0, 12)
  1365. Border_22.ZIndex = 120
  1366. Border_22.Image = "http://www.roblox.com/asset/?id=238725003"
  1367. Border_22.ImageRectOffset = Vector2.new(12, 0)
  1368. Border_22.ImageRectSize = Vector2.new(12, 12)
  1369.  
  1370. Border_23.Name = "Border"
  1371. Border_23.Parent = Borders_3
  1372. Border_23.BackgroundColor3 = Color3.new(1, 1, 1)
  1373. Border_23.BackgroundTransparency = 1
  1374. Border_23.BorderSizePixel = 0
  1375. Border_23.Position = UDim2.new(0, -12, 0, 0)
  1376. Border_23.Size = UDim2.new(0, 12, 1, 0)
  1377. Border_23.ZIndex = 120
  1378. Border_23.Image = "http://www.roblox.com/asset/?id=238725003"
  1379. Border_23.ImageRectOffset = Vector2.new(0, 12)
  1380. Border_23.ImageRectSize = Vector2.new(12, 12)
  1381.  
  1382. Border_24.Name = "Border"
  1383. Border_24.Parent = Borders_3
  1384. Border_24.BackgroundColor3 = Color3.new(1, 1, 1)
  1385. Border_24.BackgroundTransparency = 1
  1386. Border_24.BorderSizePixel = 0
  1387. Border_24.Position = UDim2.new(1, 0, 0, 0)
  1388. Border_24.Size = UDim2.new(0, 12, 1, 0)
  1389. Border_24.ZIndex = 120
  1390. Border_24.Image = "http://www.roblox.com/asset/?id=238725003"
  1391. Border_24.ImageRectOffset = Vector2.new(24, 12)
  1392. Border_24.ImageRectSize = Vector2.new(12, 12)
  1393.  
  1394. Vicon_2.Name = "Vicon"
  1395. Vicon_2.Parent = AuthFrame
  1396. Vicon_2.BackgroundColor3 = Color3.new(1, 1, 1)
  1397. Vicon_2.BackgroundTransparency = 1
  1398. Vicon_2.BorderSizePixel = 0
  1399. Vicon_2.Position = UDim2.new(0, 211, 0, 283)
  1400. Vicon_2.Size = UDim2.new(0, 70, 0, 70)
  1401. Vicon_2.ZIndex = 110
  1402. Vicon_2.Image = "rbxassetid://1677963821"
  1403.  
  1404. Title.Name = "Title"
  1405. Title.Parent = AuthFrame
  1406. Title.BackgroundColor3 = Color3.new(1, 1, 1)
  1407. Title.BackgroundTransparency = 1
  1408. Title.BorderSizePixel = 0
  1409. Title.Position = UDim2.new(0.156661794, 0, 0.334905654, 0)
  1410. Title.Size = UDim2.new(0.61200583, 0, 0.0628930852, 0)
  1411. Title.ZIndex = 120
  1412. Title.Font = Enum.Font.Highway
  1413. Title.Text = "This GUI Uses A Whitelist, Please Enter Your Discord Tag."
  1414. Title.TextColor3 = Color3.new(1, 1, 1)
  1415. Title.TextScaled = true
  1416. Title.TextSize = 14
  1417. Title.TextWrapped = true
  1418.  
  1419. ProceedButton.Name = "ProceedButton"
  1420. ProceedButton.Parent = AuthFrame
  1421. ProceedButton.BackgroundColor3 = Color3.new(1, 1, 1)
  1422. ProceedButton.Position = UDim2.new(0.434846252, 0, 0.606918216, 0)
  1423. ProceedButton.Size = UDim2.new(0, 143, 0, 32)
  1424. ProceedButton.ZIndex = 120
  1425. ProceedButton.Font = Enum.Font.Highway
  1426. ProceedButton.Text = "Proceed"
  1427. ProceedButton.TextColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  1428. ProceedButton.TextScaled = true
  1429. ProceedButton.TextSize = 14
  1430. ProceedButton.TextWrapped = true
  1431.  
  1432. Borders_4.Name = "Borders"
  1433. Borders_4.Parent = ProceedButton
  1434. Borders_4.BackgroundColor3 = Color3.new(1, 1, 1)
  1435. Borders_4.BackgroundTransparency = 1
  1436. Borders_4.BorderSizePixel = 0
  1437. Borders_4.Size = UDim2.new(1, 0, 1, 0)
  1438. Borders_4.ZIndex = 120
  1439.  
  1440. Border_25.Name = "Border"
  1441. Border_25.Parent = Borders_4
  1442. Border_25.BackgroundColor3 = Color3.new(1, 1, 1)
  1443. Border_25.BackgroundTransparency = 1
  1444. Border_25.BorderSizePixel = 0
  1445. Border_25.Position = UDim2.new(0, -12, 0, -12)
  1446. Border_25.Size = UDim2.new(0, 12, 0, 12)
  1447. Border_25.ZIndex = 120
  1448. Border_25.Image = "http://www.roblox.com/asset/?id=238725003"
  1449. Border_25.ImageRectSize = Vector2.new(12, 12)
  1450.  
  1451. Border_26.Name = "Border"
  1452. Border_26.Parent = Borders_4
  1453. Border_26.BackgroundColor3 = Color3.new(1, 1, 1)
  1454. Border_26.BackgroundTransparency = 1
  1455. Border_26.BorderSizePixel = 0
  1456. Border_26.Position = UDim2.new(1, 0, 0, -12)
  1457. Border_26.Size = UDim2.new(0, 12, 0, 12)
  1458. Border_26.ZIndex = 120
  1459. Border_26.Image = "http://www.roblox.com/asset/?id=238725003"
  1460. Border_26.ImageRectOffset = Vector2.new(24, 0)
  1461. Border_26.ImageRectSize = Vector2.new(12, 12)
  1462.  
  1463. Border_27.Name = "Border"
  1464. Border_27.Parent = Borders_4
  1465. Border_27.BackgroundColor3 = Color3.new(1, 1, 1)
  1466. Border_27.BackgroundTransparency = 1
  1467. Border_27.BorderSizePixel = 0
  1468. Border_27.Position = UDim2.new(0, -12, 1, 0)
  1469. Border_27.Size = UDim2.new(0, 12, 0, 12)
  1470. Border_27.ZIndex = 120
  1471. Border_27.Image = "http://www.roblox.com/asset/?id=238725003"
  1472. Border_27.ImageRectOffset = Vector2.new(0, 24)
  1473. Border_27.ImageRectSize = Vector2.new(12, 12)
  1474.  
  1475. Border_28.Name = "Border"
  1476. Border_28.Parent = Borders_4
  1477. Border_28.BackgroundColor3 = Color3.new(1, 1, 1)
  1478. Border_28.BackgroundTransparency = 1
  1479. Border_28.BorderSizePixel = 0
  1480. Border_28.Position = UDim2.new(1, 0, 1, 0)
  1481. Border_28.Size = UDim2.new(0, 12, 0, 12)
  1482. Border_28.ZIndex = 120
  1483. Border_28.Image = "http://www.roblox.com/asset/?id=238725003"
  1484. Border_28.ImageRectOffset = Vector2.new(24, 24)
  1485. Border_28.ImageRectSize = Vector2.new(12, 12)
  1486.  
  1487. Border_29.Name = "Border"
  1488. Border_29.Parent = Borders_4
  1489. Border_29.BackgroundColor3 = Color3.new(1, 1, 1)
  1490. Border_29.BackgroundTransparency = 1
  1491. Border_29.BorderSizePixel = 0
  1492. Border_29.Position = UDim2.new(0, 0, 1, 0)
  1493. Border_29.Size = UDim2.new(1, 0, 0, 12)
  1494. Border_29.ZIndex = 120
  1495. Border_29.Image = "http://www.roblox.com/asset/?id=238725003"
  1496. Border_29.ImageRectOffset = Vector2.new(12, 24)
  1497. Border_29.ImageRectSize = Vector2.new(12, 12)
  1498.  
  1499. Border_30.Name = "Border"
  1500. Border_30.Parent = Borders_4
  1501. Border_30.BackgroundColor3 = Color3.new(1, 1, 1)
  1502. Border_30.BackgroundTransparency = 1
  1503. Border_30.BorderSizePixel = 0
  1504. Border_30.Position = UDim2.new(0, 0, 0, -12)
  1505. Border_30.Size = UDim2.new(1, 0, 0, 12)
  1506. Border_30.ZIndex = 120
  1507. Border_30.Image = "http://www.roblox.com/asset/?id=238725003"
  1508. Border_30.ImageRectOffset = Vector2.new(12, 0)
  1509. Border_30.ImageRectSize = Vector2.new(12, 12)
  1510.  
  1511. Border_31.Name = "Border"
  1512. Border_31.Parent = Borders_4
  1513. Border_31.BackgroundColor3 = Color3.new(1, 1, 1)
  1514. Border_31.BackgroundTransparency = 1
  1515. Border_31.BorderSizePixel = 0
  1516. Border_31.Position = UDim2.new(0, -12, 0, 0)
  1517. Border_31.Size = UDim2.new(0, 12, 1, 0)
  1518. Border_31.ZIndex = 120
  1519. Border_31.Image = "http://www.roblox.com/asset/?id=238725003"
  1520. Border_31.ImageRectOffset = Vector2.new(0, 12)
  1521. Border_31.ImageRectSize = Vector2.new(12, 12)
  1522.  
  1523. Border_32.Name = "Border"
  1524. Border_32.Parent = Borders_4
  1525. Border_32.BackgroundColor3 = Color3.new(1, 1, 1)
  1526. Border_32.BackgroundTransparency = 1
  1527. Border_32.BorderSizePixel = 0
  1528. Border_32.Position = UDim2.new(1, 0, 0, 0)
  1529. Border_32.Size = UDim2.new(0, 12, 1, 0)
  1530. Border_32.ZIndex = 120
  1531. Border_32.Image = "http://www.roblox.com/asset/?id=238725003"
  1532. Border_32.ImageRectOffset = Vector2.new(24, 12)
  1533. Border_32.ImageRectSize = Vector2.new(12, 12)
  1534.  
  1535. CancelButton.Name = "CancelButton"
  1536. CancelButton.Parent = AuthFrame
  1537. CancelButton.BackgroundColor3 = Color3.new(1, 1, 1)
  1538. CancelButton.Position = UDim2.new(0.65519762, 0, 0.606918216, 0)
  1539. CancelButton.Size = UDim2.new(0, 143, 0, 32)
  1540. CancelButton.ZIndex = 120
  1541. CancelButton.Font = Enum.Font.Highway
  1542. CancelButton.Text = "Cancel"
  1543. CancelButton.TextColor3 = Color3.new(1, 0.333333, 0)
  1544. CancelButton.TextScaled = true
  1545. CancelButton.TextSize = 14
  1546. CancelButton.TextWrapped = true
  1547.  
  1548. Borders_5.Name = "Borders"
  1549. Borders_5.Parent = CancelButton
  1550. Borders_5.BackgroundColor3 = Color3.new(1, 1, 1)
  1551. Borders_5.BackgroundTransparency = 1
  1552. Borders_5.BorderSizePixel = 0
  1553. Borders_5.Size = UDim2.new(1, 0, 1, 0)
  1554. Borders_5.ZIndex = 120
  1555.  
  1556. Border_33.Name = "Border"
  1557. Border_33.Parent = Borders_5
  1558. Border_33.BackgroundColor3 = Color3.new(1, 1, 1)
  1559. Border_33.BackgroundTransparency = 1
  1560. Border_33.BorderSizePixel = 0
  1561. Border_33.Position = UDim2.new(0, -12, 0, -12)
  1562. Border_33.Size = UDim2.new(0, 12, 0, 12)
  1563. Border_33.ZIndex = 120
  1564. Border_33.Image = "http://www.roblox.com/asset/?id=238725003"
  1565. Border_33.ImageRectSize = Vector2.new(12, 12)
  1566.  
  1567. Border_34.Name = "Border"
  1568. Border_34.Parent = Borders_5
  1569. Border_34.BackgroundColor3 = Color3.new(1, 1, 1)
  1570. Border_34.BackgroundTransparency = 1
  1571. Border_34.BorderSizePixel = 0
  1572. Border_34.Position = UDim2.new(1, 0, 0, -12)
  1573. Border_34.Size = UDim2.new(0, 12, 0, 12)
  1574. Border_34.ZIndex = 120
  1575. Border_34.Image = "http://www.roblox.com/asset/?id=238725003"
  1576. Border_34.ImageRectOffset = Vector2.new(24, 0)
  1577. Border_34.ImageRectSize = Vector2.new(12, 12)
  1578.  
  1579. Border_35.Name = "Border"
  1580. Border_35.Parent = Borders_5
  1581. Border_35.BackgroundColor3 = Color3.new(1, 1, 1)
  1582. Border_35.BackgroundTransparency = 1
  1583. Border_35.BorderSizePixel = 0
  1584. Border_35.Position = UDim2.new(0, -12, 1, 0)
  1585. Border_35.Size = UDim2.new(0, 12, 0, 12)
  1586. Border_35.ZIndex = 120
  1587. Border_35.Image = "http://www.roblox.com/asset/?id=238725003"
  1588. Border_35.ImageRectOffset = Vector2.new(0, 24)
  1589. Border_35.ImageRectSize = Vector2.new(12, 12)
  1590.  
  1591. Border_36.Name = "Border"
  1592. Border_36.Parent = Borders_5
  1593. Border_36.BackgroundColor3 = Color3.new(1, 1, 1)
  1594. Border_36.BackgroundTransparency = 1
  1595. Border_36.BorderSizePixel = 0
  1596. Border_36.Position = UDim2.new(1, 0, 1, 0)
  1597. Border_36.Size = UDim2.new(0, 12, 0, 12)
  1598. Border_36.ZIndex = 120
  1599. Border_36.Image = "http://www.roblox.com/asset/?id=238725003"
  1600. Border_36.ImageRectOffset = Vector2.new(24, 24)
  1601. Border_36.ImageRectSize = Vector2.new(12, 12)
  1602.  
  1603. Border_37.Name = "Border"
  1604. Border_37.Parent = Borders_5
  1605. Border_37.BackgroundColor3 = Color3.new(1, 1, 1)
  1606. Border_37.BackgroundTransparency = 1
  1607. Border_37.BorderSizePixel = 0
  1608. Border_37.Position = UDim2.new(0, 0, 1, 0)
  1609. Border_37.Size = UDim2.new(1, 0, 0, 12)
  1610. Border_37.ZIndex = 120
  1611. Border_37.Image = "http://www.roblox.com/asset/?id=238725003"
  1612. Border_37.ImageRectOffset = Vector2.new(12, 24)
  1613. Border_37.ImageRectSize = Vector2.new(12, 12)
  1614.  
  1615. Border_38.Name = "Border"
  1616. Border_38.Parent = Borders_5
  1617. Border_38.BackgroundColor3 = Color3.new(1, 1, 1)
  1618. Border_38.BackgroundTransparency = 1
  1619. Border_38.BorderSizePixel = 0
  1620. Border_38.Position = UDim2.new(0, 0, 0, -12)
  1621. Border_38.Size = UDim2.new(1, 0, 0, 12)
  1622. Border_38.ZIndex = 120
  1623. Border_38.Image = "http://www.roblox.com/asset/?id=238725003"
  1624. Border_38.ImageRectOffset = Vector2.new(12, 0)
  1625. Border_38.ImageRectSize = Vector2.new(12, 12)
  1626.  
  1627. Border_39.Name = "Border"
  1628. Border_39.Parent = Borders_5
  1629. Border_39.BackgroundColor3 = Color3.new(1, 1, 1)
  1630. Border_39.BackgroundTransparency = 1
  1631. Border_39.BorderSizePixel = 0
  1632. Border_39.Position = UDim2.new(0, -12, 0, 0)
  1633. Border_39.Size = UDim2.new(0, 12, 1, 0)
  1634. Border_39.ZIndex = 120
  1635. Border_39.Image = "http://www.roblox.com/asset/?id=238725003"
  1636. Border_39.ImageRectOffset = Vector2.new(0, 12)
  1637. Border_39.ImageRectSize = Vector2.new(12, 12)
  1638.  
  1639. Border_40.Name = "Border"
  1640. Border_40.Parent = Borders_5
  1641. Border_40.BackgroundColor3 = Color3.new(1, 1, 1)
  1642. Border_40.BackgroundTransparency = 1
  1643. Border_40.BorderSizePixel = 0
  1644. Border_40.Position = UDim2.new(1, 0, 0, 0)
  1645. Border_40.Size = UDim2.new(0, 12, 1, 0)
  1646. Border_40.ZIndex = 120
  1647. Border_40.Image = "http://www.roblox.com/asset/?id=238725003"
  1648. Border_40.ImageRectOffset = Vector2.new(24, 12)
  1649. Border_40.ImageRectSize = Vector2.new(12, 12)
  1650.  
  1651. HTBBtn.Name = "HTBBtn"
  1652. HTBBtn.Parent = AuthFrame
  1653. HTBBtn.BackgroundColor3 = Color3.new(1, 1, 1)
  1654. HTBBtn.Position = UDim2.new(0.214494824, 0, 0.606918216, 0)
  1655. HTBBtn.Size = UDim2.new(0, 143, 0, 32)
  1656. HTBBtn.ZIndex = 120
  1657. HTBBtn.Font = Enum.Font.Highway
  1658. HTBBtn.Text = "How To Buy"
  1659. HTBBtn.TextColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  1660. HTBBtn.TextScaled = true
  1661. HTBBtn.TextSize = 14
  1662. HTBBtn.TextWrapped = true
  1663.  
  1664. Borders_6.Name = "Borders"
  1665. Borders_6.Parent = HTBBtn
  1666. Borders_6.BackgroundColor3 = Color3.new(1, 1, 1)
  1667. Borders_6.BackgroundTransparency = 1
  1668. Borders_6.BorderSizePixel = 0
  1669. Borders_6.Size = UDim2.new(1, 0, 1, 0)
  1670. Borders_6.ZIndex = 120
  1671.  
  1672. Border_41.Name = "Border"
  1673. Border_41.Parent = Borders_6
  1674. Border_41.BackgroundColor3 = Color3.new(1, 1, 1)
  1675. Border_41.BackgroundTransparency = 1
  1676. Border_41.BorderSizePixel = 0
  1677. Border_41.Position = UDim2.new(0, -12, 0, -12)
  1678. Border_41.Size = UDim2.new(0, 12, 0, 12)
  1679. Border_41.ZIndex = 120
  1680. Border_41.Image = "http://www.roblox.com/asset/?id=238725003"
  1681. Border_41.ImageRectSize = Vector2.new(12, 12)
  1682.  
  1683. Border_42.Name = "Border"
  1684. Border_42.Parent = Borders_6
  1685. Border_42.BackgroundColor3 = Color3.new(1, 1, 1)
  1686. Border_42.BackgroundTransparency = 1
  1687. Border_42.BorderSizePixel = 0
  1688. Border_42.Position = UDim2.new(1, 0, 0, -12)
  1689. Border_42.Size = UDim2.new(0, 12, 0, 12)
  1690. Border_42.ZIndex = 120
  1691. Border_42.Image = "http://www.roblox.com/asset/?id=238725003"
  1692. Border_42.ImageRectOffset = Vector2.new(24, 0)
  1693. Border_42.ImageRectSize = Vector2.new(12, 12)
  1694.  
  1695. Border_43.Name = "Border"
  1696. Border_43.Parent = Borders_6
  1697. Border_43.BackgroundColor3 = Color3.new(1, 1, 1)
  1698. Border_43.BackgroundTransparency = 1
  1699. Border_43.BorderSizePixel = 0
  1700. Border_43.Position = UDim2.new(0, -12, 1, 0)
  1701. Border_43.Size = UDim2.new(0, 12, 0, 12)
  1702. Border_43.ZIndex = 120
  1703. Border_43.Image = "http://www.roblox.com/asset/?id=238725003"
  1704. Border_43.ImageRectOffset = Vector2.new(0, 24)
  1705. Border_43.ImageRectSize = Vector2.new(12, 12)
  1706.  
  1707. Border_44.Name = "Border"
  1708. Border_44.Parent = Borders_6
  1709. Border_44.BackgroundColor3 = Color3.new(1, 1, 1)
  1710. Border_44.BackgroundTransparency = 1
  1711. Border_44.BorderSizePixel = 0
  1712. Border_44.Position = UDim2.new(1, 0, 1, 0)
  1713. Border_44.Size = UDim2.new(0, 12, 0, 12)
  1714. Border_44.ZIndex = 120
  1715. Border_44.Image = "http://www.roblox.com/asset/?id=238725003"
  1716. Border_44.ImageRectOffset = Vector2.new(24, 24)
  1717. Border_44.ImageRectSize = Vector2.new(12, 12)
  1718.  
  1719. Border_45.Name = "Border"
  1720. Border_45.Parent = Borders_6
  1721. Border_45.BackgroundColor3 = Color3.new(1, 1, 1)
  1722. Border_45.BackgroundTransparency = 1
  1723. Border_45.BorderSizePixel = 0
  1724. Border_45.Position = UDim2.new(0, 0, 1, 0)
  1725. Border_45.Size = UDim2.new(1, 0, 0, 12)
  1726. Border_45.ZIndex = 120
  1727. Border_45.Image = "http://www.roblox.com/asset/?id=238725003"
  1728. Border_45.ImageRectOffset = Vector2.new(12, 24)
  1729. Border_45.ImageRectSize = Vector2.new(12, 12)
  1730.  
  1731. Border_46.Name = "Border"
  1732. Border_46.Parent = Borders_6
  1733. Border_46.BackgroundColor3 = Color3.new(1, 1, 1)
  1734. Border_46.BackgroundTransparency = 1
  1735. Border_46.BorderSizePixel = 0
  1736. Border_46.Position = UDim2.new(0, 0, 0, -12)
  1737. Border_46.Size = UDim2.new(1, 0, 0, 12)
  1738. Border_46.ZIndex = 120
  1739. Border_46.Image = "http://www.roblox.com/asset/?id=238725003"
  1740. Border_46.ImageRectOffset = Vector2.new(12, 0)
  1741. Border_46.ImageRectSize = Vector2.new(12, 12)
  1742.  
  1743. Border_47.Name = "Border"
  1744. Border_47.Parent = Borders_6
  1745. Border_47.BackgroundColor3 = Color3.new(1, 1, 1)
  1746. Border_47.BackgroundTransparency = 1
  1747. Border_47.BorderSizePixel = 0
  1748. Border_47.Position = UDim2.new(0, -12, 0, 0)
  1749. Border_47.Size = UDim2.new(0, 12, 1, 0)
  1750. Border_47.ZIndex = 120
  1751. Border_47.Image = "http://www.roblox.com/asset/?id=238725003"
  1752. Border_47.ImageRectOffset = Vector2.new(0, 12)
  1753. Border_47.ImageRectSize = Vector2.new(12, 12)
  1754.  
  1755. Border_48.Name = "Border"
  1756. Border_48.Parent = Borders_6
  1757. Border_48.BackgroundColor3 = Color3.new(1, 1, 1)
  1758. Border_48.BackgroundTransparency = 1
  1759. Border_48.BorderSizePixel = 0
  1760. Border_48.Position = UDim2.new(1, 0, 0, 0)
  1761. Border_48.Size = UDim2.new(0, 12, 1, 0)
  1762. Border_48.ZIndex = 120
  1763. Border_48.Image = "http://www.roblox.com/asset/?id=238725003"
  1764. Border_48.ImageRectOffset = Vector2.new(24, 12)
  1765. Border_48.ImageRectSize = Vector2.new(12, 12)
  1766.  
  1767. QuitButton.Name = "QuitButton"
  1768. QuitButton.Parent = AuthFrame
  1769. QuitButton.BackgroundColor3 = Color3.new(1, 1, 1)
  1770. QuitButton.BorderSizePixel = 0
  1771. QuitButton.Position = UDim2.new(0.985358715, 0, 0, 0)
  1772. QuitButton.Size = UDim2.new(0, 20, 0, 20)
  1773. QuitButton.ZIndex = 120
  1774. QuitButton.Image = "rbxassetid://1828839274"
  1775.  
  1776. Borders_7.Name = "Borders"
  1777. Borders_7.Parent = QuitButton
  1778. Borders_7.BackgroundColor3 = Color3.new(1, 1, 1)
  1779. Borders_7.BackgroundTransparency = 1
  1780. Borders_7.BorderSizePixel = 0
  1781. Borders_7.Size = UDim2.new(1, 0, 1, 0)
  1782. Borders_7.ZIndex = 120
  1783.  
  1784. Border_49.Name = "Border"
  1785. Border_49.Parent = Borders_7
  1786. Border_49.BackgroundColor3 = Color3.new(1, 1, 1)
  1787. Border_49.BackgroundTransparency = 1
  1788. Border_49.BorderSizePixel = 0
  1789. Border_49.Position = UDim2.new(0, -12, 0, -12)
  1790. Border_49.Size = UDim2.new(0, 12, 0, 12)
  1791. Border_49.ZIndex = 120
  1792. Border_49.Image = "http://www.roblox.com/asset/?id=238725003"
  1793. Border_49.ImageRectSize = Vector2.new(12, 12)
  1794.  
  1795. Border_50.Name = "Border"
  1796. Border_50.Parent = Borders_7
  1797. Border_50.BackgroundColor3 = Color3.new(1, 1, 1)
  1798. Border_50.BackgroundTransparency = 1
  1799. Border_50.BorderSizePixel = 0
  1800. Border_50.Position = UDim2.new(1, 0, 0, -12)
  1801. Border_50.Size = UDim2.new(0, 12, 0, 12)
  1802. Border_50.ZIndex = 120
  1803. Border_50.Image = "http://www.roblox.com/asset/?id=238725003"
  1804. Border_50.ImageRectOffset = Vector2.new(24, 0)
  1805. Border_50.ImageRectSize = Vector2.new(12, 12)
  1806.  
  1807. Border_51.Name = "Border"
  1808. Border_51.Parent = Borders_7
  1809. Border_51.BackgroundColor3 = Color3.new(1, 1, 1)
  1810. Border_51.BackgroundTransparency = 1
  1811. Border_51.BorderSizePixel = 0
  1812. Border_51.Position = UDim2.new(0, -12, 1, 0)
  1813. Border_51.Size = UDim2.new(0, 12, 0, 12)
  1814. Border_51.ZIndex = 120
  1815. Border_51.Image = "http://www.roblox.com/asset/?id=238725003"
  1816. Border_51.ImageRectOffset = Vector2.new(0, 24)
  1817. Border_51.ImageRectSize = Vector2.new(12, 12)
  1818.  
  1819. Border_52.Name = "Border"
  1820. Border_52.Parent = Borders_7
  1821. Border_52.BackgroundColor3 = Color3.new(1, 1, 1)
  1822. Border_52.BackgroundTransparency = 1
  1823. Border_52.BorderSizePixel = 0
  1824. Border_52.Position = UDim2.new(1, 0, 1, 0)
  1825. Border_52.Size = UDim2.new(0, 12, 0, 12)
  1826. Border_52.ZIndex = 120
  1827. Border_52.Image = "http://www.roblox.com/asset/?id=238725003"
  1828. Border_52.ImageRectOffset = Vector2.new(24, 24)
  1829. Border_52.ImageRectSize = Vector2.new(12, 12)
  1830.  
  1831. Border_53.Name = "Border"
  1832. Border_53.Parent = Borders_7
  1833. Border_53.BackgroundColor3 = Color3.new(1, 1, 1)
  1834. Border_53.BackgroundTransparency = 1
  1835. Border_53.BorderSizePixel = 0
  1836. Border_53.Position = UDim2.new(0, 0, 1, 0)
  1837. Border_53.Size = UDim2.new(1, 0, 0, 12)
  1838. Border_53.ZIndex = 120
  1839. Border_53.Image = "http://www.roblox.com/asset/?id=238725003"
  1840. Border_53.ImageRectOffset = Vector2.new(12, 24)
  1841. Border_53.ImageRectSize = Vector2.new(12, 12)
  1842.  
  1843. Border_54.Name = "Border"
  1844. Border_54.Parent = Borders_7
  1845. Border_54.BackgroundColor3 = Color3.new(1, 1, 1)
  1846. Border_54.BackgroundTransparency = 1
  1847. Border_54.BorderSizePixel = 0
  1848. Border_54.Position = UDim2.new(0, 0, 0, -12)
  1849. Border_54.Size = UDim2.new(1, 0, 0, 12)
  1850. Border_54.ZIndex = 120
  1851. Border_54.Image = "http://www.roblox.com/asset/?id=238725003"
  1852. Border_54.ImageRectOffset = Vector2.new(12, 0)
  1853. Border_54.ImageRectSize = Vector2.new(12, 12)
  1854.  
  1855. Border_55.Name = "Border"
  1856. Border_55.Parent = Borders_7
  1857. Border_55.BackgroundColor3 = Color3.new(1, 1, 1)
  1858. Border_55.BackgroundTransparency = 1
  1859. Border_55.BorderSizePixel = 0
  1860. Border_55.Position = UDim2.new(0, -12, 0, 0)
  1861. Border_55.Size = UDim2.new(0, 12, 1, 0)
  1862. Border_55.ZIndex = 120
  1863. Border_55.Image = "http://www.roblox.com/asset/?id=238725003"
  1864. Border_55.ImageRectOffset = Vector2.new(0, 12)
  1865. Border_55.ImageRectSize = Vector2.new(12, 12)
  1866.  
  1867. Border_56.Name = "Border"
  1868. Border_56.Parent = Borders_7
  1869. Border_56.BackgroundColor3 = Color3.new(1, 1, 1)
  1870. Border_56.BackgroundTransparency = 1
  1871. Border_56.BorderSizePixel = 0
  1872. Border_56.Position = UDim2.new(1, 0, 0, 0)
  1873. Border_56.Size = UDim2.new(0, 12, 1, 0)
  1874. Border_56.ZIndex = 120
  1875. Border_56.Image = "http://www.roblox.com/asset/?id=238725003"
  1876. Border_56.ImageRectOffset = Vector2.new(24, 12)
  1877. Border_56.ImageRectSize = Vector2.new(12, 12)
  1878.  
  1879. RefreshButton.Name = "RefreshButton"
  1880. RefreshButton.Parent = AuthFrame
  1881. RefreshButton.BackgroundColor3 = Color3.new(1, 1, 1)
  1882. RefreshButton.BorderSizePixel = 0
  1883. RefreshButton.Position = UDim2.new(0.789165437, 0, 0.463836491, 0)
  1884. RefreshButton.Size = UDim2.new(0, 46, 0, 46)
  1885. RefreshButton.ZIndex = 120
  1886. RefreshButton.Image = "rbxassetid://1828839620"
  1887.  
  1888. Borders_8.Name = "Borders"
  1889. Borders_8.Parent = RefreshButton
  1890. Borders_8.BackgroundColor3 = Color3.new(1, 1, 1)
  1891. Borders_8.BackgroundTransparency = 1
  1892. Borders_8.BorderSizePixel = 0
  1893. Borders_8.Size = UDim2.new(1, 0, 1, 0)
  1894. Borders_8.ZIndex = 120
  1895.  
  1896. Border_57.Name = "Border"
  1897. Border_57.Parent = Borders_8
  1898. Border_57.BackgroundColor3 = Color3.new(1, 1, 1)
  1899. Border_57.BackgroundTransparency = 1
  1900. Border_57.BorderSizePixel = 0
  1901. Border_57.Position = UDim2.new(0, -12, 0, -12)
  1902. Border_57.Size = UDim2.new(0, 12, 0, 12)
  1903. Border_57.ZIndex = 120
  1904. Border_57.Image = "http://www.roblox.com/asset/?id=238725003"
  1905. Border_57.ImageRectSize = Vector2.new(12, 12)
  1906.  
  1907. Border_58.Name = "Border"
  1908. Border_58.Parent = Borders_8
  1909. Border_58.BackgroundColor3 = Color3.new(1, 1, 1)
  1910. Border_58.BackgroundTransparency = 1
  1911. Border_58.BorderSizePixel = 0
  1912. Border_58.Position = UDim2.new(1, 0, 0, -12)
  1913. Border_58.Size = UDim2.new(0, 12, 0, 12)
  1914. Border_58.ZIndex = 120
  1915. Border_58.Image = "http://www.roblox.com/asset/?id=238725003"
  1916. Border_58.ImageRectOffset = Vector2.new(24, 0)
  1917. Border_58.ImageRectSize = Vector2.new(12, 12)
  1918.  
  1919. Border_59.Name = "Border"
  1920. Border_59.Parent = Borders_8
  1921. Border_59.BackgroundColor3 = Color3.new(1, 1, 1)
  1922. Border_59.BackgroundTransparency = 1
  1923. Border_59.BorderSizePixel = 0
  1924. Border_59.Position = UDim2.new(0, -12, 1, 0)
  1925. Border_59.Size = UDim2.new(0, 12, 0, 12)
  1926. Border_59.ZIndex = 120
  1927. Border_59.Image = "http://www.roblox.com/asset/?id=238725003"
  1928. Border_59.ImageRectOffset = Vector2.new(0, 24)
  1929. Border_59.ImageRectSize = Vector2.new(12, 12)
  1930.  
  1931. Border_60.Name = "Border"
  1932. Border_60.Parent = Borders_8
  1933. Border_60.BackgroundColor3 = Color3.new(1, 1, 1)
  1934. Border_60.BackgroundTransparency = 1
  1935. Border_60.BorderSizePixel = 0
  1936. Border_60.Position = UDim2.new(1, 0, 1, 0)
  1937. Border_60.Size = UDim2.new(0, 12, 0, 12)
  1938. Border_60.ZIndex = 120
  1939. Border_60.Image = "http://www.roblox.com/asset/?id=238725003"
  1940. Border_60.ImageRectOffset = Vector2.new(24, 24)
  1941. Border_60.ImageRectSize = Vector2.new(12, 12)
  1942.  
  1943. Border_61.Name = "Border"
  1944. Border_61.Parent = Borders_8
  1945. Border_61.BackgroundColor3 = Color3.new(1, 1, 1)
  1946. Border_61.BackgroundTransparency = 1
  1947. Border_61.BorderSizePixel = 0
  1948. Border_61.Position = UDim2.new(0, 0, 1, 0)
  1949. Border_61.Size = UDim2.new(1, 0, 0, 12)
  1950. Border_61.ZIndex = 120
  1951. Border_61.Image = "http://www.roblox.com/asset/?id=238725003"
  1952. Border_61.ImageRectOffset = Vector2.new(12, 24)
  1953. Border_61.ImageRectSize = Vector2.new(12, 12)
  1954.  
  1955. Border_62.Name = "Border"
  1956. Border_62.Parent = Borders_8
  1957. Border_62.BackgroundColor3 = Color3.new(1, 1, 1)
  1958. Border_62.BackgroundTransparency = 1
  1959. Border_62.BorderSizePixel = 0
  1960. Border_62.Position = UDim2.new(0, 0, 0, -12)
  1961. Border_62.Size = UDim2.new(1, 0, 0, 12)
  1962. Border_62.ZIndex = 120
  1963. Border_62.Image = "http://www.roblox.com/asset/?id=238725003"
  1964. Border_62.ImageRectOffset = Vector2.new(12, 0)
  1965. Border_62.ImageRectSize = Vector2.new(12, 12)
  1966.  
  1967. Border_63.Name = "Border"
  1968. Border_63.Parent = Borders_8
  1969. Border_63.BackgroundColor3 = Color3.new(1, 1, 1)
  1970. Border_63.BackgroundTransparency = 1
  1971. Border_63.BorderSizePixel = 0
  1972. Border_63.Position = UDim2.new(0, -12, 0, 0)
  1973. Border_63.Size = UDim2.new(0, 12, 1, 0)
  1974. Border_63.ZIndex = 120
  1975. Border_63.Image = "http://www.roblox.com/asset/?id=238725003"
  1976. Border_63.ImageRectOffset = Vector2.new(0, 12)
  1977. Border_63.ImageRectSize = Vector2.new(12, 12)
  1978.  
  1979. Border_64.Name = "Border"
  1980. Border_64.Parent = Borders_8
  1981. Border_64.BackgroundColor3 = Color3.new(1, 1, 1)
  1982. Border_64.BackgroundTransparency = 1
  1983. Border_64.BorderSizePixel = 0
  1984. Border_64.Position = UDim2.new(1, 0, 0, 0)
  1985. Border_64.Size = UDim2.new(0, 12, 1, 0)
  1986. Border_64.ZIndex = 120
  1987. Border_64.Image = "http://www.roblox.com/asset/?id=238725003"
  1988. Border_64.ImageRectOffset = Vector2.new(24, 12)
  1989. Border_64.ImageRectSize = Vector2.new(12, 12)
  1990.  
  1991. MainButton.Name = "MainButton"
  1992. MainButton.Parent = Survivor
  1993. MainButton.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  1994. MainButton.BorderSizePixel = 0
  1995. MainButton.Position = UDim2.new(0.956076145, 0, 0.905660391, 0)
  1996. MainButton.Size = UDim2.new(0, 46, 0, 46)
  1997. MainButton.Visible = false
  1998. MainButton.ZIndex = 120
  1999. MainButton.Image = "rbxassetid://1677963821"
  2000.  
  2001. Borders_9.Name = "Borders"
  2002. Borders_9.Parent = MainButton
  2003. Borders_9.BackgroundColor3 = Color3.new(1, 1, 1)
  2004. Borders_9.BackgroundTransparency = 1
  2005. Borders_9.BorderSizePixel = 0
  2006. Borders_9.Size = UDim2.new(1, 0, 1, 0)
  2007. Borders_9.ZIndex = 120
  2008.  
  2009. Border_65.Name = "Border"
  2010. Border_65.Parent = Borders_9
  2011. Border_65.BackgroundColor3 = Color3.new(1, 1, 1)
  2012. Border_65.BackgroundTransparency = 1
  2013. Border_65.BorderSizePixel = 0
  2014. Border_65.Position = UDim2.new(0, -12, 0, -12)
  2015. Border_65.Size = UDim2.new(0, 12, 0, 12)
  2016. Border_65.ZIndex = 120
  2017. Border_65.Image = "http://www.roblox.com/asset/?id=238725003"
  2018. Border_65.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  2019. Border_65.ImageRectSize = Vector2.new(12, 12)
  2020.  
  2021. Border_66.Name = "Border"
  2022. Border_66.Parent = Borders_9
  2023. Border_66.BackgroundColor3 = Color3.new(1, 1, 1)
  2024. Border_66.BackgroundTransparency = 1
  2025. Border_66.BorderSizePixel = 0
  2026. Border_66.Position = UDim2.new(1, 0, 0, -12)
  2027. Border_66.Size = UDim2.new(0, 12, 0, 12)
  2028. Border_66.ZIndex = 120
  2029. Border_66.Image = "http://www.roblox.com/asset/?id=238725003"
  2030. Border_66.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  2031. Border_66.ImageRectOffset = Vector2.new(24, 0)
  2032. Border_66.ImageRectSize = Vector2.new(12, 12)
  2033.  
  2034. Border_67.Name = "Border"
  2035. Border_67.Parent = Borders_9
  2036. Border_67.BackgroundColor3 = Color3.new(1, 1, 1)
  2037. Border_67.BackgroundTransparency = 1
  2038. Border_67.BorderSizePixel = 0
  2039. Border_67.Position = UDim2.new(0, -12, 1, 0)
  2040. Border_67.Size = UDim2.new(0, 12, 0, 12)
  2041. Border_67.ZIndex = 120
  2042. Border_67.Image = "http://www.roblox.com/asset/?id=238725003"
  2043. Border_67.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  2044. Border_67.ImageRectOffset = Vector2.new(0, 24)
  2045. Border_67.ImageRectSize = Vector2.new(12, 12)
  2046.  
  2047. Border_68.Name = "Border"
  2048. Border_68.Parent = Borders_9
  2049. Border_68.BackgroundColor3 = Color3.new(1, 1, 1)
  2050. Border_68.BackgroundTransparency = 1
  2051. Border_68.BorderSizePixel = 0
  2052. Border_68.Position = UDim2.new(1, 0, 1, 0)
  2053. Border_68.Size = UDim2.new(0, 12, 0, 12)
  2054. Border_68.ZIndex = 120
  2055. Border_68.Image = "http://www.roblox.com/asset/?id=238725003"
  2056. Border_68.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  2057. Border_68.ImageRectOffset = Vector2.new(24, 24)
  2058. Border_68.ImageRectSize = Vector2.new(12, 12)
  2059.  
  2060. Border_69.Name = "Border"
  2061. Border_69.Parent = Borders_9
  2062. Border_69.BackgroundColor3 = Color3.new(1, 1, 1)
  2063. Border_69.BackgroundTransparency = 1
  2064. Border_69.BorderSizePixel = 0
  2065. Border_69.Position = UDim2.new(0, 0, 1, 0)
  2066. Border_69.Size = UDim2.new(1, 0, 0, 12)
  2067. Border_69.ZIndex = 120
  2068. Border_69.Image = "http://www.roblox.com/asset/?id=238725003"
  2069. Border_69.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  2070. Border_69.ImageRectOffset = Vector2.new(12, 24)
  2071. Border_69.ImageRectSize = Vector2.new(12, 12)
  2072.  
  2073. Border_70.Name = "Border"
  2074. Border_70.Parent = Borders_9
  2075. Border_70.BackgroundColor3 = Color3.new(1, 1, 1)
  2076. Border_70.BackgroundTransparency = 1
  2077. Border_70.BorderSizePixel = 0
  2078. Border_70.Position = UDim2.new(0, 0, 0, -12)
  2079. Border_70.Size = UDim2.new(1, 0, 0, 12)
  2080. Border_70.ZIndex = 120
  2081. Border_70.Image = "http://www.roblox.com/asset/?id=238725003"
  2082. Border_70.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  2083. Border_70.ImageRectOffset = Vector2.new(12, 0)
  2084. Border_70.ImageRectSize = Vector2.new(12, 12)
  2085.  
  2086. Border_71.Name = "Border"
  2087. Border_71.Parent = Borders_9
  2088. Border_71.BackgroundColor3 = Color3.new(1, 1, 1)
  2089. Border_71.BackgroundTransparency = 1
  2090. Border_71.BorderSizePixel = 0
  2091. Border_71.Position = UDim2.new(0, -12, 0, 0)
  2092. Border_71.Size = UDim2.new(0, 12, 1, 0)
  2093. Border_71.ZIndex = 120
  2094. Border_71.Image = "http://www.roblox.com/asset/?id=238725003"
  2095. Border_71.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  2096. Border_71.ImageRectOffset = Vector2.new(0, 12)
  2097. Border_71.ImageRectSize = Vector2.new(12, 12)
  2098.  
  2099. Border_72.Name = "Border"
  2100. Border_72.Parent = Borders_9
  2101. Border_72.BackgroundColor3 = Color3.new(1, 1, 1)
  2102. Border_72.BackgroundTransparency = 1
  2103. Border_72.BorderSizePixel = 0
  2104. Border_72.Position = UDim2.new(1, 0, 0, 0)
  2105. Border_72.Size = UDim2.new(0, 12, 1, 0)
  2106. Border_72.ZIndex = 120
  2107. Border_72.Image = "http://www.roblox.com/asset/?id=238725003"
  2108. Border_72.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  2109. Border_72.ImageRectOffset = Vector2.new(24, 12)
  2110. Border_72.ImageRectSize = Vector2.new(12, 12)
  2111.  
  2112.  
  2113. MainFrame = Instance.new("Frame")
  2114. QuitButton = Instance.new("ImageButton")
  2115. Borders = Instance.new("Frame")
  2116. Border = Instance.new("ImageLabel")
  2117. Border_2 = Instance.new("ImageLabel")
  2118. Border_3 = Instance.new("ImageLabel")
  2119. Border_4 = Instance.new("ImageLabel")
  2120. Border_5 = Instance.new("ImageLabel")
  2121. Borders_2 = Instance.new("Frame")
  2122. Border_6 = Instance.new("ImageLabel")
  2123. Border_7 = Instance.new("ImageLabel")
  2124. Border_8 = Instance.new("ImageLabel")
  2125. Border_9 = Instance.new("ImageLabel")
  2126. Border_10 = Instance.new("ImageLabel")
  2127. Border_11 = Instance.new("ImageLabel")
  2128. Border_12 = Instance.new("ImageLabel")
  2129. Border_13 = Instance.new("ImageLabel")
  2130. MainCmds = Instance.new("TextButton")
  2131. Borders_3 = Instance.new("Frame")
  2132. Border_14 = Instance.new("ImageLabel")
  2133. Border_15 = Instance.new("ImageLabel")
  2134. Border_16 = Instance.new("ImageLabel")
  2135. Border_17 = Instance.new("ImageLabel")
  2136. Border_18 = Instance.new("ImageLabel")
  2137. Challenges = Instance.new("TextButton")
  2138. Borders_4 = Instance.new("Frame")
  2139. Border_19 = Instance.new("ImageLabel")
  2140. Border_20 = Instance.new("ImageLabel")
  2141. Border_21 = Instance.new("ImageLabel")
  2142. Border_22 = Instance.new("ImageLabel")
  2143. Border_23 = Instance.new("ImageLabel")
  2144. Extras = Instance.new("TextButton")
  2145. Borders_5 = Instance.new("Frame")
  2146. Border_24 = Instance.new("ImageLabel")
  2147. Border_25 = Instance.new("ImageLabel")
  2148. Border_26 = Instance.new("ImageLabel")
  2149. Border_27 = Instance.new("ImageLabel")
  2150. Border_28 = Instance.new("ImageLabel")
  2151. PageFrame = Instance.new("Frame")
  2152. Borders_6 = Instance.new("Frame")
  2153. Border_29 = Instance.new("ImageLabel")
  2154. Border_30 = Instance.new("ImageLabel")
  2155. Border_31 = Instance.new("ImageLabel")
  2156. Border_32 = Instance.new("ImageLabel")
  2157. Border_33 = Instance.new("ImageLabel")
  2158. Border_34 = Instance.new("ImageLabel")
  2159. Border_35 = Instance.new("ImageLabel")
  2160. Border_36 = Instance.new("ImageLabel")
  2161.  
  2162.  
  2163. MainFrame.Name = "MainFrame"
  2164. MainFrame.Parent = Survivor
  2165. MainFrame.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  2166. MainFrame.Position = UDim2.new(0.30856514, 0, 0.23977989, 0)
  2167. MainFrame.Size = UDim2.new(0.382869691, 0, 0.52044028, 0)
  2168. MainFrame.Visible = false
  2169. MainFrame.ZIndex = 100
  2170.  
  2171. QuitButton.Name = "QuitButton"
  2172. QuitButton.Parent = MainFrame
  2173. QuitButton.BackgroundColor3 = Color3.new(1, 1, 1)
  2174. QuitButton.BorderSizePixel = 0
  2175. QuitButton.Position = UDim2.new(0.962586403, 0, 0, 0)
  2176. QuitButton.Size = UDim2.new(0, 20, 0, 20)
  2177. QuitButton.ZIndex = 120
  2178. QuitButton.Image = "rbxassetid://1828839274"
  2179.  
  2180. Borders.Name = "Borders"
  2181. Borders.Parent = QuitButton
  2182. Borders.BackgroundColor3 = Color3.new(1, 1, 1)
  2183. Borders.BackgroundTransparency = 1
  2184. Borders.BorderSizePixel = 0
  2185. Borders.Size = UDim2.new(1, 0, 1, 0)
  2186. Borders.ZIndex = 120
  2187.  
  2188. Border.Name = "Border"
  2189. Border.Parent = Borders
  2190. Border.BackgroundColor3 = Color3.new(1, 1, 1)
  2191. Border.BackgroundTransparency = 1
  2192. Border.BorderSizePixel = 0
  2193. Border.Position = UDim2.new(0, -12, 1, 0)
  2194. Border.Size = UDim2.new(0, 12, 0, 12)
  2195. Border.ZIndex = 120
  2196. Border.Image = "http://www.roblox.com/asset/?id=238725003"
  2197. Border.ImageRectOffset = Vector2.new(0, 24)
  2198. Border.ImageRectSize = Vector2.new(12, 12)
  2199.  
  2200. Border_2.Name = "Border"
  2201. Border_2.Parent = Borders
  2202. Border_2.BackgroundColor3 = Color3.new(1, 1, 1)
  2203. Border_2.BackgroundTransparency = 1
  2204. Border_2.BorderSizePixel = 0
  2205. Border_2.Position = UDim2.new(1, 0, 1, 0)
  2206. Border_2.Size = UDim2.new(0, 12, 0, 12)
  2207. Border_2.ZIndex = 120
  2208. Border_2.Image = "http://www.roblox.com/asset/?id=238725003"
  2209. Border_2.ImageRectOffset = Vector2.new(24, 24)
  2210. Border_2.ImageRectSize = Vector2.new(12, 12)
  2211.  
  2212. Border_3.Name = "Border"
  2213. Border_3.Parent = Borders
  2214. Border_3.BackgroundColor3 = Color3.new(1, 1, 1)
  2215. Border_3.BackgroundTransparency = 1
  2216. Border_3.BorderSizePixel = 0
  2217. Border_3.Position = UDim2.new(0, 0, 1, 0)
  2218. Border_3.Size = UDim2.new(1, 0, 0, 12)
  2219. Border_3.ZIndex = 120
  2220. Border_3.Image = "http://www.roblox.com/asset/?id=238725003"
  2221. Border_3.ImageRectOffset = Vector2.new(12, 24)
  2222. Border_3.ImageRectSize = Vector2.new(12, 12)
  2223.  
  2224. Border_4.Name = "Border"
  2225. Border_4.Parent = Borders
  2226. Border_4.BackgroundColor3 = Color3.new(1, 1, 1)
  2227. Border_4.BackgroundTransparency = 1
  2228. Border_4.BorderSizePixel = 0
  2229. Border_4.Position = UDim2.new(0, -12, 0, 0)
  2230. Border_4.Size = UDim2.new(0, 12, 1, 0)
  2231. Border_4.ZIndex = 120
  2232. Border_4.Image = "http://www.roblox.com/asset/?id=238725003"
  2233. Border_4.ImageRectOffset = Vector2.new(0, 12)
  2234. Border_4.ImageRectSize = Vector2.new(12, 12)
  2235.  
  2236. Border_5.Name = "Border"
  2237. Border_5.Parent = Borders
  2238. Border_5.BackgroundColor3 = Color3.new(1, 1, 1)
  2239. Border_5.BackgroundTransparency = 1
  2240. Border_5.BorderSizePixel = 0
  2241. Border_5.Position = UDim2.new(1, 0, 0, 0)
  2242. Border_5.Size = UDim2.new(0, 12, 1, 0)
  2243. Border_5.ZIndex = 120
  2244. Border_5.Image = "http://www.roblox.com/asset/?id=238725003"
  2245. Border_5.ImageRectOffset = Vector2.new(24, 12)
  2246. Border_5.ImageRectSize = Vector2.new(12, 12)
  2247.  
  2248. Borders_2.Name = "Borders"
  2249. Borders_2.Parent = MainFrame
  2250. Borders_2.BackgroundColor3 = Color3.new(1, 1, 1)
  2251. Borders_2.BackgroundTransparency = 1
  2252. Borders_2.BorderSizePixel = 0
  2253. Borders_2.Size = UDim2.new(1, 0, 1, 0)
  2254. Borders_2.ZIndex = 120
  2255.  
  2256. Border_6.Name = "Border"
  2257. Border_6.Parent = Borders_2
  2258. Border_6.BackgroundColor3 = Color3.new(1, 1, 1)
  2259. Border_6.BackgroundTransparency = 1
  2260. Border_6.BorderSizePixel = 0
  2261. Border_6.Position = UDim2.new(0, -12, 0, -12)
  2262. Border_6.Size = UDim2.new(0, 12, 0, 12)
  2263. Border_6.ZIndex = 110
  2264. Border_6.Image = "http://www.roblox.com/asset/?id=238725003"
  2265. Border_6.ImageRectSize = Vector2.new(12, 12)
  2266.  
  2267. Border_7.Name = "Border"
  2268. Border_7.Parent = Borders_2
  2269. Border_7.BackgroundColor3 = Color3.new(1, 1, 1)
  2270. Border_7.BackgroundTransparency = 1
  2271. Border_7.BorderSizePixel = 0
  2272. Border_7.Position = UDim2.new(1, 0, 0, -12)
  2273. Border_7.Size = UDim2.new(0, 12, 0, 12)
  2274. Border_7.ZIndex = 110
  2275. Border_7.Image = "http://www.roblox.com/asset/?id=238725003"
  2276. Border_7.ImageRectOffset = Vector2.new(24, 0)
  2277. Border_7.ImageRectSize = Vector2.new(12, 12)
  2278.  
  2279. Border_8.Name = "Border"
  2280. Border_8.Parent = Borders_2
  2281. Border_8.BackgroundColor3 = Color3.new(1, 1, 1)
  2282. Border_8.BackgroundTransparency = 1
  2283. Border_8.BorderSizePixel = 0
  2284. Border_8.Position = UDim2.new(0, -12, 1, 0)
  2285. Border_8.Size = UDim2.new(0, 12, 0, 12)
  2286. Border_8.ZIndex = 110
  2287. Border_8.Image = "http://www.roblox.com/asset/?id=238725003"
  2288. Border_8.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  2289. Border_8.ImageRectOffset = Vector2.new(0, 24)
  2290. Border_8.ImageRectSize = Vector2.new(12, 12)
  2291.  
  2292. Border_9.Name = "Border"
  2293. Border_9.Parent = Borders_2
  2294. Border_9.BackgroundColor3 = Color3.new(1, 1, 1)
  2295. Border_9.BackgroundTransparency = 1
  2296. Border_9.BorderSizePixel = 0
  2297. Border_9.Position = UDim2.new(1, 0, 1, 0)
  2298. Border_9.Size = UDim2.new(0, 12, 0, 12)
  2299. Border_9.ZIndex = 110
  2300. Border_9.Image = "http://www.roblox.com/asset/?id=238725003"
  2301. Border_9.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  2302. Border_9.ImageRectOffset = Vector2.new(24, 24)
  2303. Border_9.ImageRectSize = Vector2.new(12, 12)
  2304.  
  2305. Border_10.Name = "Border"
  2306. Border_10.Parent = Borders_2
  2307. Border_10.BackgroundColor3 = Color3.new(1, 1, 1)
  2308. Border_10.BackgroundTransparency = 1
  2309. Border_10.BorderSizePixel = 0
  2310. Border_10.Position = UDim2.new(0, 0, 1, 0)
  2311. Border_10.Size = UDim2.new(1, 0, 0, 12)
  2312. Border_10.ZIndex = 110
  2313. Border_10.Image = "http://www.roblox.com/asset/?id=238725003"
  2314. Border_10.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  2315. Border_10.ImageRectOffset = Vector2.new(12, 24)
  2316. Border_10.ImageRectSize = Vector2.new(12, 12)
  2317.  
  2318. Border_11.Name = "Border"
  2319. Border_11.Parent = Borders_2
  2320. Border_11.BackgroundColor3 = Color3.new(1, 1, 1)
  2321. Border_11.BackgroundTransparency = 1
  2322. Border_11.BorderSizePixel = 0
  2323. Border_11.Position = UDim2.new(0, 0, 0, -12)
  2324. Border_11.Size = UDim2.new(1, 0, 0, 12)
  2325. Border_11.ZIndex = 110
  2326. Border_11.Image = "http://www.roblox.com/asset/?id=238725003"
  2327. Border_11.ImageRectOffset = Vector2.new(12, 0)
  2328. Border_11.ImageRectSize = Vector2.new(12, 12)
  2329.  
  2330. Border_12.Name = "Border"
  2331. Border_12.Parent = Borders_2
  2332. Border_12.BackgroundColor3 = Color3.new(1, 1, 1)
  2333. Border_12.BackgroundTransparency = 1
  2334. Border_12.BorderSizePixel = 0
  2335. Border_12.Position = UDim2.new(0, -12, 0, 0)
  2336. Border_12.Size = UDim2.new(0, 12, 1, 0)
  2337. Border_12.ZIndex = 110
  2338. Border_12.Image = "http://www.roblox.com/asset/?id=238725003"
  2339. Border_12.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  2340. Border_12.ImageRectOffset = Vector2.new(0, 12)
  2341. Border_12.ImageRectSize = Vector2.new(12, 12)
  2342.  
  2343. Border_13.Name = "Border"
  2344. Border_13.Parent = Borders_2
  2345. Border_13.BackgroundColor3 = Color3.new(1, 1, 1)
  2346. Border_13.BackgroundTransparency = 1
  2347. Border_13.BorderSizePixel = 0
  2348. Border_13.Position = UDim2.new(1, 0, 0, 0)
  2349. Border_13.Size = UDim2.new(0, 12, 1, 0)
  2350. Border_13.ZIndex = 110
  2351. Border_13.Image = "http://www.roblox.com/asset/?id=238725003"
  2352. Border_13.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  2353. Border_13.ImageRectOffset = Vector2.new(24, 12)
  2354. Border_13.ImageRectSize = Vector2.new(12, 12)
  2355.  
  2356. MainCmds.Name = "MainCmds"
  2357. MainCmds.Parent = MainFrame
  2358. MainCmds.BackgroundColor3 = Color3.new(0, 0.666667, 1)
  2359. MainCmds.BorderSizePixel = 0
  2360. MainCmds.Size = UDim2.new(0, 100, 0, 20)
  2361. MainCmds.ZIndex = 120
  2362. MainCmds.Font = Enum.Font.Highway
  2363. MainCmds.Text = "Main Commands"
  2364. MainCmds.TextColor3 = Color3.new(1, 1, 1)
  2365. MainCmds.TextScaled = true
  2366. MainCmds.TextSize = 14
  2367. MainCmds.TextWrapped = true
  2368.  
  2369. Borders_3.Name = "Borders"
  2370. Borders_3.Parent = MainCmds
  2371. Borders_3.BackgroundColor3 = Color3.new(1, 1, 1)
  2372. Borders_3.BackgroundTransparency = 1
  2373. Borders_3.BorderSizePixel = 0
  2374. Borders_3.Size = UDim2.new(1, 0, 1, 0)
  2375. Borders_3.ZIndex = 120
  2376.  
  2377. Border_14.Name = "Border"
  2378. Border_14.Parent = Borders_3
  2379. Border_14.BackgroundColor3 = Color3.new(1, 1, 1)
  2380. Border_14.BackgroundTransparency = 1
  2381. Border_14.BorderSizePixel = 0
  2382. Border_14.Position = UDim2.new(0, -12, 1, 0)
  2383. Border_14.Size = UDim2.new(0, 12, 0, 12)
  2384. Border_14.ZIndex = 120
  2385. Border_14.Image = "http://www.roblox.com/asset/?id=238725003"
  2386. Border_14.ImageColor3 = Color3.new(0, 0.666667, 1)
  2387. Border_14.ImageRectOffset = Vector2.new(0, 24)
  2388. Border_14.ImageRectSize = Vector2.new(12, 12)
  2389.  
  2390. Border_15.Name = "Border"
  2391. Border_15.Parent = Borders_3
  2392. Border_15.BackgroundColor3 = Color3.new(1, 1, 1)
  2393. Border_15.BackgroundTransparency = 1
  2394. Border_15.BorderSizePixel = 0
  2395. Border_15.Position = UDim2.new(1, 0, 1, 0)
  2396. Border_15.Size = UDim2.new(0, 12, 0, 12)
  2397. Border_15.ZIndex = 120
  2398. Border_15.Image = "http://www.roblox.com/asset/?id=238725003"
  2399. Border_15.ImageColor3 = Color3.new(0, 0.666667, 1)
  2400. Border_15.ImageRectOffset = Vector2.new(24, 24)
  2401. Border_15.ImageRectSize = Vector2.new(12, 12)
  2402.  
  2403. Border_16.Name = "Border"
  2404. Border_16.Parent = Borders_3
  2405. Border_16.BackgroundColor3 = Color3.new(1, 1, 1)
  2406. Border_16.BackgroundTransparency = 1
  2407. Border_16.BorderSizePixel = 0
  2408. Border_16.Position = UDim2.new(0, 0, 1, 0)
  2409. Border_16.Size = UDim2.new(1, 0, 0, 12)
  2410. Border_16.ZIndex = 120
  2411. Border_16.Image = "http://www.roblox.com/asset/?id=238725003"
  2412. Border_16.ImageColor3 = Color3.new(0, 0.666667, 1)
  2413. Border_16.ImageRectOffset = Vector2.new(12, 24)
  2414. Border_16.ImageRectSize = Vector2.new(12, 12)
  2415.  
  2416. Border_17.Name = "Border"
  2417. Border_17.Parent = Borders_3
  2418. Border_17.BackgroundColor3 = Color3.new(1, 1, 1)
  2419. Border_17.BackgroundTransparency = 1
  2420. Border_17.BorderSizePixel = 0
  2421. Border_17.Position = UDim2.new(0, -12, 0, 0)
  2422. Border_17.Size = UDim2.new(0, 12, 1, 0)
  2423. Border_17.ZIndex = 120
  2424. Border_17.Image = "http://www.roblox.com/asset/?id=238725003"
  2425. Border_17.ImageColor3 = Color3.new(0, 0.666667, 1)
  2426. Border_17.ImageRectOffset = Vector2.new(0, 12)
  2427. Border_17.ImageRectSize = Vector2.new(12, 12)
  2428.  
  2429. Border_18.Name = "Border"
  2430. Border_18.Parent = Borders_3
  2431. Border_18.BackgroundColor3 = Color3.new(1, 1, 1)
  2432. Border_18.BackgroundTransparency = 1
  2433. Border_18.BorderSizePixel = 0
  2434. Border_18.Position = UDim2.new(1, 0, 0, 0)
  2435. Border_18.Size = UDim2.new(0, 12, 1, 0)
  2436. Border_18.ZIndex = 120
  2437. Border_18.Image = "http://www.roblox.com/asset/?id=238725003"
  2438. Border_18.ImageColor3 = Color3.new(0, 0.666667, 1)
  2439. Border_18.ImageRectOffset = Vector2.new(24, 12)
  2440. Border_18.ImageRectSize = Vector2.new(12, 12)
  2441.  
  2442. Challenges.Name = "Challenges"
  2443. Challenges.Parent = MainFrame
  2444. Challenges.BackgroundColor3 = Color3.new(1, 1, 1)
  2445. Challenges.BorderSizePixel = 0
  2446. Challenges.Position = UDim2.new(0.33365199, 0, 0, 0)
  2447. Challenges.Size = UDim2.new(0, 100, 0, 20)
  2448. Challenges.ZIndex = 120
  2449. Challenges.Font = Enum.Font.Highway
  2450. Challenges.Text = "Challenges"
  2451. Challenges.TextColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  2452. Challenges.TextScaled = true
  2453. Challenges.TextSize = 14
  2454. Challenges.TextWrapped = true
  2455.  
  2456. Borders_4.Name = "Borders"
  2457. Borders_4.Parent = Challenges
  2458. Borders_4.BackgroundColor3 = Color3.new(1, 1, 1)
  2459. Borders_4.BackgroundTransparency = 1
  2460. Borders_4.BorderSizePixel = 0
  2461. Borders_4.Size = UDim2.new(1, 0, 1, 0)
  2462. Borders_4.ZIndex = 120
  2463.  
  2464. Border_19.Name = "Border"
  2465. Border_19.Parent = Borders_4
  2466. Border_19.BackgroundColor3 = Color3.new(1, 1, 1)
  2467. Border_19.BackgroundTransparency = 1
  2468. Border_19.BorderSizePixel = 0
  2469. Border_19.Position = UDim2.new(0, -12, 1, 0)
  2470. Border_19.Size = UDim2.new(0, 12, 0, 12)
  2471. Border_19.ZIndex = 120
  2472. Border_19.Image = "http://www.roblox.com/asset/?id=238725003"
  2473. Border_19.ImageRectOffset = Vector2.new(0, 24)
  2474. Border_19.ImageRectSize = Vector2.new(12, 12)
  2475.  
  2476. Border_20.Name = "Border"
  2477. Border_20.Parent = Borders_4
  2478. Border_20.BackgroundColor3 = Color3.new(1, 1, 1)
  2479. Border_20.BackgroundTransparency = 1
  2480. Border_20.BorderSizePixel = 0
  2481. Border_20.Position = UDim2.new(1, 0, 1, 0)
  2482. Border_20.Size = UDim2.new(0, 12, 0, 12)
  2483. Border_20.ZIndex = 120
  2484. Border_20.Image = "http://www.roblox.com/asset/?id=238725003"
  2485. Border_20.ImageRectOffset = Vector2.new(24, 24)
  2486. Border_20.ImageRectSize = Vector2.new(12, 12)
  2487.  
  2488. Border_21.Name = "Border"
  2489. Border_21.Parent = Borders_4
  2490. Border_21.BackgroundColor3 = Color3.new(1, 1, 1)
  2491. Border_21.BackgroundTransparency = 1
  2492. Border_21.BorderSizePixel = 0
  2493. Border_21.Position = UDim2.new(0, 0, 1, 0)
  2494. Border_21.Size = UDim2.new(1, 0, 0, 12)
  2495. Border_21.ZIndex = 120
  2496. Border_21.Image = "http://www.roblox.com/asset/?id=238725003"
  2497. Border_21.ImageRectOffset = Vector2.new(12, 24)
  2498. Border_21.ImageRectSize = Vector2.new(12, 12)
  2499.  
  2500. Border_22.Name = "Border"
  2501. Border_22.Parent = Borders_4
  2502. Border_22.BackgroundColor3 = Color3.new(1, 1, 1)
  2503. Border_22.BackgroundTransparency = 1
  2504. Border_22.BorderSizePixel = 0
  2505. Border_22.Position = UDim2.new(0, -12, 0, 0)
  2506. Border_22.Size = UDim2.new(0, 12, 1, 0)
  2507. Border_22.ZIndex = 120
  2508. Border_22.Image = "http://www.roblox.com/asset/?id=238725003"
  2509. Border_22.ImageRectOffset = Vector2.new(0, 12)
  2510. Border_22.ImageRectSize = Vector2.new(12, 12)
  2511.  
  2512. Border_23.Name = "Border"
  2513. Border_23.Parent = Borders_4
  2514. Border_23.BackgroundColor3 = Color3.new(1, 1, 1)
  2515. Border_23.BackgroundTransparency = 1
  2516. Border_23.BorderSizePixel = 0
  2517. Border_23.Position = UDim2.new(1, 0, 0, 0)
  2518. Border_23.Size = UDim2.new(0, 12, 1, 0)
  2519. Border_23.ZIndex = 120
  2520. Border_23.Image = "http://www.roblox.com/asset/?id=238725003"
  2521. Border_23.ImageRectOffset = Vector2.new(24, 12)
  2522. Border_23.ImageRectSize = Vector2.new(12, 12)
  2523.  
  2524. Extras.Name = "Extras"
  2525. Extras.Parent = MainFrame
  2526. Extras.BackgroundColor3 = Color3.new(1, 1, 1)
  2527. Extras.BorderSizePixel = 0
  2528. Extras.Position = UDim2.new(0.660611868, 0, 0, 0)
  2529. Extras.Size = UDim2.new(0, 100, 0, 20)
  2530. Extras.ZIndex = 120
  2531. Extras.Font = Enum.Font.Highway
  2532. Extras.Text = "Extras"
  2533. Extras.TextColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  2534. Extras.TextScaled = true
  2535. Extras.TextSize = 14
  2536. Extras.TextWrapped = true
  2537.  
  2538. Borders_5.Name = "Borders"
  2539. Borders_5.Parent = Extras
  2540. Borders_5.BackgroundColor3 = Color3.new(1, 1, 1)
  2541. Borders_5.BackgroundTransparency = 1
  2542. Borders_5.BorderSizePixel = 0
  2543. Borders_5.Size = UDim2.new(1, 0, 1, 0)
  2544. Borders_5.ZIndex = 120
  2545.  
  2546. Border_24.Name = "Border"
  2547. Border_24.Parent = Borders_5
  2548. Border_24.BackgroundColor3 = Color3.new(1, 1, 1)
  2549. Border_24.BackgroundTransparency = 1
  2550. Border_24.BorderSizePixel = 0
  2551. Border_24.Position = UDim2.new(0, -12, 1, 0)
  2552. Border_24.Size = UDim2.new(0, 12, 0, 12)
  2553. Border_24.ZIndex = 120
  2554. Border_24.Image = "http://www.roblox.com/asset/?id=238725003"
  2555. Border_24.ImageRectOffset = Vector2.new(0, 24)
  2556. Border_24.ImageRectSize = Vector2.new(12, 12)
  2557.  
  2558. Border_25.Name = "Border"
  2559. Border_25.Parent = Borders_5
  2560. Border_25.BackgroundColor3 = Color3.new(1, 1, 1)
  2561. Border_25.BackgroundTransparency = 1
  2562. Border_25.BorderSizePixel = 0
  2563. Border_25.Position = UDim2.new(1, 0, 1, 0)
  2564. Border_25.Size = UDim2.new(0, 12, 0, 12)
  2565. Border_25.ZIndex = 120
  2566. Border_25.Image = "http://www.roblox.com/asset/?id=238725003"
  2567. Border_25.ImageRectOffset = Vector2.new(24, 24)
  2568. Border_25.ImageRectSize = Vector2.new(12, 12)
  2569.  
  2570. Border_26.Name = "Border"
  2571. Border_26.Parent = Borders_5
  2572. Border_26.BackgroundColor3 = Color3.new(1, 1, 1)
  2573. Border_26.BackgroundTransparency = 1
  2574. Border_26.BorderSizePixel = 0
  2575. Border_26.Position = UDim2.new(0, 0, 1, 0)
  2576. Border_26.Size = UDim2.new(1, 0, 0, 12)
  2577. Border_26.ZIndex = 120
  2578. Border_26.Image = "http://www.roblox.com/asset/?id=238725003"
  2579. Border_26.ImageRectOffset = Vector2.new(12, 24)
  2580. Border_26.ImageRectSize = Vector2.new(12, 12)
  2581.  
  2582. Border_27.Name = "Border"
  2583. Border_27.Parent = Borders_5
  2584. Border_27.BackgroundColor3 = Color3.new(1, 1, 1)
  2585. Border_27.BackgroundTransparency = 1
  2586. Border_27.BorderSizePixel = 0
  2587. Border_27.Position = UDim2.new(0, -12, 0, 0)
  2588. Border_27.Size = UDim2.new(0, 12, 1, 0)
  2589. Border_27.ZIndex = 120
  2590. Border_27.Image = "http://www.roblox.com/asset/?id=238725003"
  2591. Border_27.ImageRectOffset = Vector2.new(0, 12)
  2592. Border_27.ImageRectSize = Vector2.new(12, 12)
  2593.  
  2594. Border_28.Name = "Border"
  2595. Border_28.Parent = Borders_5
  2596. Border_28.BackgroundColor3 = Color3.new(1, 1, 1)
  2597. Border_28.BackgroundTransparency = 1
  2598. Border_28.BorderSizePixel = 0
  2599. Border_28.Position = UDim2.new(1, 0, 0, 0)
  2600. Border_28.Size = UDim2.new(0, 12, 1, 0)
  2601. Border_28.ZIndex = 120
  2602. Border_28.Image = "http://www.roblox.com/asset/?id=238725003"
  2603. Border_28.ImageRectOffset = Vector2.new(24, 12)
  2604. Border_28.ImageRectSize = Vector2.new(12, 12)
  2605.  
  2606. PageFrame.Name = "PageFrame"
  2607. PageFrame.Parent = MainFrame
  2608. PageFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  2609. PageFrame.Position = UDim2.new(0, 0, 0.238670692, 0)
  2610. PageFrame.Size = UDim2.new(1, 0, 0.761329293, 0)
  2611. PageFrame.ZIndex = 100
  2612.  
  2613. Borders_6.Name = "Borders"
  2614. Borders_6.Parent = PageFrame
  2615. Borders_6.BackgroundColor3 = Color3.new(1, 1, 1)
  2616. Borders_6.BackgroundTransparency = 1
  2617. Borders_6.BorderSizePixel = 0
  2618. Borders_6.Size = UDim2.new(1, 0, 1, 0)
  2619. Borders_6.ZIndex = 120
  2620.  
  2621. Border_29.Name = "Border"
  2622. Border_29.Parent = Borders_6
  2623. Border_29.BackgroundColor3 = Color3.new(1, 1, 1)
  2624. Border_29.BackgroundTransparency = 1
  2625. Border_29.BorderSizePixel = 0
  2626. Border_29.Position = UDim2.new(0, -12, 0, -12)
  2627. Border_29.Size = UDim2.new(0, 12, 0, 12)
  2628. Border_29.ZIndex = 110
  2629. Border_29.Image = "http://www.roblox.com/asset/?id=238725003"
  2630. Border_29.ImageRectSize = Vector2.new(12, 12)
  2631.  
  2632. Border_30.Name = "Border"
  2633. Border_30.Parent = Borders_6
  2634. Border_30.BackgroundColor3 = Color3.new(1, 1, 1)
  2635. Border_30.BackgroundTransparency = 1
  2636. Border_30.BorderSizePixel = 0
  2637. Border_30.Position = UDim2.new(1, 0, 0, -12)
  2638. Border_30.Size = UDim2.new(0, 12, 0, 12)
  2639. Border_30.ZIndex = 110
  2640. Border_30.Image = "http://www.roblox.com/asset/?id=238725003"
  2641. Border_30.ImageRectOffset = Vector2.new(24, 0)
  2642. Border_30.ImageRectSize = Vector2.new(12, 12)
  2643.  
  2644. Border_31.Name = "Border"
  2645. Border_31.Parent = Borders_6
  2646. Border_31.BackgroundColor3 = Color3.new(1, 1, 1)
  2647. Border_31.BackgroundTransparency = 1
  2648. Border_31.BorderSizePixel = 0
  2649. Border_31.Position = UDim2.new(0, -12, 1, 0)
  2650. Border_31.Size = UDim2.new(0, 12, 0, 12)
  2651. Border_31.ZIndex = 110
  2652. Border_31.Image = "http://www.roblox.com/asset/?id=238725003"
  2653. Border_31.ImageRectOffset = Vector2.new(0, 24)
  2654. Border_31.ImageRectSize = Vector2.new(12, 12)
  2655.  
  2656. Border_32.Name = "Border"
  2657. Border_32.Parent = Borders_6
  2658. Border_32.BackgroundColor3 = Color3.new(1, 1, 1)
  2659. Border_32.BackgroundTransparency = 1
  2660. Border_32.BorderSizePixel = 0
  2661. Border_32.Position = UDim2.new(1, 0, 1, 0)
  2662. Border_32.Size = UDim2.new(0, 12, 0, 12)
  2663. Border_32.ZIndex = 110
  2664. Border_32.Image = "http://www.roblox.com/asset/?id=238725003"
  2665. Border_32.ImageRectOffset = Vector2.new(24, 24)
  2666. Border_32.ImageRectSize = Vector2.new(12, 12)
  2667.  
  2668. Border_33.Name = "Border"
  2669. Border_33.Parent = Borders_6
  2670. Border_33.BackgroundColor3 = Color3.new(1, 1, 1)
  2671. Border_33.BackgroundTransparency = 1
  2672. Border_33.BorderSizePixel = 0
  2673. Border_33.Position = UDim2.new(0, 0, 1, 0)
  2674. Border_33.Size = UDim2.new(1, 0, 0, 12)
  2675. Border_33.ZIndex = 110
  2676. Border_33.Image = "http://www.roblox.com/asset/?id=238725003"
  2677. Border_33.ImageRectOffset = Vector2.new(12, 24)
  2678. Border_33.ImageRectSize = Vector2.new(12, 12)
  2679.  
  2680. Border_34.Name = "Border"
  2681. Border_34.Parent = Borders_6
  2682. Border_34.BackgroundColor3 = Color3.new(1, 1, 1)
  2683. Border_34.BackgroundTransparency = 1
  2684. Border_34.BorderSizePixel = 0
  2685. Border_34.Position = UDim2.new(0, 0, 0, -12)
  2686. Border_34.Size = UDim2.new(1, 0, 0, 12)
  2687. Border_34.ZIndex = 110
  2688. Border_34.Image = "http://www.roblox.com/asset/?id=238725003"
  2689. Border_34.ImageRectOffset = Vector2.new(12, 0)
  2690. Border_34.ImageRectSize = Vector2.new(12, 12)
  2691.  
  2692. Border_35.Name = "Border"
  2693. Border_35.Parent = Borders_6
  2694. Border_35.BackgroundColor3 = Color3.new(1, 1, 1)
  2695. Border_35.BackgroundTransparency = 1
  2696. Border_35.BorderSizePixel = 0
  2697. Border_35.Position = UDim2.new(0, -12, 0, 0)
  2698. Border_35.Size = UDim2.new(0, 12, 1, 0)
  2699. Border_35.ZIndex = 110
  2700. Border_35.Image = "http://www.roblox.com/asset/?id=238725003"
  2701. Border_35.ImageRectOffset = Vector2.new(0, 12)
  2702. Border_35.ImageRectSize = Vector2.new(12, 12)
  2703.  
  2704. Border_36.Name = "Border"
  2705. Border_36.Parent = Borders_6
  2706. Border_36.BackgroundColor3 = Color3.new(1, 1, 1)
  2707. Border_36.BackgroundTransparency = 1
  2708. Border_36.BorderSizePixel = 0
  2709. Border_36.Position = UDim2.new(1, 0, 0, 0)
  2710. Border_36.Size = UDim2.new(0, 12, 1, 0)
  2711. Border_36.ZIndex = 110
  2712. Border_36.Image = "http://www.roblox.com/asset/?id=238725003"
  2713. Border_36.ImageRectOffset = Vector2.new(24, 12)
  2714. Border_36.ImageRectSize = Vector2.new(12, 12)
  2715.  
  2716.  
  2717.  
  2718.  
  2719. -- Objects
  2720.  
  2721. ChallengesFrame = Instance.new("Frame")
  2722. ChallengeLabel = Instance.new("TextLabel")
  2723. NoChallengeFrame = Instance.new("Frame")
  2724. Borders = Instance.new("Frame")
  2725. Border = Instance.new("ImageLabel")
  2726. Border_2 = Instance.new("ImageLabel")
  2727. Border_3 = Instance.new("ImageLabel")
  2728. Border_4 = Instance.new("ImageLabel")
  2729. Border_5 = Instance.new("ImageLabel")
  2730. Border_6 = Instance.new("ImageLabel")
  2731. Border_7 = Instance.new("ImageLabel")
  2732. Border_8 = Instance.new("ImageLabel")
  2733. ChallengeInfo = Instance.new("TextLabel")
  2734. TidepoolFrame = Instance.new("Frame")
  2735. Borders_2 = Instance.new("Frame")
  2736. Border_9 = Instance.new("ImageLabel")
  2737. Border_10 = Instance.new("ImageLabel")
  2738. Border_11 = Instance.new("ImageLabel")
  2739. Border_12 = Instance.new("ImageLabel")
  2740. Border_13 = Instance.new("ImageLabel")
  2741. Border_14 = Instance.new("ImageLabel")
  2742. Border_15 = Instance.new("ImageLabel")
  2743. Border_16 = Instance.new("ImageLabel")
  2744. InsWin = Instance.new("TextButton")
  2745. Borders_3 = Instance.new("Frame")
  2746. Border_17 = Instance.new("ImageLabel")
  2747. Border_18 = Instance.new("ImageLabel")
  2748. Border_19 = Instance.new("ImageLabel")
  2749. Border_20 = Instance.new("ImageLabel")
  2750. Border_21 = Instance.new("ImageLabel")
  2751. Border_22 = Instance.new("ImageLabel")
  2752. Border_23 = Instance.new("ImageLabel")
  2753. Border_24 = Instance.new("ImageLabel")
  2754. ChallengeInfo_2 = Instance.new("TextLabel")
  2755. GetAGripFrame = Instance.new("Frame")
  2756. Borders_4 = Instance.new("Frame")
  2757. Border_25 = Instance.new("ImageLabel")
  2758. Border_26 = Instance.new("ImageLabel")
  2759. Border_27 = Instance.new("ImageLabel")
  2760. Border_28 = Instance.new("ImageLabel")
  2761. Border_29 = Instance.new("ImageLabel")
  2762. Border_30 = Instance.new("ImageLabel")
  2763. Border_31 = Instance.new("ImageLabel")
  2764. Border_32 = Instance.new("ImageLabel")
  2765. Immunity = Instance.new("TextButton")
  2766. Borders_5 = Instance.new("Frame")
  2767. Border_33 = Instance.new("ImageLabel")
  2768. Border_34 = Instance.new("ImageLabel")
  2769. Border_35 = Instance.new("ImageLabel")
  2770. Border_36 = Instance.new("ImageLabel")
  2771. Border_37 = Instance.new("ImageLabel")
  2772. Border_38 = Instance.new("ImageLabel")
  2773. Border_39 = Instance.new("ImageLabel")
  2774. Border_40 = Instance.new("ImageLabel")
  2775. ChallengeInfo_3 = Instance.new("TextLabel")
  2776. Playername = Instance.new("TextBox")
  2777. Borders_6 = Instance.new("Frame")
  2778. Border_41 = Instance.new("ImageLabel")
  2779. Border_42 = Instance.new("ImageLabel")
  2780. Border_43 = Instance.new("ImageLabel")
  2781. Border_44 = Instance.new("ImageLabel")
  2782. Border_45 = Instance.new("ImageLabel")
  2783. Border_46 = Instance.new("ImageLabel")
  2784. Border_47 = Instance.new("ImageLabel")
  2785. Border_48 = Instance.new("ImageLabel")
  2786. ForceLose = Instance.new("TextButton")
  2787. Borders_7 = Instance.new("Frame")
  2788. Border_49 = Instance.new("ImageLabel")
  2789. Border_50 = Instance.new("ImageLabel")
  2790. Border_51 = Instance.new("ImageLabel")
  2791. Border_52 = Instance.new("ImageLabel")
  2792. Border_53 = Instance.new("ImageLabel")
  2793. Border_54 = Instance.new("ImageLabel")
  2794. Border_55 = Instance.new("ImageLabel")
  2795. Border_56 = Instance.new("ImageLabel")
  2796. CrypticComboFrame = Instance.new("Frame")
  2797. Borders_8 = Instance.new("Frame")
  2798. Border_57 = Instance.new("ImageLabel")
  2799. Border_58 = Instance.new("ImageLabel")
  2800. Border_59 = Instance.new("ImageLabel")
  2801. Border_60 = Instance.new("ImageLabel")
  2802. Border_61 = Instance.new("ImageLabel")
  2803. Border_62 = Instance.new("ImageLabel")
  2804. Border_63 = Instance.new("ImageLabel")
  2805. Border_64 = Instance.new("ImageLabel")
  2806. ChallengeInfo_4 = Instance.new("TextLabel")
  2807. BotWin = Instance.new("TextButton")
  2808. Borders_9 = Instance.new("Frame")
  2809. Border_65 = Instance.new("ImageLabel")
  2810. Border_66 = Instance.new("ImageLabel")
  2811. Border_67 = Instance.new("ImageLabel")
  2812. Border_68 = Instance.new("ImageLabel")
  2813. Border_69 = Instance.new("ImageLabel")
  2814. Border_70 = Instance.new("ImageLabel")
  2815. Border_71 = Instance.new("ImageLabel")
  2816. Border_72 = Instance.new("ImageLabel")
  2817. BywayBustleFrame = Instance.new("Frame")
  2818. Borders_10 = Instance.new("Frame")
  2819. Border_73 = Instance.new("ImageLabel")
  2820. Border_74 = Instance.new("ImageLabel")
  2821. Border_75 = Instance.new("ImageLabel")
  2822. Border_76 = Instance.new("ImageLabel")
  2823. Border_77 = Instance.new("ImageLabel")
  2824. Border_78 = Instance.new("ImageLabel")
  2825. Border_79 = Instance.new("ImageLabel")
  2826. Border_80 = Instance.new("ImageLabel")
  2827. BotWin_2 = Instance.new("TextButton")
  2828. Borders_11 = Instance.new("Frame")
  2829. Border_81 = Instance.new("ImageLabel")
  2830. Border_82 = Instance.new("ImageLabel")
  2831. Border_83 = Instance.new("ImageLabel")
  2832. Border_84 = Instance.new("ImageLabel")
  2833. Border_85 = Instance.new("ImageLabel")
  2834. Border_86 = Instance.new("ImageLabel")
  2835. Border_87 = Instance.new("ImageLabel")
  2836. Border_88 = Instance.new("ImageLabel")
  2837. ChallengeInfo_5 = Instance.new("TextLabel")
  2838. KeysToVictoryFrame = Instance.new("Frame")
  2839. Borders_12 = Instance.new("Frame")
  2840. Border_89 = Instance.new("ImageLabel")
  2841. Border_90 = Instance.new("ImageLabel")
  2842. Border_91 = Instance.new("ImageLabel")
  2843. Border_92 = Instance.new("ImageLabel")
  2844. Border_93 = Instance.new("ImageLabel")
  2845. Border_94 = Instance.new("ImageLabel")
  2846. Border_95 = Instance.new("ImageLabel")
  2847. Border_96 = Instance.new("ImageLabel")
  2848. ChallengeInfo_6 = Instance.new("TextLabel")
  2849. BotWin_3 = Instance.new("TextButton")
  2850. Borders_13 = Instance.new("Frame")
  2851. Border_97 = Instance.new("ImageLabel")
  2852. Border_98 = Instance.new("ImageLabel")
  2853. Border_99 = Instance.new("ImageLabel")
  2854. Border_100 = Instance.new("ImageLabel")
  2855. Border_101 = Instance.new("ImageLabel")
  2856. Border_102 = Instance.new("ImageLabel")
  2857. Border_103 = Instance.new("ImageLabel")
  2858. Border_104 = Instance.new("ImageLabel")
  2859. DiveDwellingFrame = Instance.new("Frame")
  2860. Borders_14 = Instance.new("Frame")
  2861. Border_105 = Instance.new("ImageLabel")
  2862. Border_106 = Instance.new("ImageLabel")
  2863. Border_107 = Instance.new("ImageLabel")
  2864. Border_108 = Instance.new("ImageLabel")
  2865. Border_109 = Instance.new("ImageLabel")
  2866. Border_110 = Instance.new("ImageLabel")
  2867. Border_111 = Instance.new("ImageLabel")
  2868. Border_112 = Instance.new("ImageLabel")
  2869. ChallengeInfo_7 = Instance.new("TextLabel")
  2870. BotWin_4 = Instance.new("TextButton")
  2871. Borders_15 = Instance.new("Frame")
  2872. Border_113 = Instance.new("ImageLabel")
  2873. Border_114 = Instance.new("ImageLabel")
  2874. Border_115 = Instance.new("ImageLabel")
  2875. Border_116 = Instance.new("ImageLabel")
  2876. Border_117 = Instance.new("ImageLabel")
  2877. Border_118 = Instance.new("ImageLabel")
  2878. Border_119 = Instance.new("ImageLabel")
  2879. Border_120 = Instance.new("ImageLabel")
  2880. BeatToThePunchFrame = Instance.new("Frame")
  2881. Borders_16 = Instance.new("Frame")
  2882. Border_121 = Instance.new("ImageLabel")
  2883. Border_122 = Instance.new("ImageLabel")
  2884. Border_123 = Instance.new("ImageLabel")
  2885. Border_124 = Instance.new("ImageLabel")
  2886. Border_125 = Instance.new("ImageLabel")
  2887. Border_126 = Instance.new("ImageLabel")
  2888. Border_127 = Instance.new("ImageLabel")
  2889. Border_128 = Instance.new("ImageLabel")
  2890. ChallengeInfo_8 = Instance.new("TextLabel")
  2891. BotWin_5 = Instance.new("TextButton")
  2892. Borders_17 = Instance.new("Frame")
  2893. Border_129 = Instance.new("ImageLabel")
  2894. Border_130 = Instance.new("ImageLabel")
  2895. Border_131 = Instance.new("ImageLabel")
  2896. Border_132 = Instance.new("ImageLabel")
  2897. Border_133 = Instance.new("ImageLabel")
  2898. Border_134 = Instance.new("ImageLabel")
  2899. Border_135 = Instance.new("ImageLabel")
  2900. Border_136 = Instance.new("ImageLabel")
  2901.  
  2902. -- Properties
  2903.  
  2904. ChallengesFrame.Name = "ChallengesFrame"
  2905. ChallengesFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  2906. ChallengesFrame.BackgroundTransparency = 1
  2907. ChallengesFrame.BorderSizePixel = 0
  2908. ChallengesFrame.Size = UDim2.new(1, 0, 1, 0)
  2909. ChallengesFrame.Visible = false
  2910.  
  2911. ChallengeLabel.Name = "ChallengeLabel"
  2912. ChallengeLabel.Parent = ChallengesFrame
  2913. ChallengeLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  2914. ChallengeLabel.BackgroundTransparency = 1
  2915. ChallengeLabel.BorderSizePixel = 0
  2916. ChallengeLabel.Position = UDim2.new(0.0076481835, 0, 0, 0)
  2917. ChallengeLabel.Size = UDim2.new(0.99235183, 0, 0.134920642, 0)
  2918. ChallengeLabel.ZIndex = 120
  2919. ChallengeLabel.Font = Enum.Font.Highway
  2920. ChallengeLabel.Text = "Current Challenge : Not Found"
  2921. ChallengeLabel.TextColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  2922. ChallengeLabel.TextScaled = true
  2923. ChallengeLabel.TextSize = 14
  2924. ChallengeLabel.TextWrapped = true
  2925. ChallengeLabel.TextXAlignment = Enum.TextXAlignment.Left
  2926.  
  2927. NoChallengeFrame.Name = "NoChallengeFrame"
  2928. NoChallengeFrame.Parent = ChallengesFrame
  2929. NoChallengeFrame.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  2930. NoChallengeFrame.Position = UDim2.new(0, 0, 0.238670692, 0)
  2931. NoChallengeFrame.Size = UDim2.new(1, 0, 0.761329293, 0)
  2932. NoChallengeFrame.ZIndex = 100
  2933.  
  2934. Borders.Name = "Borders"
  2935. Borders.Parent = NoChallengeFrame
  2936. Borders.BackgroundColor3 = Color3.new(1, 1, 1)
  2937. Borders.BackgroundTransparency = 1
  2938. Borders.BorderSizePixel = 0
  2939. Borders.Size = UDim2.new(1, 0, 1, 0)
  2940. Borders.ZIndex = 120
  2941.  
  2942. Border.Name = "Border"
  2943. Border.Parent = Borders
  2944. Border.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  2945. Border.BackgroundTransparency = 1
  2946. Border.BorderSizePixel = 0
  2947. Border.Position = UDim2.new(0, -12, 0, -12)
  2948. Border.Size = UDim2.new(0, 12, 0, 12)
  2949. Border.ZIndex = 110
  2950. Border.Image = "http://www.roblox.com/asset/?id=238725003"
  2951. Border.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  2952. Border.ImageRectSize = Vector2.new(12, 12)
  2953.  
  2954. Border_2.Name = "Border"
  2955. Border_2.Parent = Borders
  2956. Border_2.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  2957. Border_2.BackgroundTransparency = 1
  2958. Border_2.BorderSizePixel = 0
  2959. Border_2.Position = UDim2.new(1, 0, 0, -12)
  2960. Border_2.Size = UDim2.new(0, 12, 0, 12)
  2961. Border_2.ZIndex = 110
  2962. Border_2.Image = "http://www.roblox.com/asset/?id=238725003"
  2963. Border_2.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  2964. Border_2.ImageRectOffset = Vector2.new(24, 0)
  2965. Border_2.ImageRectSize = Vector2.new(12, 12)
  2966.  
  2967. Border_3.Name = "Border"
  2968. Border_3.Parent = Borders
  2969. Border_3.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  2970. Border_3.BackgroundTransparency = 1
  2971. Border_3.BorderSizePixel = 0
  2972. Border_3.Position = UDim2.new(0, -12, 1, 0)
  2973. Border_3.Size = UDim2.new(0, 12, 0, 12)
  2974. Border_3.ZIndex = 110
  2975. Border_3.Image = "http://www.roblox.com/asset/?id=238725003"
  2976. Border_3.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  2977. Border_3.ImageRectOffset = Vector2.new(0, 24)
  2978. Border_3.ImageRectSize = Vector2.new(12, 12)
  2979.  
  2980. Border_4.Name = "Border"
  2981. Border_4.Parent = Borders
  2982. Border_4.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  2983. Border_4.BackgroundTransparency = 1
  2984. Border_4.BorderSizePixel = 0
  2985. Border_4.Position = UDim2.new(1, 0, 1, 0)
  2986. Border_4.Size = UDim2.new(0, 12, 0, 12)
  2987. Border_4.ZIndex = 110
  2988. Border_4.Image = "http://www.roblox.com/asset/?id=238725003"
  2989. Border_4.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  2990. Border_4.ImageRectOffset = Vector2.new(24, 24)
  2991. Border_4.ImageRectSize = Vector2.new(12, 12)
  2992.  
  2993. Border_5.Name = "Border"
  2994. Border_5.Parent = Borders
  2995. Border_5.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  2996. Border_5.BackgroundTransparency = 1
  2997. Border_5.BorderSizePixel = 0
  2998. Border_5.Position = UDim2.new(0, 0, 1, 0)
  2999. Border_5.Size = UDim2.new(1, 0, 0, 12)
  3000. Border_5.ZIndex = 110
  3001. Border_5.Image = "http://www.roblox.com/asset/?id=238725003"
  3002. Border_5.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  3003. Border_5.ImageRectOffset = Vector2.new(12, 24)
  3004. Border_5.ImageRectSize = Vector2.new(12, 12)
  3005.  
  3006. Border_6.Name = "Border"
  3007. Border_6.Parent = Borders
  3008. Border_6.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  3009. Border_6.BackgroundTransparency = 1
  3010. Border_6.BorderSizePixel = 0
  3011. Border_6.Position = UDim2.new(0, 0, 0, -12)
  3012. Border_6.Size = UDim2.new(1, 0, 0, 12)
  3013. Border_6.ZIndex = 110
  3014. Border_6.Image = "http://www.roblox.com/asset/?id=238725003"
  3015. Border_6.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  3016. Border_6.ImageRectOffset = Vector2.new(12, 0)
  3017. Border_6.ImageRectSize = Vector2.new(12, 12)
  3018.  
  3019. Border_7.Name = "Border"
  3020. Border_7.Parent = Borders
  3021. Border_7.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  3022. Border_7.BackgroundTransparency = 1
  3023. Border_7.BorderSizePixel = 0
  3024. Border_7.Position = UDim2.new(0, -12, 0, 0)
  3025. Border_7.Size = UDim2.new(0, 12, 1, 0)
  3026. Border_7.ZIndex = 110
  3027. Border_7.Image = "http://www.roblox.com/asset/?id=238725003"
  3028. Border_7.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  3029. Border_7.ImageRectOffset = Vector2.new(0, 12)
  3030. Border_7.ImageRectSize = Vector2.new(12, 12)
  3031.  
  3032. Border_8.Name = "Border"
  3033. Border_8.Parent = Borders
  3034. Border_8.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  3035. Border_8.BackgroundTransparency = 1
  3036. Border_8.BorderSizePixel = 0
  3037. Border_8.Position = UDim2.new(1, 0, 0, 0)
  3038. Border_8.Size = UDim2.new(0, 12, 1, 0)
  3039. Border_8.ZIndex = 110
  3040. Border_8.Image = "http://www.roblox.com/asset/?id=238725003"
  3041. Border_8.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  3042. Border_8.ImageRectOffset = Vector2.new(24, 12)
  3043. Border_8.ImageRectSize = Vector2.new(12, 12)
  3044.  
  3045. ChallengeInfo.Name = "ChallengeInfo"
  3046. ChallengeInfo.Parent = NoChallengeFrame
  3047. ChallengeInfo.BackgroundColor3 = Color3.new(1, 1, 1)
  3048. ChallengeInfo.BackgroundTransparency = 1
  3049. ChallengeInfo.BorderSizePixel = 0
  3050. ChallengeInfo.Position = UDim2.new(0.0076481835, 0, 0, 0)
  3051. ChallengeInfo.Size = UDim2.new(0.99235183, 0, 0.134920642, 0)
  3052. ChallengeInfo.ZIndex = 120
  3053. ChallengeInfo.Font = Enum.Font.Highway
  3054. ChallengeInfo.Text = "The Current Challenge Isn't Supported,"
  3055. ChallengeInfo.TextColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  3056. ChallengeInfo.TextScaled = true
  3057. ChallengeInfo.TextSize = 14
  3058. ChallengeInfo.TextWrapped = true
  3059.  
  3060. TidepoolFrame.Name = "TidepoolFrame"
  3061. TidepoolFrame.Parent = ChallengesFrame
  3062. TidepoolFrame.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  3063. TidepoolFrame.Position = UDim2.new(0, 0, 0.238670692, 0)
  3064. TidepoolFrame.Size = UDim2.new(1, 0, 0.761329293, 0)
  3065. TidepoolFrame.Visible = false
  3066. TidepoolFrame.ZIndex = 100
  3067.  
  3068. Borders_2.Name = "Borders"
  3069. Borders_2.Parent = TidepoolFrame
  3070. Borders_2.BackgroundColor3 = Color3.new(1, 1, 1)
  3071. Borders_2.BackgroundTransparency = 1
  3072. Borders_2.BorderSizePixel = 0
  3073. Borders_2.Size = UDim2.new(1, 0, 1, 0)
  3074. Borders_2.ZIndex = 120
  3075.  
  3076. Border_9.Name = "Border"
  3077. Border_9.Parent = Borders_2
  3078. Border_9.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  3079. Border_9.BackgroundTransparency = 1
  3080. Border_9.BorderSizePixel = 0
  3081. Border_9.Position = UDim2.new(0, -12, 0, -12)
  3082. Border_9.Size = UDim2.new(0, 12, 0, 12)
  3083. Border_9.ZIndex = 110
  3084. Border_9.Image = "http://www.roblox.com/asset/?id=238725003"
  3085. Border_9.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  3086. Border_9.ImageRectSize = Vector2.new(12, 12)
  3087.  
  3088. Border_10.Name = "Border"
  3089. Border_10.Parent = Borders_2
  3090. Border_10.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  3091. Border_10.BackgroundTransparency = 1
  3092. Border_10.BorderSizePixel = 0
  3093. Border_10.Position = UDim2.new(1, 0, 0, -12)
  3094. Border_10.Size = UDim2.new(0, 12, 0, 12)
  3095. Border_10.ZIndex = 110
  3096. Border_10.Image = "http://www.roblox.com/asset/?id=238725003"
  3097. Border_10.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  3098. Border_10.ImageRectOffset = Vector2.new(24, 0)
  3099. Border_10.ImageRectSize = Vector2.new(12, 12)
  3100.  
  3101. Border_11.Name = "Border"
  3102. Border_11.Parent = Borders_2
  3103. Border_11.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  3104. Border_11.BackgroundTransparency = 1
  3105. Border_11.BorderSizePixel = 0
  3106. Border_11.Position = UDim2.new(0, -12, 1, 0)
  3107. Border_11.Size = UDim2.new(0, 12, 0, 12)
  3108. Border_11.ZIndex = 110
  3109. Border_11.Image = "http://www.roblox.com/asset/?id=238725003"
  3110. Border_11.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  3111. Border_11.ImageRectOffset = Vector2.new(0, 24)
  3112. Border_11.ImageRectSize = Vector2.new(12, 12)
  3113.  
  3114. Border_12.Name = "Border"
  3115. Border_12.Parent = Borders_2
  3116. Border_12.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  3117. Border_12.BackgroundTransparency = 1
  3118. Border_12.BorderSizePixel = 0
  3119. Border_12.Position = UDim2.new(1, 0, 1, 0)
  3120. Border_12.Size = UDim2.new(0, 12, 0, 12)
  3121. Border_12.ZIndex = 110
  3122. Border_12.Image = "http://www.roblox.com/asset/?id=238725003"
  3123. Border_12.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  3124. Border_12.ImageRectOffset = Vector2.new(24, 24)
  3125. Border_12.ImageRectSize = Vector2.new(12, 12)
  3126.  
  3127. Border_13.Name = "Border"
  3128. Border_13.Parent = Borders_2
  3129. Border_13.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  3130. Border_13.BackgroundTransparency = 1
  3131. Border_13.BorderSizePixel = 0
  3132. Border_13.Position = UDim2.new(0, 0, 1, 0)
  3133. Border_13.Size = UDim2.new(1, 0, 0, 12)
  3134. Border_13.ZIndex = 110
  3135. Border_13.Image = "http://www.roblox.com/asset/?id=238725003"
  3136. Border_13.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  3137. Border_13.ImageRectOffset = Vector2.new(12, 24)
  3138. Border_13.ImageRectSize = Vector2.new(12, 12)
  3139.  
  3140. Border_14.Name = "Border"
  3141. Border_14.Parent = Borders_2
  3142. Border_14.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  3143. Border_14.BackgroundTransparency = 1
  3144. Border_14.BorderSizePixel = 0
  3145. Border_14.Position = UDim2.new(0, 0, 0, -12)
  3146. Border_14.Size = UDim2.new(1, 0, 0, 12)
  3147. Border_14.ZIndex = 110
  3148. Border_14.Image = "http://www.roblox.com/asset/?id=238725003"
  3149. Border_14.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  3150. Border_14.ImageRectOffset = Vector2.new(12, 0)
  3151. Border_14.ImageRectSize = Vector2.new(12, 12)
  3152.  
  3153. Border_15.Name = "Border"
  3154. Border_15.Parent = Borders_2
  3155. Border_15.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  3156. Border_15.BackgroundTransparency = 1
  3157. Border_15.BorderSizePixel = 0
  3158. Border_15.Position = UDim2.new(0, -12, 0, 0)
  3159. Border_15.Size = UDim2.new(0, 12, 1, 0)
  3160. Border_15.ZIndex = 110
  3161. Border_15.Image = "http://www.roblox.com/asset/?id=238725003"
  3162. Border_15.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  3163. Border_15.ImageRectOffset = Vector2.new(0, 12)
  3164. Border_15.ImageRectSize = Vector2.new(12, 12)
  3165.  
  3166. Border_16.Name = "Border"
  3167. Border_16.Parent = Borders_2
  3168. Border_16.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  3169. Border_16.BackgroundTransparency = 1
  3170. Border_16.BorderSizePixel = 0
  3171. Border_16.Position = UDim2.new(1, 0, 0, 0)
  3172. Border_16.Size = UDim2.new(0, 12, 1, 0)
  3173. Border_16.ZIndex = 110
  3174. Border_16.Image = "http://www.roblox.com/asset/?id=238725003"
  3175. Border_16.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  3176. Border_16.ImageRectOffset = Vector2.new(24, 12)
  3177. Border_16.ImageRectSize = Vector2.new(12, 12)
  3178.  
  3179. InsWin.Name = "InsWin"
  3180. InsWin.Parent = TidepoolFrame
  3181. InsWin.BackgroundColor3 = Color3.new(1, 1, 1)
  3182. InsWin.BorderSizePixel = 0
  3183. InsWin.Position = UDim2.new(0, 0, 0.34375, 0)
  3184. InsWin.Size = UDim2.new(0, 523, 0, 17)
  3185. InsWin.ZIndex = 120
  3186. InsWin.Font = Enum.Font.Highway
  3187. InsWin.Text = "Insta-Win"
  3188. InsWin.TextColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  3189. InsWin.TextScaled = true
  3190. InsWin.TextSize = 14
  3191. InsWin.TextWrapped = true
  3192.  
  3193. Borders_3.Name = "Borders"
  3194. Borders_3.Parent = InsWin
  3195. Borders_3.BackgroundColor3 = Color3.new(1, 1, 1)
  3196. Borders_3.BackgroundTransparency = 1
  3197. Borders_3.BorderSizePixel = 0
  3198. Borders_3.Size = UDim2.new(1, 0, 1, 0)
  3199. Borders_3.ZIndex = 120
  3200.  
  3201. Border_17.Name = "Border"
  3202. Border_17.Parent = Borders_3
  3203. Border_17.BackgroundColor3 = Color3.new(1, 1, 1)
  3204. Border_17.BackgroundTransparency = 1
  3205. Border_17.BorderSizePixel = 0
  3206. Border_17.Position = UDim2.new(0, -12, 0, -12)
  3207. Border_17.Size = UDim2.new(0, 12, 0, 12)
  3208. Border_17.ZIndex = 110
  3209. Border_17.Image = "http://www.roblox.com/asset/?id=238725003"
  3210. Border_17.ImageRectSize = Vector2.new(12, 12)
  3211.  
  3212. Border_18.Name = "Border"
  3213. Border_18.Parent = Borders_3
  3214. Border_18.BackgroundColor3 = Color3.new(1, 1, 1)
  3215. Border_18.BackgroundTransparency = 1
  3216. Border_18.BorderSizePixel = 0
  3217. Border_18.Position = UDim2.new(1, 0, 0, -12)
  3218. Border_18.Size = UDim2.new(0, 12, 0, 12)
  3219. Border_18.ZIndex = 110
  3220. Border_18.Image = "http://www.roblox.com/asset/?id=238725003"
  3221. Border_18.ImageRectOffset = Vector2.new(24, 0)
  3222. Border_18.ImageRectSize = Vector2.new(12, 12)
  3223.  
  3224. Border_19.Name = "Border"
  3225. Border_19.Parent = Borders_3
  3226. Border_19.BackgroundColor3 = Color3.new(1, 1, 1)
  3227. Border_19.BackgroundTransparency = 1
  3228. Border_19.BorderSizePixel = 0
  3229. Border_19.Position = UDim2.new(0, -12, 1, 0)
  3230. Border_19.Size = UDim2.new(0, 12, 0, 12)
  3231. Border_19.ZIndex = 110
  3232. Border_19.Image = "http://www.roblox.com/asset/?id=238725003"
  3233. Border_19.ImageRectOffset = Vector2.new(0, 24)
  3234. Border_19.ImageRectSize = Vector2.new(12, 12)
  3235.  
  3236. Border_20.Name = "Border"
  3237. Border_20.Parent = Borders_3
  3238. Border_20.BackgroundColor3 = Color3.new(1, 1, 1)
  3239. Border_20.BackgroundTransparency = 1
  3240. Border_20.BorderSizePixel = 0
  3241. Border_20.Position = UDim2.new(1, 0, 1, 0)
  3242. Border_20.Size = UDim2.new(0, 12, 0, 12)
  3243. Border_20.ZIndex = 110
  3244. Border_20.Image = "http://www.roblox.com/asset/?id=238725003"
  3245. Border_20.ImageRectOffset = Vector2.new(24, 24)
  3246. Border_20.ImageRectSize = Vector2.new(12, 12)
  3247.  
  3248. Border_21.Name = "Border"
  3249. Border_21.Parent = Borders_3
  3250. Border_21.BackgroundColor3 = Color3.new(1, 1, 1)
  3251. Border_21.BackgroundTransparency = 1
  3252. Border_21.BorderSizePixel = 0
  3253. Border_21.Position = UDim2.new(0, 0, 1, 0)
  3254. Border_21.Size = UDim2.new(1, 0, 0, 12)
  3255. Border_21.ZIndex = 110
  3256. Border_21.Image = "http://www.roblox.com/asset/?id=238725003"
  3257. Border_21.ImageRectOffset = Vector2.new(12, 24)
  3258. Border_21.ImageRectSize = Vector2.new(12, 12)
  3259.  
  3260. Border_22.Name = "Border"
  3261. Border_22.Parent = Borders_3
  3262. Border_22.BackgroundColor3 = Color3.new(1, 1, 1)
  3263. Border_22.BackgroundTransparency = 1
  3264. Border_22.BorderSizePixel = 0
  3265. Border_22.Position = UDim2.new(0, 0, 0, -12)
  3266. Border_22.Size = UDim2.new(1, 0, 0, 12)
  3267. Border_22.ZIndex = 110
  3268. Border_22.Image = "http://www.roblox.com/asset/?id=238725003"
  3269. Border_22.ImageRectOffset = Vector2.new(12, 0)
  3270. Border_22.ImageRectSize = Vector2.new(12, 12)
  3271.  
  3272. Border_23.Name = "Border"
  3273. Border_23.Parent = Borders_3
  3274. Border_23.BackgroundColor3 = Color3.new(1, 1, 1)
  3275. Border_23.BackgroundTransparency = 1
  3276. Border_23.BorderSizePixel = 0
  3277. Border_23.Position = UDim2.new(0, -12, 0, 0)
  3278. Border_23.Size = UDim2.new(0, 12, 1, 0)
  3279. Border_23.ZIndex = 110
  3280. Border_23.Image = "http://www.roblox.com/asset/?id=238725003"
  3281. Border_23.ImageRectOffset = Vector2.new(0, 12)
  3282. Border_23.ImageRectSize = Vector2.new(12, 12)
  3283.  
  3284. Border_24.Name = "Border"
  3285. Border_24.Parent = Borders_3
  3286. Border_24.BackgroundColor3 = Color3.new(1, 1, 1)
  3287. Border_24.BackgroundTransparency = 1
  3288. Border_24.BorderSizePixel = 0
  3289. Border_24.Position = UDim2.new(1, 0, 0, 0)
  3290. Border_24.Size = UDim2.new(0, 12, 1, 0)
  3291. Border_24.ZIndex = 110
  3292. Border_24.Image = "http://www.roblox.com/asset/?id=238725003"
  3293. Border_24.ImageRectOffset = Vector2.new(24, 12)
  3294. Border_24.ImageRectSize = Vector2.new(12, 12)
  3295.  
  3296. ChallengeInfo_2.Name = "ChallengeInfo"
  3297. ChallengeInfo_2.Parent = TidepoolFrame
  3298. ChallengeInfo_2.BackgroundColor3 = Color3.new(1, 1, 1)
  3299. ChallengeInfo_2.BackgroundTransparency = 1
  3300. ChallengeInfo_2.BorderSizePixel = 0
  3301. ChallengeInfo_2.Position = UDim2.new(0.0076481835, 0, 0, 0)
  3302. ChallengeInfo_2.Size = UDim2.new(0.99235183, 0, 0.134920642, 0)
  3303. ChallengeInfo_2.ZIndex = 120
  3304. ChallengeInfo_2.Font = Enum.Font.Highway
  3305. ChallengeInfo_2.Text = "All Tidepool Commands :"
  3306. ChallengeInfo_2.TextColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  3307. ChallengeInfo_2.TextScaled = true
  3308. ChallengeInfo_2.TextSize = 14
  3309. ChallengeInfo_2.TextWrapped = true
  3310.  
  3311. GetAGripFrame.Name = "GetAGripFrame"
  3312. GetAGripFrame.Parent = ChallengesFrame
  3313. GetAGripFrame.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  3314. GetAGripFrame.Position = UDim2.new(0, 0, 0.238670692, 0)
  3315. GetAGripFrame.Size = UDim2.new(1, 0, 0.761329293, 0)
  3316. GetAGripFrame.Visible = false
  3317. GetAGripFrame.ZIndex = 100
  3318.  
  3319. Borders_4.Name = "Borders"
  3320. Borders_4.Parent = GetAGripFrame
  3321. Borders_4.BackgroundColor3 = Color3.new(1, 1, 1)
  3322. Borders_4.BackgroundTransparency = 1
  3323. Borders_4.BorderSizePixel = 0
  3324. Borders_4.Size = UDim2.new(1, 0, 1, 0)
  3325. Borders_4.ZIndex = 120
  3326.  
  3327. Border_25.Name = "Border"
  3328. Border_25.Parent = Borders_4
  3329. Border_25.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  3330. Border_25.BackgroundTransparency = 1
  3331. Border_25.BorderSizePixel = 0
  3332. Border_25.Position = UDim2.new(0, -12, 0, -12)
  3333. Border_25.Size = UDim2.new(0, 12, 0, 12)
  3334. Border_25.ZIndex = 110
  3335. Border_25.Image = "http://www.roblox.com/asset/?id=238725003"
  3336. Border_25.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  3337. Border_25.ImageRectSize = Vector2.new(12, 12)
  3338.  
  3339. Border_26.Name = "Border"
  3340. Border_26.Parent = Borders_4
  3341. Border_26.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  3342. Border_26.BackgroundTransparency = 1
  3343. Border_26.BorderSizePixel = 0
  3344. Border_26.Position = UDim2.new(1, 0, 0, -12)
  3345. Border_26.Size = UDim2.new(0, 12, 0, 12)
  3346. Border_26.ZIndex = 110
  3347. Border_26.Image = "http://www.roblox.com/asset/?id=238725003"
  3348. Border_26.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  3349. Border_26.ImageRectOffset = Vector2.new(24, 0)
  3350. Border_26.ImageRectSize = Vector2.new(12, 12)
  3351.  
  3352. Border_27.Name = "Border"
  3353. Border_27.Parent = Borders_4
  3354. Border_27.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  3355. Border_27.BackgroundTransparency = 1
  3356. Border_27.BorderSizePixel = 0
  3357. Border_27.Position = UDim2.new(0, -12, 1, 0)
  3358. Border_27.Size = UDim2.new(0, 12, 0, 12)
  3359. Border_27.ZIndex = 110
  3360. Border_27.Image = "http://www.roblox.com/asset/?id=238725003"
  3361. Border_27.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  3362. Border_27.ImageRectOffset = Vector2.new(0, 24)
  3363. Border_27.ImageRectSize = Vector2.new(12, 12)
  3364.  
  3365. Border_28.Name = "Border"
  3366. Border_28.Parent = Borders_4
  3367. Border_28.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  3368. Border_28.BackgroundTransparency = 1
  3369. Border_28.BorderSizePixel = 0
  3370. Border_28.Position = UDim2.new(1, 0, 1, 0)
  3371. Border_28.Size = UDim2.new(0, 12, 0, 12)
  3372. Border_28.ZIndex = 110
  3373. Border_28.Image = "http://www.roblox.com/asset/?id=238725003"
  3374. Border_28.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  3375. Border_28.ImageRectOffset = Vector2.new(24, 24)
  3376. Border_28.ImageRectSize = Vector2.new(12, 12)
  3377.  
  3378. Border_29.Name = "Border"
  3379. Border_29.Parent = Borders_4
  3380. Border_29.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  3381. Border_29.BackgroundTransparency = 1
  3382. Border_29.BorderSizePixel = 0
  3383. Border_29.Position = UDim2.new(0, 0, 1, 0)
  3384. Border_29.Size = UDim2.new(1, 0, 0, 12)
  3385. Border_29.ZIndex = 110
  3386. Border_29.Image = "http://www.roblox.com/asset/?id=238725003"
  3387. Border_29.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  3388. Border_29.ImageRectOffset = Vector2.new(12, 24)
  3389. Border_29.ImageRectSize = Vector2.new(12, 12)
  3390.  
  3391. Border_30.Name = "Border"
  3392. Border_30.Parent = Borders_4
  3393. Border_30.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  3394. Border_30.BackgroundTransparency = 1
  3395. Border_30.BorderSizePixel = 0
  3396. Border_30.Position = UDim2.new(0, 0, 0, -12)
  3397. Border_30.Size = UDim2.new(1, 0, 0, 12)
  3398. Border_30.ZIndex = 110
  3399. Border_30.Image = "http://www.roblox.com/asset/?id=238725003"
  3400. Border_30.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  3401. Border_30.ImageRectOffset = Vector2.new(12, 0)
  3402. Border_30.ImageRectSize = Vector2.new(12, 12)
  3403.  
  3404. Border_31.Name = "Border"
  3405. Border_31.Parent = Borders_4
  3406. Border_31.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  3407. Border_31.BackgroundTransparency = 1
  3408. Border_31.BorderSizePixel = 0
  3409. Border_31.Position = UDim2.new(0, -12, 0, 0)
  3410. Border_31.Size = UDim2.new(0, 12, 1, 0)
  3411. Border_31.ZIndex = 110
  3412. Border_31.Image = "http://www.roblox.com/asset/?id=238725003"
  3413. Border_31.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  3414. Border_31.ImageRectOffset = Vector2.new(0, 12)
  3415. Border_31.ImageRectSize = Vector2.new(12, 12)
  3416.  
  3417. Border_32.Name = "Border"
  3418. Border_32.Parent = Borders_4
  3419. Border_32.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  3420. Border_32.BackgroundTransparency = 1
  3421. Border_32.BorderSizePixel = 0
  3422. Border_32.Position = UDim2.new(1, 0, 0, 0)
  3423. Border_32.Size = UDim2.new(0, 12, 1, 0)
  3424. Border_32.ZIndex = 110
  3425. Border_32.Image = "http://www.roblox.com/asset/?id=238725003"
  3426. Border_32.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  3427. Border_32.ImageRectOffset = Vector2.new(24, 12)
  3428. Border_32.ImageRectSize = Vector2.new(12, 12)
  3429.  
  3430. Immunity.Name = "Immunity"
  3431. Immunity.Parent = GetAGripFrame
  3432. Immunity.BackgroundColor3 = Color3.new(1, 1, 1)
  3433. Immunity.BorderSizePixel = 0
  3434. Immunity.Position = UDim2.new(0, 0, 0.34375, 0)
  3435. Immunity.Size = UDim2.new(0, 523, 0, 17)
  3436. Immunity.ZIndex = 120
  3437. Immunity.Font = Enum.Font.Highway
  3438. Immunity.Text = "Immunity"
  3439. Immunity.TextColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  3440. Immunity.TextScaled = true
  3441. Immunity.TextSize = 14
  3442. Immunity.TextWrapped = true
  3443.  
  3444. Borders_5.Name = "Borders"
  3445. Borders_5.Parent = Immunity
  3446. Borders_5.BackgroundColor3 = Color3.new(1, 1, 1)
  3447. Borders_5.BackgroundTransparency = 1
  3448. Borders_5.BorderSizePixel = 0
  3449. Borders_5.Size = UDim2.new(1, 0, 1, 0)
  3450. Borders_5.ZIndex = 120
  3451.  
  3452. Border_33.Name = "Border"
  3453. Border_33.Parent = Borders_5
  3454. Border_33.BackgroundColor3 = Color3.new(1, 1, 1)
  3455. Border_33.BackgroundTransparency = 1
  3456. Border_33.BorderSizePixel = 0
  3457. Border_33.Position = UDim2.new(0, -12, 0, -12)
  3458. Border_33.Size = UDim2.new(0, 12, 0, 12)
  3459. Border_33.ZIndex = 110
  3460. Border_33.Image = "http://www.roblox.com/asset/?id=238725003"
  3461. Border_33.ImageRectSize = Vector2.new(12, 12)
  3462.  
  3463. Border_34.Name = "Border"
  3464. Border_34.Parent = Borders_5
  3465. Border_34.BackgroundColor3 = Color3.new(1, 1, 1)
  3466. Border_34.BackgroundTransparency = 1
  3467. Border_34.BorderSizePixel = 0
  3468. Border_34.Position = UDim2.new(1, 0, 0, -12)
  3469. Border_34.Size = UDim2.new(0, 12, 0, 12)
  3470. Border_34.ZIndex = 110
  3471. Border_34.Image = "http://www.roblox.com/asset/?id=238725003"
  3472. Border_34.ImageRectOffset = Vector2.new(24, 0)
  3473. Border_34.ImageRectSize = Vector2.new(12, 12)
  3474.  
  3475. Border_35.Name = "Border"
  3476. Border_35.Parent = Borders_5
  3477. Border_35.BackgroundColor3 = Color3.new(1, 1, 1)
  3478. Border_35.BackgroundTransparency = 1
  3479. Border_35.BorderSizePixel = 0
  3480. Border_35.Position = UDim2.new(0, -12, 1, 0)
  3481. Border_35.Size = UDim2.new(0, 12, 0, 12)
  3482. Border_35.ZIndex = 110
  3483. Border_35.Image = "http://www.roblox.com/asset/?id=238725003"
  3484. Border_35.ImageRectOffset = Vector2.new(0, 24)
  3485. Border_35.ImageRectSize = Vector2.new(12, 12)
  3486.  
  3487. Border_36.Name = "Border"
  3488. Border_36.Parent = Borders_5
  3489. Border_36.BackgroundColor3 = Color3.new(1, 1, 1)
  3490. Border_36.BackgroundTransparency = 1
  3491. Border_36.BorderSizePixel = 0
  3492. Border_36.Position = UDim2.new(1, 0, 1, 0)
  3493. Border_36.Size = UDim2.new(0, 12, 0, 12)
  3494. Border_36.ZIndex = 110
  3495. Border_36.Image = "http://www.roblox.com/asset/?id=238725003"
  3496. Border_36.ImageRectOffset = Vector2.new(24, 24)
  3497. Border_36.ImageRectSize = Vector2.new(12, 12)
  3498.  
  3499. Border_37.Name = "Border"
  3500. Border_37.Parent = Borders_5
  3501. Border_37.BackgroundColor3 = Color3.new(1, 1, 1)
  3502. Border_37.BackgroundTransparency = 1
  3503. Border_37.BorderSizePixel = 0
  3504. Border_37.Position = UDim2.new(0, 0, 1, 0)
  3505. Border_37.Size = UDim2.new(1, 0, 0, 12)
  3506. Border_37.ZIndex = 110
  3507. Border_37.Image = "http://www.roblox.com/asset/?id=238725003"
  3508. Border_37.ImageRectOffset = Vector2.new(12, 24)
  3509. Border_37.ImageRectSize = Vector2.new(12, 12)
  3510.  
  3511. Border_38.Name = "Border"
  3512. Border_38.Parent = Borders_5
  3513. Border_38.BackgroundColor3 = Color3.new(1, 1, 1)
  3514. Border_38.BackgroundTransparency = 1
  3515. Border_38.BorderSizePixel = 0
  3516. Border_38.Position = UDim2.new(0, 0, 0, -12)
  3517. Border_38.Size = UDim2.new(1, 0, 0, 12)
  3518. Border_38.ZIndex = 110
  3519. Border_38.Image = "http://www.roblox.com/asset/?id=238725003"
  3520. Border_38.ImageRectOffset = Vector2.new(12, 0)
  3521. Border_38.ImageRectSize = Vector2.new(12, 12)
  3522.  
  3523. Border_39.Name = "Border"
  3524. Border_39.Parent = Borders_5
  3525. Border_39.BackgroundColor3 = Color3.new(1, 1, 1)
  3526. Border_39.BackgroundTransparency = 1
  3527. Border_39.BorderSizePixel = 0
  3528. Border_39.Position = UDim2.new(0, -12, 0, 0)
  3529. Border_39.Size = UDim2.new(0, 12, 1, 0)
  3530. Border_39.ZIndex = 110
  3531. Border_39.Image = "http://www.roblox.com/asset/?id=238725003"
  3532. Border_39.ImageRectOffset = Vector2.new(0, 12)
  3533. Border_39.ImageRectSize = Vector2.new(12, 12)
  3534.  
  3535. Border_40.Name = "Border"
  3536. Border_40.Parent = Borders_5
  3537. Border_40.BackgroundColor3 = Color3.new(1, 1, 1)
  3538. Border_40.BackgroundTransparency = 1
  3539. Border_40.BorderSizePixel = 0
  3540. Border_40.Position = UDim2.new(1, 0, 0, 0)
  3541. Border_40.Size = UDim2.new(0, 12, 1, 0)
  3542. Border_40.ZIndex = 110
  3543. Border_40.Image = "http://www.roblox.com/asset/?id=238725003"
  3544. Border_40.ImageRectOffset = Vector2.new(24, 12)
  3545. Border_40.ImageRectSize = Vector2.new(12, 12)
  3546.  
  3547. ChallengeInfo_3.Name = "ChallengeInfo"
  3548. ChallengeInfo_3.Parent = GetAGripFrame
  3549. ChallengeInfo_3.BackgroundColor3 = Color3.new(1, 1, 1)
  3550. ChallengeInfo_3.BackgroundTransparency = 1
  3551. ChallengeInfo_3.BorderSizePixel = 0
  3552. ChallengeInfo_3.Position = UDim2.new(0.0076481835, 0, 0, 0)
  3553. ChallengeInfo_3.Size = UDim2.new(0.99235183, 0, 0.134920642, 0)
  3554. ChallengeInfo_3.ZIndex = 120
  3555. ChallengeInfo_3.Font = Enum.Font.Highway
  3556. ChallengeInfo_3.Text = "All Get A Grip Commands"
  3557. ChallengeInfo_3.TextColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  3558. ChallengeInfo_3.TextScaled = true
  3559. ChallengeInfo_3.TextSize = 14
  3560. ChallengeInfo_3.TextWrapped = true
  3561.  
  3562. Playername.Name = "Playername"
  3563. Playername.Parent = GetAGripFrame
  3564. Playername.BackgroundColor3 = Color3.new(1, 1, 1)
  3565. Playername.BorderSizePixel = 0
  3566. Playername.Position = UDim2.new(-0.000956022937, 0, 0.598958313, 0)
  3567. Playername.Size = UDim2.new(1, 0, 0.0729166642, 0)
  3568. Playername.ZIndex = 120
  3569. Playername.Font = Enum.Font.Highway
  3570. Playername.PlaceholderColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  3571. Playername.Text = "Victim Name"
  3572. Playername.TextColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  3573. Playername.TextScaled = true
  3574. Playername.TextSize = 14
  3575. Playername.TextWrapped = true
  3576. Playername.TextXAlignment = Enum.TextXAlignment.Left
  3577.  
  3578. Borders_6.Name = "Borders"
  3579. Borders_6.Parent = Playername
  3580. Borders_6.BackgroundColor3 = Color3.new(1, 1, 1)
  3581. Borders_6.BackgroundTransparency = 1
  3582. Borders_6.BorderSizePixel = 0
  3583. Borders_6.Size = UDim2.new(1, 0, 1, 0)
  3584. Borders_6.ZIndex = 120
  3585.  
  3586. Border_41.Name = "Border"
  3587. Border_41.Parent = Borders_6
  3588. Border_41.BackgroundColor3 = Color3.new(1, 1, 1)
  3589. Border_41.BackgroundTransparency = 1
  3590. Border_41.BorderSizePixel = 0
  3591. Border_41.Position = UDim2.new(0, -12, 0, -12)
  3592. Border_41.Size = UDim2.new(0, 12, 0, 12)
  3593. Border_41.ZIndex = 110
  3594. Border_41.Image = "http://www.roblox.com/asset/?id=238725003"
  3595. Border_41.ImageRectSize = Vector2.new(12, 12)
  3596.  
  3597. Border_42.Name = "Border"
  3598. Border_42.Parent = Borders_6
  3599. Border_42.BackgroundColor3 = Color3.new(1, 1, 1)
  3600. Border_42.BackgroundTransparency = 1
  3601. Border_42.BorderSizePixel = 0
  3602. Border_42.Position = UDim2.new(1, 0, 0, -12)
  3603. Border_42.Size = UDim2.new(0, 12, 0, 12)
  3604. Border_42.ZIndex = 110
  3605. Border_42.Image = "http://www.roblox.com/asset/?id=238725003"
  3606. Border_42.ImageRectOffset = Vector2.new(24, 0)
  3607. Border_42.ImageRectSize = Vector2.new(12, 12)
  3608.  
  3609. Border_43.Name = "Border"
  3610. Border_43.Parent = Borders_6
  3611. Border_43.BackgroundColor3 = Color3.new(1, 1, 1)
  3612. Border_43.BackgroundTransparency = 1
  3613. Border_43.BorderSizePixel = 0
  3614. Border_43.Position = UDim2.new(0, -12, 1, 0)
  3615. Border_43.Size = UDim2.new(0, 12, 0, 12)
  3616. Border_43.ZIndex = 110
  3617. Border_43.Image = "http://www.roblox.com/asset/?id=238725003"
  3618. Border_43.ImageRectOffset = Vector2.new(0, 24)
  3619. Border_43.ImageRectSize = Vector2.new(12, 12)
  3620.  
  3621. Border_44.Name = "Border"
  3622. Border_44.Parent = Borders_6
  3623. Border_44.BackgroundColor3 = Color3.new(1, 1, 1)
  3624. Border_44.BackgroundTransparency = 1
  3625. Border_44.BorderSizePixel = 0
  3626. Border_44.Position = UDim2.new(1, 0, 1, 0)
  3627. Border_44.Size = UDim2.new(0, 12, 0, 12)
  3628. Border_44.ZIndex = 110
  3629. Border_44.Image = "http://www.roblox.com/asset/?id=238725003"
  3630. Border_44.ImageRectOffset = Vector2.new(24, 24)
  3631. Border_44.ImageRectSize = Vector2.new(12, 12)
  3632.  
  3633. Border_45.Name = "Border"
  3634. Border_45.Parent = Borders_6
  3635. Border_45.BackgroundColor3 = Color3.new(1, 1, 1)
  3636. Border_45.BackgroundTransparency = 1
  3637. Border_45.BorderSizePixel = 0
  3638. Border_45.Position = UDim2.new(0, 0, 1, 0)
  3639. Border_45.Size = UDim2.new(1, 0, 0, 12)
  3640. Border_45.ZIndex = 110
  3641. Border_45.Image = "http://www.roblox.com/asset/?id=238725003"
  3642. Border_45.ImageRectOffset = Vector2.new(12, 24)
  3643. Border_45.ImageRectSize = Vector2.new(12, 12)
  3644.  
  3645. Border_46.Name = "Border"
  3646. Border_46.Parent = Borders_6
  3647. Border_46.BackgroundColor3 = Color3.new(1, 1, 1)
  3648. Border_46.BackgroundTransparency = 1
  3649. Border_46.BorderSizePixel = 0
  3650. Border_46.Position = UDim2.new(0, 0, 0, -12)
  3651. Border_46.Size = UDim2.new(1, 0, 0, 12)
  3652. Border_46.ZIndex = 110
  3653. Border_46.Image = "http://www.roblox.com/asset/?id=238725003"
  3654. Border_46.ImageRectOffset = Vector2.new(12, 0)
  3655. Border_46.ImageRectSize = Vector2.new(12, 12)
  3656.  
  3657. Border_47.Name = "Border"
  3658. Border_47.Parent = Borders_6
  3659. Border_47.BackgroundColor3 = Color3.new(1, 1, 1)
  3660. Border_47.BackgroundTransparency = 1
  3661. Border_47.BorderSizePixel = 0
  3662. Border_47.Position = UDim2.new(0, -12, 0, 0)
  3663. Border_47.Size = UDim2.new(0, 12, 1, 0)
  3664. Border_47.ZIndex = 110
  3665. Border_47.Image = "http://www.roblox.com/asset/?id=238725003"
  3666. Border_47.ImageRectOffset = Vector2.new(0, 12)
  3667. Border_47.ImageRectSize = Vector2.new(12, 12)
  3668.  
  3669. Border_48.Name = "Border"
  3670. Border_48.Parent = Borders_6
  3671. Border_48.BackgroundColor3 = Color3.new(1, 1, 1)
  3672. Border_48.BackgroundTransparency = 1
  3673. Border_48.BorderSizePixel = 0
  3674. Border_48.Position = UDim2.new(1, 0, 0, 0)
  3675. Border_48.Size = UDim2.new(0, 12, 1, 0)
  3676. Border_48.ZIndex = 110
  3677. Border_48.Image = "http://www.roblox.com/asset/?id=238725003"
  3678. Border_48.ImageRectOffset = Vector2.new(24, 12)
  3679. Border_48.ImageRectSize = Vector2.new(12, 12)
  3680.  
  3681. ForceLose.Name = "ForceLose"
  3682. ForceLose.Parent = GetAGripFrame
  3683. ForceLose.BackgroundColor3 = Color3.new(1, 1, 1)
  3684. ForceLose.BorderSizePixel = 0
  3685. ForceLose.Position = UDim2.new(-0.000956022937, 0, 0.838541627, 0)
  3686. ForceLose.Size = UDim2.new(0, 523, 0, 17)
  3687. ForceLose.ZIndex = 120
  3688. ForceLose.Font = Enum.Font.Highway
  3689. ForceLose.Text = "Force Lose (Experimental Mode)"
  3690. ForceLose.TextColor3 = Color3.new(1, 0.333333, 0)
  3691. ForceLose.TextScaled = true
  3692. ForceLose.TextSize = 14
  3693. ForceLose.TextWrapped = true
  3694.  
  3695. Borders_7.Name = "Borders"
  3696. Borders_7.Parent = ForceLose
  3697. Borders_7.BackgroundColor3 = Color3.new(1, 1, 1)
  3698. Borders_7.BackgroundTransparency = 1
  3699. Borders_7.BorderSizePixel = 0
  3700. Borders_7.Size = UDim2.new(1, 0, 1, 0)
  3701. Borders_7.ZIndex = 120
  3702.  
  3703. Border_49.Name = "Border"
  3704. Border_49.Parent = Borders_7
  3705. Border_49.BackgroundColor3 = Color3.new(1, 1, 1)
  3706. Border_49.BackgroundTransparency = 1
  3707. Border_49.BorderSizePixel = 0
  3708. Border_49.Position = UDim2.new(0, -12, 0, -12)
  3709. Border_49.Size = UDim2.new(0, 12, 0, 12)
  3710. Border_49.ZIndex = 110
  3711. Border_49.Image = "http://www.roblox.com/asset/?id=238725003"
  3712. Border_49.ImageRectSize = Vector2.new(12, 12)
  3713.  
  3714. Border_50.Name = "Border"
  3715. Border_50.Parent = Borders_7
  3716. Border_50.BackgroundColor3 = Color3.new(1, 1, 1)
  3717. Border_50.BackgroundTransparency = 1
  3718. Border_50.BorderSizePixel = 0
  3719. Border_50.Position = UDim2.new(1, 0, 0, -12)
  3720. Border_50.Size = UDim2.new(0, 12, 0, 12)
  3721. Border_50.ZIndex = 110
  3722. Border_50.Image = "http://www.roblox.com/asset/?id=238725003"
  3723. Border_50.ImageRectOffset = Vector2.new(24, 0)
  3724. Border_50.ImageRectSize = Vector2.new(12, 12)
  3725.  
  3726. Border_51.Name = "Border"
  3727. Border_51.Parent = Borders_7
  3728. Border_51.BackgroundColor3 = Color3.new(1, 1, 1)
  3729. Border_51.BackgroundTransparency = 1
  3730. Border_51.BorderSizePixel = 0
  3731. Border_51.Position = UDim2.new(0, -12, 1, 0)
  3732. Border_51.Size = UDim2.new(0, 12, 0, 12)
  3733. Border_51.ZIndex = 110
  3734. Border_51.Image = "http://www.roblox.com/asset/?id=238725003"
  3735. Border_51.ImageRectOffset = Vector2.new(0, 24)
  3736. Border_51.ImageRectSize = Vector2.new(12, 12)
  3737.  
  3738. Border_52.Name = "Border"
  3739. Border_52.Parent = Borders_7
  3740. Border_52.BackgroundColor3 = Color3.new(1, 1, 1)
  3741. Border_52.BackgroundTransparency = 1
  3742. Border_52.BorderSizePixel = 0
  3743. Border_52.Position = UDim2.new(1, 0, 1, 0)
  3744. Border_52.Size = UDim2.new(0, 12, 0, 12)
  3745. Border_52.ZIndex = 110
  3746. Border_52.Image = "http://www.roblox.com/asset/?id=238725003"
  3747. Border_52.ImageRectOffset = Vector2.new(24, 24)
  3748. Border_52.ImageRectSize = Vector2.new(12, 12)
  3749.  
  3750. Border_53.Name = "Border"
  3751. Border_53.Parent = Borders_7
  3752. Border_53.BackgroundColor3 = Color3.new(1, 1, 1)
  3753. Border_53.BackgroundTransparency = 1
  3754. Border_53.BorderSizePixel = 0
  3755. Border_53.Position = UDim2.new(0, 0, 1, 0)
  3756. Border_53.Size = UDim2.new(1, 0, 0, 12)
  3757. Border_53.ZIndex = 110
  3758. Border_53.Image = "http://www.roblox.com/asset/?id=238725003"
  3759. Border_53.ImageRectOffset = Vector2.new(12, 24)
  3760. Border_53.ImageRectSize = Vector2.new(12, 12)
  3761.  
  3762. Border_54.Name = "Border"
  3763. Border_54.Parent = Borders_7
  3764. Border_54.BackgroundColor3 = Color3.new(1, 1, 1)
  3765. Border_54.BackgroundTransparency = 1
  3766. Border_54.BorderSizePixel = 0
  3767. Border_54.Position = UDim2.new(0, 0, 0, -12)
  3768. Border_54.Size = UDim2.new(1, 0, 0, 12)
  3769. Border_54.ZIndex = 110
  3770. Border_54.Image = "http://www.roblox.com/asset/?id=238725003"
  3771. Border_54.ImageRectOffset = Vector2.new(12, 0)
  3772. Border_54.ImageRectSize = Vector2.new(12, 12)
  3773.  
  3774. Border_55.Name = "Border"
  3775. Border_55.Parent = Borders_7
  3776. Border_55.BackgroundColor3 = Color3.new(1, 1, 1)
  3777. Border_55.BackgroundTransparency = 1
  3778. Border_55.BorderSizePixel = 0
  3779. Border_55.Position = UDim2.new(0, -12, 0, 0)
  3780. Border_55.Size = UDim2.new(0, 12, 1, 0)
  3781. Border_55.ZIndex = 110
  3782. Border_55.Image = "http://www.roblox.com/asset/?id=238725003"
  3783. Border_55.ImageRectOffset = Vector2.new(0, 12)
  3784. Border_55.ImageRectSize = Vector2.new(12, 12)
  3785.  
  3786. Border_56.Name = "Border"
  3787. Border_56.Parent = Borders_7
  3788. Border_56.BackgroundColor3 = Color3.new(1, 1, 1)
  3789. Border_56.BackgroundTransparency = 1
  3790. Border_56.BorderSizePixel = 0
  3791. Border_56.Position = UDim2.new(1, 0, 0, 0)
  3792. Border_56.Size = UDim2.new(0, 12, 1, 0)
  3793. Border_56.ZIndex = 110
  3794. Border_56.Image = "http://www.roblox.com/asset/?id=238725003"
  3795. Border_56.ImageRectOffset = Vector2.new(24, 12)
  3796. Border_56.ImageRectSize = Vector2.new(12, 12)
  3797.  
  3798. CrypticComboFrame.Name = "CrypticComboFrame"
  3799. CrypticComboFrame.Parent = ChallengesFrame
  3800. CrypticComboFrame.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  3801. CrypticComboFrame.Position = UDim2.new(0, 0, 0.238670692, 0)
  3802. CrypticComboFrame.Size = UDim2.new(1, 0, 0.761329293, 0)
  3803. CrypticComboFrame.Visible = false
  3804. CrypticComboFrame.ZIndex = 100
  3805.  
  3806. Borders_8.Name = "Borders"
  3807. Borders_8.Parent = CrypticComboFrame
  3808. Borders_8.BackgroundColor3 = Color3.new(1, 1, 1)
  3809. Borders_8.BackgroundTransparency = 1
  3810. Borders_8.BorderSizePixel = 0
  3811. Borders_8.Size = UDim2.new(1, 0, 1, 0)
  3812. Borders_8.ZIndex = 120
  3813.  
  3814. Border_57.Name = "Border"
  3815. Border_57.Parent = Borders_8
  3816. Border_57.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  3817. Border_57.BackgroundTransparency = 1
  3818. Border_57.BorderSizePixel = 0
  3819. Border_57.Position = UDim2.new(0, -12, 0, -12)
  3820. Border_57.Size = UDim2.new(0, 12, 0, 12)
  3821. Border_57.ZIndex = 110
  3822. Border_57.Image = "http://www.roblox.com/asset/?id=238725003"
  3823. Border_57.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  3824. Border_57.ImageRectSize = Vector2.new(12, 12)
  3825.  
  3826. Border_58.Name = "Border"
  3827. Border_58.Parent = Borders_8
  3828. Border_58.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  3829. Border_58.BackgroundTransparency = 1
  3830. Border_58.BorderSizePixel = 0
  3831. Border_58.Position = UDim2.new(1, 0, 0, -12)
  3832. Border_58.Size = UDim2.new(0, 12, 0, 12)
  3833. Border_58.ZIndex = 110
  3834. Border_58.Image = "http://www.roblox.com/asset/?id=238725003"
  3835. Border_58.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  3836. Border_58.ImageRectOffset = Vector2.new(24, 0)
  3837. Border_58.ImageRectSize = Vector2.new(12, 12)
  3838.  
  3839. Border_59.Name = "Border"
  3840. Border_59.Parent = Borders_8
  3841. Border_59.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  3842. Border_59.BackgroundTransparency = 1
  3843. Border_59.BorderSizePixel = 0
  3844. Border_59.Position = UDim2.new(0, -12, 1, 0)
  3845. Border_59.Size = UDim2.new(0, 12, 0, 12)
  3846. Border_59.ZIndex = 110
  3847. Border_59.Image = "http://www.roblox.com/asset/?id=238725003"
  3848. Border_59.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  3849. Border_59.ImageRectOffset = Vector2.new(0, 24)
  3850. Border_59.ImageRectSize = Vector2.new(12, 12)
  3851.  
  3852. Border_60.Name = "Border"
  3853. Border_60.Parent = Borders_8
  3854. Border_60.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  3855. Border_60.BackgroundTransparency = 1
  3856. Border_60.BorderSizePixel = 0
  3857. Border_60.Position = UDim2.new(1, 0, 1, 0)
  3858. Border_60.Size = UDim2.new(0, 12, 0, 12)
  3859. Border_60.ZIndex = 110
  3860. Border_60.Image = "http://www.roblox.com/asset/?id=238725003"
  3861. Border_60.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  3862. Border_60.ImageRectOffset = Vector2.new(24, 24)
  3863. Border_60.ImageRectSize = Vector2.new(12, 12)
  3864.  
  3865. Border_61.Name = "Border"
  3866. Border_61.Parent = Borders_8
  3867. Border_61.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  3868. Border_61.BackgroundTransparency = 1
  3869. Border_61.BorderSizePixel = 0
  3870. Border_61.Position = UDim2.new(0, 0, 1, 0)
  3871. Border_61.Size = UDim2.new(1, 0, 0, 12)
  3872. Border_61.ZIndex = 110
  3873. Border_61.Image = "http://www.roblox.com/asset/?id=238725003"
  3874. Border_61.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  3875. Border_61.ImageRectOffset = Vector2.new(12, 24)
  3876. Border_61.ImageRectSize = Vector2.new(12, 12)
  3877.  
  3878. Border_62.Name = "Border"
  3879. Border_62.Parent = Borders_8
  3880. Border_62.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  3881. Border_62.BackgroundTransparency = 1
  3882. Border_62.BorderSizePixel = 0
  3883. Border_62.Position = UDim2.new(0, 0, 0, -12)
  3884. Border_62.Size = UDim2.new(1, 0, 0, 12)
  3885. Border_62.ZIndex = 110
  3886. Border_62.Image = "http://www.roblox.com/asset/?id=238725003"
  3887. Border_62.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  3888. Border_62.ImageRectOffset = Vector2.new(12, 0)
  3889. Border_62.ImageRectSize = Vector2.new(12, 12)
  3890.  
  3891. Border_63.Name = "Border"
  3892. Border_63.Parent = Borders_8
  3893. Border_63.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  3894. Border_63.BackgroundTransparency = 1
  3895. Border_63.BorderSizePixel = 0
  3896. Border_63.Position = UDim2.new(0, -12, 0, 0)
  3897. Border_63.Size = UDim2.new(0, 12, 1, 0)
  3898. Border_63.ZIndex = 110
  3899. Border_63.Image = "http://www.roblox.com/asset/?id=238725003"
  3900. Border_63.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  3901. Border_63.ImageRectOffset = Vector2.new(0, 12)
  3902. Border_63.ImageRectSize = Vector2.new(12, 12)
  3903.  
  3904. Border_64.Name = "Border"
  3905. Border_64.Parent = Borders_8
  3906. Border_64.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  3907. Border_64.BackgroundTransparency = 1
  3908. Border_64.BorderSizePixel = 0
  3909. Border_64.Position = UDim2.new(1, 0, 0, 0)
  3910. Border_64.Size = UDim2.new(0, 12, 1, 0)
  3911. Border_64.ZIndex = 110
  3912. Border_64.Image = "http://www.roblox.com/asset/?id=238725003"
  3913. Border_64.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  3914. Border_64.ImageRectOffset = Vector2.new(24, 12)
  3915. Border_64.ImageRectSize = Vector2.new(12, 12)
  3916.  
  3917. ChallengeInfo_4.Name = "ChallengeInfo"
  3918. ChallengeInfo_4.Parent = CrypticComboFrame
  3919. ChallengeInfo_4.BackgroundColor3 = Color3.new(1, 1, 1)
  3920. ChallengeInfo_4.BackgroundTransparency = 1
  3921. ChallengeInfo_4.BorderSizePixel = 0
  3922. ChallengeInfo_4.Position = UDim2.new(0.0076481835, 0, 0, 0)
  3923. ChallengeInfo_4.Size = UDim2.new(0.99235183, 0, 0.134920642, 0)
  3924. ChallengeInfo_4.ZIndex = 120
  3925. ChallengeInfo_4.Font = Enum.Font.Highway
  3926. ChallengeInfo_4.Text = "All Cryptic Combo Commands :"
  3927. ChallengeInfo_4.TextColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  3928. ChallengeInfo_4.TextScaled = true
  3929. ChallengeInfo_4.TextSize = 14
  3930. ChallengeInfo_4.TextWrapped = true
  3931.  
  3932. BotWin.Name = "BotWin"
  3933. BotWin.Parent = CrypticComboFrame
  3934. BotWin.BackgroundColor3 = Color3.new(1, 1, 1)
  3935. BotWin.BorderSizePixel = 0
  3936. BotWin.Position = UDim2.new(0, 0, 0.34375, 0)
  3937. BotWin.Size = UDim2.new(0, 523, 0, 17)
  3938. BotWin.ZIndex = 120
  3939. BotWin.Font = Enum.Font.Highway
  3940. BotWin.Text = "Trycode"
  3941. BotWin.TextColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  3942. BotWin.TextScaled = true
  3943. BotWin.TextSize = 14
  3944. BotWin.TextWrapped = true
  3945.  
  3946. Borders_9.Name = "Borders"
  3947. Borders_9.Parent = BotWin
  3948. Borders_9.BackgroundColor3 = Color3.new(1, 1, 1)
  3949. Borders_9.BackgroundTransparency = 1
  3950. Borders_9.BorderSizePixel = 0
  3951. Borders_9.Size = UDim2.new(1, 0, 1, 0)
  3952. Borders_9.ZIndex = 120
  3953.  
  3954. Border_65.Name = "Border"
  3955. Border_65.Parent = Borders_9
  3956. Border_65.BackgroundColor3 = Color3.new(1, 1, 1)
  3957. Border_65.BackgroundTransparency = 1
  3958. Border_65.BorderSizePixel = 0
  3959. Border_65.Position = UDim2.new(0, -12, 0, -12)
  3960. Border_65.Size = UDim2.new(0, 12, 0, 12)
  3961. Border_65.ZIndex = 110
  3962. Border_65.Image = "http://www.roblox.com/asset/?id=238725003"
  3963. Border_65.ImageRectSize = Vector2.new(12, 12)
  3964.  
  3965. Border_66.Name = "Border"
  3966. Border_66.Parent = Borders_9
  3967. Border_66.BackgroundColor3 = Color3.new(1, 1, 1)
  3968. Border_66.BackgroundTransparency = 1
  3969. Border_66.BorderSizePixel = 0
  3970. Border_66.Position = UDim2.new(1, 0, 0, -12)
  3971. Border_66.Size = UDim2.new(0, 12, 0, 12)
  3972. Border_66.ZIndex = 110
  3973. Border_66.Image = "http://www.roblox.com/asset/?id=238725003"
  3974. Border_66.ImageRectOffset = Vector2.new(24, 0)
  3975. Border_66.ImageRectSize = Vector2.new(12, 12)
  3976.  
  3977. Border_67.Name = "Border"
  3978. Border_67.Parent = Borders_9
  3979. Border_67.BackgroundColor3 = Color3.new(1, 1, 1)
  3980. Border_67.BackgroundTransparency = 1
  3981. Border_67.BorderSizePixel = 0
  3982. Border_67.Position = UDim2.new(0, -12, 1, 0)
  3983. Border_67.Size = UDim2.new(0, 12, 0, 12)
  3984. Border_67.ZIndex = 110
  3985. Border_67.Image = "http://www.roblox.com/asset/?id=238725003"
  3986. Border_67.ImageRectOffset = Vector2.new(0, 24)
  3987. Border_67.ImageRectSize = Vector2.new(12, 12)
  3988.  
  3989. Border_68.Name = "Border"
  3990. Border_68.Parent = Borders_9
  3991. Border_68.BackgroundColor3 = Color3.new(1, 1, 1)
  3992. Border_68.BackgroundTransparency = 1
  3993. Border_68.BorderSizePixel = 0
  3994. Border_68.Position = UDim2.new(1, 0, 1, 0)
  3995. Border_68.Size = UDim2.new(0, 12, 0, 12)
  3996. Border_68.ZIndex = 110
  3997. Border_68.Image = "http://www.roblox.com/asset/?id=238725003"
  3998. Border_68.ImageRectOffset = Vector2.new(24, 24)
  3999. Border_68.ImageRectSize = Vector2.new(12, 12)
  4000.  
  4001. Border_69.Name = "Border"
  4002. Border_69.Parent = Borders_9
  4003. Border_69.BackgroundColor3 = Color3.new(1, 1, 1)
  4004. Border_69.BackgroundTransparency = 1
  4005. Border_69.BorderSizePixel = 0
  4006. Border_69.Position = UDim2.new(0, 0, 1, 0)
  4007. Border_69.Size = UDim2.new(1, 0, 0, 12)
  4008. Border_69.ZIndex = 110
  4009. Border_69.Image = "http://www.roblox.com/asset/?id=238725003"
  4010. Border_69.ImageRectOffset = Vector2.new(12, 24)
  4011. Border_69.ImageRectSize = Vector2.new(12, 12)
  4012.  
  4013. Border_70.Name = "Border"
  4014. Border_70.Parent = Borders_9
  4015. Border_70.BackgroundColor3 = Color3.new(1, 1, 1)
  4016. Border_70.BackgroundTransparency = 1
  4017. Border_70.BorderSizePixel = 0
  4018. Border_70.Position = UDim2.new(0, 0, 0, -12)
  4019. Border_70.Size = UDim2.new(1, 0, 0, 12)
  4020. Border_70.ZIndex = 110
  4021. Border_70.Image = "http://www.roblox.com/asset/?id=238725003"
  4022. Border_70.ImageRectOffset = Vector2.new(12, 0)
  4023. Border_70.ImageRectSize = Vector2.new(12, 12)
  4024.  
  4025. Border_71.Name = "Border"
  4026. Border_71.Parent = Borders_9
  4027. Border_71.BackgroundColor3 = Color3.new(1, 1, 1)
  4028. Border_71.BackgroundTransparency = 1
  4029. Border_71.BorderSizePixel = 0
  4030. Border_71.Position = UDim2.new(0, -12, 0, 0)
  4031. Border_71.Size = UDim2.new(0, 12, 1, 0)
  4032. Border_71.ZIndex = 110
  4033. Border_71.Image = "http://www.roblox.com/asset/?id=238725003"
  4034. Border_71.ImageRectOffset = Vector2.new(0, 12)
  4035. Border_71.ImageRectSize = Vector2.new(12, 12)
  4036.  
  4037. Border_72.Name = "Border"
  4038. Border_72.Parent = Borders_9
  4039. Border_72.BackgroundColor3 = Color3.new(1, 1, 1)
  4040. Border_72.BackgroundTransparency = 1
  4041. Border_72.BorderSizePixel = 0
  4042. Border_72.Position = UDim2.new(1, 0, 0, 0)
  4043. Border_72.Size = UDim2.new(0, 12, 1, 0)
  4044. Border_72.ZIndex = 110
  4045. Border_72.Image = "http://www.roblox.com/asset/?id=238725003"
  4046. Border_72.ImageRectOffset = Vector2.new(24, 12)
  4047. Border_72.ImageRectSize = Vector2.new(12, 12)
  4048.  
  4049. BywayBustleFrame.Name = "BywayBustleFrame"
  4050. BywayBustleFrame.Parent = ChallengesFrame
  4051. BywayBustleFrame.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4052. BywayBustleFrame.Position = UDim2.new(0, 0, 0.238670692, 0)
  4053. BywayBustleFrame.Size = UDim2.new(1, 0, 0.761329293, 0)
  4054. BywayBustleFrame.Visible = false
  4055. BywayBustleFrame.ZIndex = 100
  4056.  
  4057. Borders_10.Name = "Borders"
  4058. Borders_10.Parent = BywayBustleFrame
  4059. Borders_10.BackgroundColor3 = Color3.new(1, 1, 1)
  4060. Borders_10.BackgroundTransparency = 1
  4061. Borders_10.BorderSizePixel = 0
  4062. Borders_10.Size = UDim2.new(1, 0, 1, 0)
  4063. Borders_10.ZIndex = 120
  4064.  
  4065. Border_73.Name = "Border"
  4066. Border_73.Parent = Borders_10
  4067. Border_73.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4068. Border_73.BackgroundTransparency = 1
  4069. Border_73.BorderSizePixel = 0
  4070. Border_73.Position = UDim2.new(0, -12, 0, -12)
  4071. Border_73.Size = UDim2.new(0, 12, 0, 12)
  4072. Border_73.ZIndex = 110
  4073. Border_73.Image = "http://www.roblox.com/asset/?id=238725003"
  4074. Border_73.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4075. Border_73.ImageRectSize = Vector2.new(12, 12)
  4076.  
  4077. Border_74.Name = "Border"
  4078. Border_74.Parent = Borders_10
  4079. Border_74.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4080. Border_74.BackgroundTransparency = 1
  4081. Border_74.BorderSizePixel = 0
  4082. Border_74.Position = UDim2.new(1, 0, 0, -12)
  4083. Border_74.Size = UDim2.new(0, 12, 0, 12)
  4084. Border_74.ZIndex = 110
  4085. Border_74.Image = "http://www.roblox.com/asset/?id=238725003"
  4086. Border_74.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4087. Border_74.ImageRectOffset = Vector2.new(24, 0)
  4088. Border_74.ImageRectSize = Vector2.new(12, 12)
  4089.  
  4090. Border_75.Name = "Border"
  4091. Border_75.Parent = Borders_10
  4092. Border_75.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4093. Border_75.BackgroundTransparency = 1
  4094. Border_75.BorderSizePixel = 0
  4095. Border_75.Position = UDim2.new(0, -12, 1, 0)
  4096. Border_75.Size = UDim2.new(0, 12, 0, 12)
  4097. Border_75.ZIndex = 110
  4098. Border_75.Image = "http://www.roblox.com/asset/?id=238725003"
  4099. Border_75.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4100. Border_75.ImageRectOffset = Vector2.new(0, 24)
  4101. Border_75.ImageRectSize = Vector2.new(12, 12)
  4102.  
  4103. Border_76.Name = "Border"
  4104. Border_76.Parent = Borders_10
  4105. Border_76.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4106. Border_76.BackgroundTransparency = 1
  4107. Border_76.BorderSizePixel = 0
  4108. Border_76.Position = UDim2.new(1, 0, 1, 0)
  4109. Border_76.Size = UDim2.new(0, 12, 0, 12)
  4110. Border_76.ZIndex = 110
  4111. Border_76.Image = "http://www.roblox.com/asset/?id=238725003"
  4112. Border_76.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4113. Border_76.ImageRectOffset = Vector2.new(24, 24)
  4114. Border_76.ImageRectSize = Vector2.new(12, 12)
  4115.  
  4116. Border_77.Name = "Border"
  4117. Border_77.Parent = Borders_10
  4118. Border_77.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4119. Border_77.BackgroundTransparency = 1
  4120. Border_77.BorderSizePixel = 0
  4121. Border_77.Position = UDim2.new(0, 0, 1, 0)
  4122. Border_77.Size = UDim2.new(1, 0, 0, 12)
  4123. Border_77.ZIndex = 110
  4124. Border_77.Image = "http://www.roblox.com/asset/?id=238725003"
  4125. Border_77.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4126. Border_77.ImageRectOffset = Vector2.new(12, 24)
  4127. Border_77.ImageRectSize = Vector2.new(12, 12)
  4128.  
  4129. Border_78.Name = "Border"
  4130. Border_78.Parent = Borders_10
  4131. Border_78.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4132. Border_78.BackgroundTransparency = 1
  4133. Border_78.BorderSizePixel = 0
  4134. Border_78.Position = UDim2.new(0, 0, 0, -12)
  4135. Border_78.Size = UDim2.new(1, 0, 0, 12)
  4136. Border_78.ZIndex = 110
  4137. Border_78.Image = "http://www.roblox.com/asset/?id=238725003"
  4138. Border_78.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4139. Border_78.ImageRectOffset = Vector2.new(12, 0)
  4140. Border_78.ImageRectSize = Vector2.new(12, 12)
  4141.  
  4142. Border_79.Name = "Border"
  4143. Border_79.Parent = Borders_10
  4144. Border_79.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4145. Border_79.BackgroundTransparency = 1
  4146. Border_79.BorderSizePixel = 0
  4147. Border_79.Position = UDim2.new(0, -12, 0, 0)
  4148. Border_79.Size = UDim2.new(0, 12, 1, 0)
  4149. Border_79.ZIndex = 110
  4150. Border_79.Image = "http://www.roblox.com/asset/?id=238725003"
  4151. Border_79.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4152. Border_79.ImageRectOffset = Vector2.new(0, 12)
  4153. Border_79.ImageRectSize = Vector2.new(12, 12)
  4154.  
  4155. Border_80.Name = "Border"
  4156. Border_80.Parent = Borders_10
  4157. Border_80.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4158. Border_80.BackgroundTransparency = 1
  4159. Border_80.BorderSizePixel = 0
  4160. Border_80.Position = UDim2.new(1, 0, 0, 0)
  4161. Border_80.Size = UDim2.new(0, 12, 1, 0)
  4162. Border_80.ZIndex = 110
  4163. Border_80.Image = "http://www.roblox.com/asset/?id=238725003"
  4164. Border_80.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4165. Border_80.ImageRectOffset = Vector2.new(24, 12)
  4166. Border_80.ImageRectSize = Vector2.new(12, 12)
  4167.  
  4168. BotWin_2.Name = "BotWin"
  4169. BotWin_2.Parent = BywayBustleFrame
  4170. BotWin_2.BackgroundColor3 = Color3.new(1, 1, 1)
  4171. BotWin_2.BorderSizePixel = 0
  4172. BotWin_2.Position = UDim2.new(0, 0, 0.34375, 0)
  4173. BotWin_2.Size = UDim2.new(0, 523, 0, 17)
  4174. BotWin_2.ZIndex = 120
  4175. BotWin_2.Font = Enum.Font.Highway
  4176. BotWin_2.Text = "Bot Win"
  4177. BotWin_2.TextColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4178. BotWin_2.TextScaled = true
  4179. BotWin_2.TextSize = 14
  4180. BotWin_2.TextWrapped = true
  4181.  
  4182. Borders_11.Name = "Borders"
  4183. Borders_11.Parent = BotWin_2
  4184. Borders_11.BackgroundColor3 = Color3.new(1, 1, 1)
  4185. Borders_11.BackgroundTransparency = 1
  4186. Borders_11.BorderSizePixel = 0
  4187. Borders_11.Size = UDim2.new(1, 0, 1, 0)
  4188. Borders_11.ZIndex = 120
  4189.  
  4190. Border_81.Name = "Border"
  4191. Border_81.Parent = Borders_11
  4192. Border_81.BackgroundColor3 = Color3.new(1, 1, 1)
  4193. Border_81.BackgroundTransparency = 1
  4194. Border_81.BorderSizePixel = 0
  4195. Border_81.Position = UDim2.new(0, -12, 0, -12)
  4196. Border_81.Size = UDim2.new(0, 12, 0, 12)
  4197. Border_81.ZIndex = 110
  4198. Border_81.Image = "http://www.roblox.com/asset/?id=238725003"
  4199. Border_81.ImageRectSize = Vector2.new(12, 12)
  4200.  
  4201. Border_82.Name = "Border"
  4202. Border_82.Parent = Borders_11
  4203. Border_82.BackgroundColor3 = Color3.new(1, 1, 1)
  4204. Border_82.BackgroundTransparency = 1
  4205. Border_82.BorderSizePixel = 0
  4206. Border_82.Position = UDim2.new(1, 0, 0, -12)
  4207. Border_82.Size = UDim2.new(0, 12, 0, 12)
  4208. Border_82.ZIndex = 110
  4209. Border_82.Image = "http://www.roblox.com/asset/?id=238725003"
  4210. Border_82.ImageRectOffset = Vector2.new(24, 0)
  4211. Border_82.ImageRectSize = Vector2.new(12, 12)
  4212.  
  4213. Border_83.Name = "Border"
  4214. Border_83.Parent = Borders_11
  4215. Border_83.BackgroundColor3 = Color3.new(1, 1, 1)
  4216. Border_83.BackgroundTransparency = 1
  4217. Border_83.BorderSizePixel = 0
  4218. Border_83.Position = UDim2.new(0, -12, 1, 0)
  4219. Border_83.Size = UDim2.new(0, 12, 0, 12)
  4220. Border_83.ZIndex = 110
  4221. Border_83.Image = "http://www.roblox.com/asset/?id=238725003"
  4222. Border_83.ImageRectOffset = Vector2.new(0, 24)
  4223. Border_83.ImageRectSize = Vector2.new(12, 12)
  4224.  
  4225. Border_84.Name = "Border"
  4226. Border_84.Parent = Borders_11
  4227. Border_84.BackgroundColor3 = Color3.new(1, 1, 1)
  4228. Border_84.BackgroundTransparency = 1
  4229. Border_84.BorderSizePixel = 0
  4230. Border_84.Position = UDim2.new(1, 0, 1, 0)
  4231. Border_84.Size = UDim2.new(0, 12, 0, 12)
  4232. Border_84.ZIndex = 110
  4233. Border_84.Image = "http://www.roblox.com/asset/?id=238725003"
  4234. Border_84.ImageRectOffset = Vector2.new(24, 24)
  4235. Border_84.ImageRectSize = Vector2.new(12, 12)
  4236.  
  4237. Border_85.Name = "Border"
  4238. Border_85.Parent = Borders_11
  4239. Border_85.BackgroundColor3 = Color3.new(1, 1, 1)
  4240. Border_85.BackgroundTransparency = 1
  4241. Border_85.BorderSizePixel = 0
  4242. Border_85.Position = UDim2.new(0, 0, 1, 0)
  4243. Border_85.Size = UDim2.new(1, 0, 0, 12)
  4244. Border_85.ZIndex = 110
  4245. Border_85.Image = "http://www.roblox.com/asset/?id=238725003"
  4246. Border_85.ImageRectOffset = Vector2.new(12, 24)
  4247. Border_85.ImageRectSize = Vector2.new(12, 12)
  4248.  
  4249. Border_86.Name = "Border"
  4250. Border_86.Parent = Borders_11
  4251. Border_86.BackgroundColor3 = Color3.new(1, 1, 1)
  4252. Border_86.BackgroundTransparency = 1
  4253. Border_86.BorderSizePixel = 0
  4254. Border_86.Position = UDim2.new(0, 0, 0, -12)
  4255. Border_86.Size = UDim2.new(1, 0, 0, 12)
  4256. Border_86.ZIndex = 110
  4257. Border_86.Image = "http://www.roblox.com/asset/?id=238725003"
  4258. Border_86.ImageRectOffset = Vector2.new(12, 0)
  4259. Border_86.ImageRectSize = Vector2.new(12, 12)
  4260.  
  4261. Border_87.Name = "Border"
  4262. Border_87.Parent = Borders_11
  4263. Border_87.BackgroundColor3 = Color3.new(1, 1, 1)
  4264. Border_87.BackgroundTransparency = 1
  4265. Border_87.BorderSizePixel = 0
  4266. Border_87.Position = UDim2.new(0, -12, 0, 0)
  4267. Border_87.Size = UDim2.new(0, 12, 1, 0)
  4268. Border_87.ZIndex = 110
  4269. Border_87.Image = "http://www.roblox.com/asset/?id=238725003"
  4270. Border_87.ImageRectOffset = Vector2.new(0, 12)
  4271. Border_87.ImageRectSize = Vector2.new(12, 12)
  4272.  
  4273. Border_88.Name = "Border"
  4274. Border_88.Parent = Borders_11
  4275. Border_88.BackgroundColor3 = Color3.new(1, 1, 1)
  4276. Border_88.BackgroundTransparency = 1
  4277. Border_88.BorderSizePixel = 0
  4278. Border_88.Position = UDim2.new(1, 0, 0, 0)
  4279. Border_88.Size = UDim2.new(0, 12, 1, 0)
  4280. Border_88.ZIndex = 110
  4281. Border_88.Image = "http://www.roblox.com/asset/?id=238725003"
  4282. Border_88.ImageRectOffset = Vector2.new(24, 12)
  4283. Border_88.ImageRectSize = Vector2.new(12, 12)
  4284.  
  4285. ChallengeInfo_5.Name = "ChallengeInfo"
  4286. ChallengeInfo_5.Parent = BywayBustleFrame
  4287. ChallengeInfo_5.BackgroundColor3 = Color3.new(1, 1, 1)
  4288. ChallengeInfo_5.BackgroundTransparency = 1
  4289. ChallengeInfo_5.BorderSizePixel = 0
  4290. ChallengeInfo_5.Position = UDim2.new(0.0076481835, 0, 0, 0)
  4291. ChallengeInfo_5.Size = UDim2.new(0.99235183, 0, 0.134920642, 0)
  4292. ChallengeInfo_5.ZIndex = 120
  4293. ChallengeInfo_5.Font = Enum.Font.Highway
  4294. ChallengeInfo_5.Text = "All Byway Bustle Commands :"
  4295. ChallengeInfo_5.TextColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  4296. ChallengeInfo_5.TextScaled = true
  4297. ChallengeInfo_5.TextSize = 14
  4298. ChallengeInfo_5.TextWrapped = true
  4299.  
  4300. KeysToVictoryFrame.Name = "KeysToVictoryFrame"
  4301. KeysToVictoryFrame.Parent = ChallengesFrame
  4302. KeysToVictoryFrame.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4303. KeysToVictoryFrame.Position = UDim2.new(0, 0, 0.238670692, 0)
  4304. KeysToVictoryFrame.Size = UDim2.new(1, 0, 0.761329293, 0)
  4305. KeysToVictoryFrame.Visible = false
  4306. KeysToVictoryFrame.ZIndex = 100
  4307.  
  4308. Borders_12.Name = "Borders"
  4309. Borders_12.Parent = KeysToVictoryFrame
  4310. Borders_12.BackgroundColor3 = Color3.new(1, 1, 1)
  4311. Borders_12.BackgroundTransparency = 1
  4312. Borders_12.BorderSizePixel = 0
  4313. Borders_12.Size = UDim2.new(1, 0, 1, 0)
  4314. Borders_12.ZIndex = 120
  4315.  
  4316. Border_89.Name = "Border"
  4317. Border_89.Parent = Borders_12
  4318. Border_89.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4319. Border_89.BackgroundTransparency = 1
  4320. Border_89.BorderSizePixel = 0
  4321. Border_89.Position = UDim2.new(0, -12, 0, -12)
  4322. Border_89.Size = UDim2.new(0, 12, 0, 12)
  4323. Border_89.ZIndex = 110
  4324. Border_89.Image = "http://www.roblox.com/asset/?id=238725003"
  4325. Border_89.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4326. Border_89.ImageRectSize = Vector2.new(12, 12)
  4327.  
  4328. Border_90.Name = "Border"
  4329. Border_90.Parent = Borders_12
  4330. Border_90.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4331. Border_90.BackgroundTransparency = 1
  4332. Border_90.BorderSizePixel = 0
  4333. Border_90.Position = UDim2.new(1, 0, 0, -12)
  4334. Border_90.Size = UDim2.new(0, 12, 0, 12)
  4335. Border_90.ZIndex = 110
  4336. Border_90.Image = "http://www.roblox.com/asset/?id=238725003"
  4337. Border_90.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4338. Border_90.ImageRectOffset = Vector2.new(24, 0)
  4339. Border_90.ImageRectSize = Vector2.new(12, 12)
  4340.  
  4341. Border_91.Name = "Border"
  4342. Border_91.Parent = Borders_12
  4343. Border_91.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4344. Border_91.BackgroundTransparency = 1
  4345. Border_91.BorderSizePixel = 0
  4346. Border_91.Position = UDim2.new(0, -12, 1, 0)
  4347. Border_91.Size = UDim2.new(0, 12, 0, 12)
  4348. Border_91.ZIndex = 110
  4349. Border_91.Image = "http://www.roblox.com/asset/?id=238725003"
  4350. Border_91.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4351. Border_91.ImageRectOffset = Vector2.new(0, 24)
  4352. Border_91.ImageRectSize = Vector2.new(12, 12)
  4353.  
  4354. Border_92.Name = "Border"
  4355. Border_92.Parent = Borders_12
  4356. Border_92.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4357. Border_92.BackgroundTransparency = 1
  4358. Border_92.BorderSizePixel = 0
  4359. Border_92.Position = UDim2.new(1, 0, 1, 0)
  4360. Border_92.Size = UDim2.new(0, 12, 0, 12)
  4361. Border_92.ZIndex = 110
  4362. Border_92.Image = "http://www.roblox.com/asset/?id=238725003"
  4363. Border_92.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4364. Border_92.ImageRectOffset = Vector2.new(24, 24)
  4365. Border_92.ImageRectSize = Vector2.new(12, 12)
  4366.  
  4367. Border_93.Name = "Border"
  4368. Border_93.Parent = Borders_12
  4369. Border_93.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4370. Border_93.BackgroundTransparency = 1
  4371. Border_93.BorderSizePixel = 0
  4372. Border_93.Position = UDim2.new(0, 0, 1, 0)
  4373. Border_93.Size = UDim2.new(1, 0, 0, 12)
  4374. Border_93.ZIndex = 110
  4375. Border_93.Image = "http://www.roblox.com/asset/?id=238725003"
  4376. Border_93.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4377. Border_93.ImageRectOffset = Vector2.new(12, 24)
  4378. Border_93.ImageRectSize = Vector2.new(12, 12)
  4379.  
  4380. Border_94.Name = "Border"
  4381. Border_94.Parent = Borders_12
  4382. Border_94.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4383. Border_94.BackgroundTransparency = 1
  4384. Border_94.BorderSizePixel = 0
  4385. Border_94.Position = UDim2.new(0, 0, 0, -12)
  4386. Border_94.Size = UDim2.new(1, 0, 0, 12)
  4387. Border_94.ZIndex = 110
  4388. Border_94.Image = "http://www.roblox.com/asset/?id=238725003"
  4389. Border_94.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4390. Border_94.ImageRectOffset = Vector2.new(12, 0)
  4391. Border_94.ImageRectSize = Vector2.new(12, 12)
  4392.  
  4393. Border_95.Name = "Border"
  4394. Border_95.Parent = Borders_12
  4395. Border_95.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4396. Border_95.BackgroundTransparency = 1
  4397. Border_95.BorderSizePixel = 0
  4398. Border_95.Position = UDim2.new(0, -12, 0, 0)
  4399. Border_95.Size = UDim2.new(0, 12, 1, 0)
  4400. Border_95.ZIndex = 110
  4401. Border_95.Image = "http://www.roblox.com/asset/?id=238725003"
  4402. Border_95.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4403. Border_95.ImageRectOffset = Vector2.new(0, 12)
  4404. Border_95.ImageRectSize = Vector2.new(12, 12)
  4405.  
  4406. Border_96.Name = "Border"
  4407. Border_96.Parent = Borders_12
  4408. Border_96.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4409. Border_96.BackgroundTransparency = 1
  4410. Border_96.BorderSizePixel = 0
  4411. Border_96.Position = UDim2.new(1, 0, 0, 0)
  4412. Border_96.Size = UDim2.new(0, 12, 1, 0)
  4413. Border_96.ZIndex = 110
  4414. Border_96.Image = "http://www.roblox.com/asset/?id=238725003"
  4415. Border_96.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4416. Border_96.ImageRectOffset = Vector2.new(24, 12)
  4417. Border_96.ImageRectSize = Vector2.new(12, 12)
  4418.  
  4419. ChallengeInfo_6.Name = "ChallengeInfo"
  4420. ChallengeInfo_6.Parent = KeysToVictoryFrame
  4421. ChallengeInfo_6.BackgroundColor3 = Color3.new(1, 1, 1)
  4422. ChallengeInfo_6.BackgroundTransparency = 1
  4423. ChallengeInfo_6.BorderSizePixel = 0
  4424. ChallengeInfo_6.Position = UDim2.new(0.0076481835, 0, 0, 0)
  4425. ChallengeInfo_6.Size = UDim2.new(0.99235183, 0, 0.134920642, 0)
  4426. ChallengeInfo_6.ZIndex = 120
  4427. ChallengeInfo_6.Font = Enum.Font.Highway
  4428. ChallengeInfo_6.Text = "All Keys To Victory Commands :"
  4429. ChallengeInfo_6.TextColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  4430. ChallengeInfo_6.TextScaled = true
  4431. ChallengeInfo_6.TextSize = 14
  4432. ChallengeInfo_6.TextWrapped = true
  4433.  
  4434. BotWin_3.Name = "BotWin"
  4435. BotWin_3.Parent = KeysToVictoryFrame
  4436. BotWin_3.BackgroundColor3 = Color3.new(1, 1, 1)
  4437. BotWin_3.BorderSizePixel = 0
  4438. BotWin_3.Position = UDim2.new(0, 0, 0.34375, 0)
  4439. BotWin_3.Size = UDim2.new(0, 523, 0, 17)
  4440. BotWin_3.ZIndex = 120
  4441. BotWin_3.Font = Enum.Font.Highway
  4442. BotWin_3.Text = "Insta Win"
  4443. BotWin_3.TextColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4444. BotWin_3.TextScaled = true
  4445. BotWin_3.TextSize = 14
  4446. BotWin_3.TextWrapped = true
  4447.  
  4448. Borders_13.Name = "Borders"
  4449. Borders_13.Parent = BotWin_3
  4450. Borders_13.BackgroundColor3 = Color3.new(1, 1, 1)
  4451. Borders_13.BackgroundTransparency = 1
  4452. Borders_13.BorderSizePixel = 0
  4453. Borders_13.Size = UDim2.new(1, 0, 1, 0)
  4454. Borders_13.ZIndex = 120
  4455.  
  4456. Border_97.Name = "Border"
  4457. Border_97.Parent = Borders_13
  4458. Border_97.BackgroundColor3 = Color3.new(1, 1, 1)
  4459. Border_97.BackgroundTransparency = 1
  4460. Border_97.BorderSizePixel = 0
  4461. Border_97.Position = UDim2.new(0, -12, 0, -12)
  4462. Border_97.Size = UDim2.new(0, 12, 0, 12)
  4463. Border_97.ZIndex = 110
  4464. Border_97.Image = "http://www.roblox.com/asset/?id=238725003"
  4465. Border_97.ImageRectSize = Vector2.new(12, 12)
  4466.  
  4467. Border_98.Name = "Border"
  4468. Border_98.Parent = Borders_13
  4469. Border_98.BackgroundColor3 = Color3.new(1, 1, 1)
  4470. Border_98.BackgroundTransparency = 1
  4471. Border_98.BorderSizePixel = 0
  4472. Border_98.Position = UDim2.new(1, 0, 0, -12)
  4473. Border_98.Size = UDim2.new(0, 12, 0, 12)
  4474. Border_98.ZIndex = 110
  4475. Border_98.Image = "http://www.roblox.com/asset/?id=238725003"
  4476. Border_98.ImageRectOffset = Vector2.new(24, 0)
  4477. Border_98.ImageRectSize = Vector2.new(12, 12)
  4478.  
  4479. Border_99.Name = "Border"
  4480. Border_99.Parent = Borders_13
  4481. Border_99.BackgroundColor3 = Color3.new(1, 1, 1)
  4482. Border_99.BackgroundTransparency = 1
  4483. Border_99.BorderSizePixel = 0
  4484. Border_99.Position = UDim2.new(0, -12, 1, 0)
  4485. Border_99.Size = UDim2.new(0, 12, 0, 12)
  4486. Border_99.ZIndex = 110
  4487. Border_99.Image = "http://www.roblox.com/asset/?id=238725003"
  4488. Border_99.ImageRectOffset = Vector2.new(0, 24)
  4489. Border_99.ImageRectSize = Vector2.new(12, 12)
  4490.  
  4491. Border_100.Name = "Border"
  4492. Border_100.Parent = Borders_13
  4493. Border_100.BackgroundColor3 = Color3.new(1, 1, 1)
  4494. Border_100.BackgroundTransparency = 1
  4495. Border_100.BorderSizePixel = 0
  4496. Border_100.Position = UDim2.new(1, 0, 1, 0)
  4497. Border_100.Size = UDim2.new(0, 12, 0, 12)
  4498. Border_100.ZIndex = 110
  4499. Border_100.Image = "http://www.roblox.com/asset/?id=238725003"
  4500. Border_100.ImageRectOffset = Vector2.new(24, 24)
  4501. Border_100.ImageRectSize = Vector2.new(12, 12)
  4502.  
  4503. Border_101.Name = "Border"
  4504. Border_101.Parent = Borders_13
  4505. Border_101.BackgroundColor3 = Color3.new(1, 1, 1)
  4506. Border_101.BackgroundTransparency = 1
  4507. Border_101.BorderSizePixel = 0
  4508. Border_101.Position = UDim2.new(0, 0, 1, 0)
  4509. Border_101.Size = UDim2.new(1, 0, 0, 12)
  4510. Border_101.ZIndex = 110
  4511. Border_101.Image = "http://www.roblox.com/asset/?id=238725003"
  4512. Border_101.ImageRectOffset = Vector2.new(12, 24)
  4513. Border_101.ImageRectSize = Vector2.new(12, 12)
  4514.  
  4515. Border_102.Name = "Border"
  4516. Border_102.Parent = Borders_13
  4517. Border_102.BackgroundColor3 = Color3.new(1, 1, 1)
  4518. Border_102.BackgroundTransparency = 1
  4519. Border_102.BorderSizePixel = 0
  4520. Border_102.Position = UDim2.new(0, 0, 0, -12)
  4521. Border_102.Size = UDim2.new(1, 0, 0, 12)
  4522. Border_102.ZIndex = 110
  4523. Border_102.Image = "http://www.roblox.com/asset/?id=238725003"
  4524. Border_102.ImageRectOffset = Vector2.new(12, 0)
  4525. Border_102.ImageRectSize = Vector2.new(12, 12)
  4526.  
  4527. Border_103.Name = "Border"
  4528. Border_103.Parent = Borders_13
  4529. Border_103.BackgroundColor3 = Color3.new(1, 1, 1)
  4530. Border_103.BackgroundTransparency = 1
  4531. Border_103.BorderSizePixel = 0
  4532. Border_103.Position = UDim2.new(0, -12, 0, 0)
  4533. Border_103.Size = UDim2.new(0, 12, 1, 0)
  4534. Border_103.ZIndex = 110
  4535. Border_103.Image = "http://www.roblox.com/asset/?id=238725003"
  4536. Border_103.ImageRectOffset = Vector2.new(0, 12)
  4537. Border_103.ImageRectSize = Vector2.new(12, 12)
  4538.  
  4539. Border_104.Name = "Border"
  4540. Border_104.Parent = Borders_13
  4541. Border_104.BackgroundColor3 = Color3.new(1, 1, 1)
  4542. Border_104.BackgroundTransparency = 1
  4543. Border_104.BorderSizePixel = 0
  4544. Border_104.Position = UDim2.new(1, 0, 0, 0)
  4545. Border_104.Size = UDim2.new(0, 12, 1, 0)
  4546. Border_104.ZIndex = 110
  4547. Border_104.Image = "http://www.roblox.com/asset/?id=238725003"
  4548. Border_104.ImageRectOffset = Vector2.new(24, 12)
  4549. Border_104.ImageRectSize = Vector2.new(12, 12)
  4550.  
  4551. DiveDwellingFrame.Name = "DiveDwellingFrame"
  4552. DiveDwellingFrame.Parent = ChallengesFrame
  4553. DiveDwellingFrame.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4554. DiveDwellingFrame.Position = UDim2.new(0, 0, 0.238670692, 0)
  4555. DiveDwellingFrame.Size = UDim2.new(1, 0, 0.761329293, 0)
  4556. DiveDwellingFrame.Visible = false
  4557. DiveDwellingFrame.ZIndex = 100
  4558.  
  4559. Borders_14.Name = "Borders"
  4560. Borders_14.Parent = DiveDwellingFrame
  4561. Borders_14.BackgroundColor3 = Color3.new(1, 1, 1)
  4562. Borders_14.BackgroundTransparency = 1
  4563. Borders_14.BorderSizePixel = 0
  4564. Borders_14.Size = UDim2.new(1, 0, 1, 0)
  4565. Borders_14.ZIndex = 120
  4566.  
  4567. Border_105.Name = "Border"
  4568. Border_105.Parent = Borders_14
  4569. Border_105.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4570. Border_105.BackgroundTransparency = 1
  4571. Border_105.BorderSizePixel = 0
  4572. Border_105.Position = UDim2.new(0, -12, 0, -12)
  4573. Border_105.Size = UDim2.new(0, 12, 0, 12)
  4574. Border_105.ZIndex = 110
  4575. Border_105.Image = "http://www.roblox.com/asset/?id=238725003"
  4576. Border_105.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4577. Border_105.ImageRectSize = Vector2.new(12, 12)
  4578.  
  4579. Border_106.Name = "Border"
  4580. Border_106.Parent = Borders_14
  4581. Border_106.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4582. Border_106.BackgroundTransparency = 1
  4583. Border_106.BorderSizePixel = 0
  4584. Border_106.Position = UDim2.new(1, 0, 0, -12)
  4585. Border_106.Size = UDim2.new(0, 12, 0, 12)
  4586. Border_106.ZIndex = 110
  4587. Border_106.Image = "http://www.roblox.com/asset/?id=238725003"
  4588. Border_106.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4589. Border_106.ImageRectOffset = Vector2.new(24, 0)
  4590. Border_106.ImageRectSize = Vector2.new(12, 12)
  4591.  
  4592. Border_107.Name = "Border"
  4593. Border_107.Parent = Borders_14
  4594. Border_107.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4595. Border_107.BackgroundTransparency = 1
  4596. Border_107.BorderSizePixel = 0
  4597. Border_107.Position = UDim2.new(0, -12, 1, 0)
  4598. Border_107.Size = UDim2.new(0, 12, 0, 12)
  4599. Border_107.ZIndex = 110
  4600. Border_107.Image = "http://www.roblox.com/asset/?id=238725003"
  4601. Border_107.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4602. Border_107.ImageRectOffset = Vector2.new(0, 24)
  4603. Border_107.ImageRectSize = Vector2.new(12, 12)
  4604.  
  4605. Border_108.Name = "Border"
  4606. Border_108.Parent = Borders_14
  4607. Border_108.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4608. Border_108.BackgroundTransparency = 1
  4609. Border_108.BorderSizePixel = 0
  4610. Border_108.Position = UDim2.new(1, 0, 1, 0)
  4611. Border_108.Size = UDim2.new(0, 12, 0, 12)
  4612. Border_108.ZIndex = 110
  4613. Border_108.Image = "http://www.roblox.com/asset/?id=238725003"
  4614. Border_108.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4615. Border_108.ImageRectOffset = Vector2.new(24, 24)
  4616. Border_108.ImageRectSize = Vector2.new(12, 12)
  4617.  
  4618. Border_109.Name = "Border"
  4619. Border_109.Parent = Borders_14
  4620. Border_109.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4621. Border_109.BackgroundTransparency = 1
  4622. Border_109.BorderSizePixel = 0
  4623. Border_109.Position = UDim2.new(0, 0, 1, 0)
  4624. Border_109.Size = UDim2.new(1, 0, 0, 12)
  4625. Border_109.ZIndex = 110
  4626. Border_109.Image = "http://www.roblox.com/asset/?id=238725003"
  4627. Border_109.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4628. Border_109.ImageRectOffset = Vector2.new(12, 24)
  4629. Border_109.ImageRectSize = Vector2.new(12, 12)
  4630.  
  4631. Border_110.Name = "Border"
  4632. Border_110.Parent = Borders_14
  4633. Border_110.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4634. Border_110.BackgroundTransparency = 1
  4635. Border_110.BorderSizePixel = 0
  4636. Border_110.Position = UDim2.new(0, 0, 0, -12)
  4637. Border_110.Size = UDim2.new(1, 0, 0, 12)
  4638. Border_110.ZIndex = 110
  4639. Border_110.Image = "http://www.roblox.com/asset/?id=238725003"
  4640. Border_110.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4641. Border_110.ImageRectOffset = Vector2.new(12, 0)
  4642. Border_110.ImageRectSize = Vector2.new(12, 12)
  4643.  
  4644. Border_111.Name = "Border"
  4645. Border_111.Parent = Borders_14
  4646. Border_111.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4647. Border_111.BackgroundTransparency = 1
  4648. Border_111.BorderSizePixel = 0
  4649. Border_111.Position = UDim2.new(0, -12, 0, 0)
  4650. Border_111.Size = UDim2.new(0, 12, 1, 0)
  4651. Border_111.ZIndex = 110
  4652. Border_111.Image = "http://www.roblox.com/asset/?id=238725003"
  4653. Border_111.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4654. Border_111.ImageRectOffset = Vector2.new(0, 12)
  4655. Border_111.ImageRectSize = Vector2.new(12, 12)
  4656.  
  4657. Border_112.Name = "Border"
  4658. Border_112.Parent = Borders_14
  4659. Border_112.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4660. Border_112.BackgroundTransparency = 1
  4661. Border_112.BorderSizePixel = 0
  4662. Border_112.Position = UDim2.new(1, 0, 0, 0)
  4663. Border_112.Size = UDim2.new(0, 12, 1, 0)
  4664. Border_112.ZIndex = 110
  4665. Border_112.Image = "http://www.roblox.com/asset/?id=238725003"
  4666. Border_112.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4667. Border_112.ImageRectOffset = Vector2.new(24, 12)
  4668. Border_112.ImageRectSize = Vector2.new(12, 12)
  4669.  
  4670. ChallengeInfo_7.Name = "ChallengeInfo"
  4671. ChallengeInfo_7.Parent = DiveDwellingFrame
  4672. ChallengeInfo_7.BackgroundColor3 = Color3.new(1, 1, 1)
  4673. ChallengeInfo_7.BackgroundTransparency = 1
  4674. ChallengeInfo_7.BorderSizePixel = 0
  4675. ChallengeInfo_7.Position = UDim2.new(0.0076481835, 0, 0, 0)
  4676. ChallengeInfo_7.Size = UDim2.new(0.99235183, 0, 0.134920642, 0)
  4677. ChallengeInfo_7.ZIndex = 120
  4678. ChallengeInfo_7.Font = Enum.Font.Highway
  4679. ChallengeInfo_7.Text = "All Dive Dwelling Commands :"
  4680. ChallengeInfo_7.TextColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  4681. ChallengeInfo_7.TextScaled = true
  4682. ChallengeInfo_7.TextSize = 14
  4683. ChallengeInfo_7.TextWrapped = true
  4684.  
  4685. BotWin_4.Name = "BotWin"
  4686. BotWin_4.Parent = DiveDwellingFrame
  4687. BotWin_4.BackgroundColor3 = Color3.new(1, 1, 1)
  4688. BotWin_4.BorderSizePixel = 0
  4689. BotWin_4.Position = UDim2.new(0, 0, 0.34375, 0)
  4690. BotWin_4.Size = UDim2.new(0, 523, 0, 17)
  4691. BotWin_4.ZIndex = 120
  4692. BotWin_4.Font = Enum.Font.Highway
  4693. BotWin_4.Text = "Insta Win"
  4694. BotWin_4.TextColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4695. BotWin_4.TextScaled = true
  4696. BotWin_4.TextSize = 14
  4697. BotWin_4.TextWrapped = true
  4698.  
  4699. Borders_15.Name = "Borders"
  4700. Borders_15.Parent = BotWin_4
  4701. Borders_15.BackgroundColor3 = Color3.new(1, 1, 1)
  4702. Borders_15.BackgroundTransparency = 1
  4703. Borders_15.BorderSizePixel = 0
  4704. Borders_15.Size = UDim2.new(1, 0, 1, 0)
  4705. Borders_15.ZIndex = 120
  4706.  
  4707. Border_113.Name = "Border"
  4708. Border_113.Parent = Borders_15
  4709. Border_113.BackgroundColor3 = Color3.new(1, 1, 1)
  4710. Border_113.BackgroundTransparency = 1
  4711. Border_113.BorderSizePixel = 0
  4712. Border_113.Position = UDim2.new(0, -12, 0, -12)
  4713. Border_113.Size = UDim2.new(0, 12, 0, 12)
  4714. Border_113.ZIndex = 110
  4715. Border_113.Image = "http://www.roblox.com/asset/?id=238725003"
  4716. Border_113.ImageRectSize = Vector2.new(12, 12)
  4717.  
  4718. Border_114.Name = "Border"
  4719. Border_114.Parent = Borders_15
  4720. Border_114.BackgroundColor3 = Color3.new(1, 1, 1)
  4721. Border_114.BackgroundTransparency = 1
  4722. Border_114.BorderSizePixel = 0
  4723. Border_114.Position = UDim2.new(1, 0, 0, -12)
  4724. Border_114.Size = UDim2.new(0, 12, 0, 12)
  4725. Border_114.ZIndex = 110
  4726. Border_114.Image = "http://www.roblox.com/asset/?id=238725003"
  4727. Border_114.ImageRectOffset = Vector2.new(24, 0)
  4728. Border_114.ImageRectSize = Vector2.new(12, 12)
  4729.  
  4730. Border_115.Name = "Border"
  4731. Border_115.Parent = Borders_15
  4732. Border_115.BackgroundColor3 = Color3.new(1, 1, 1)
  4733. Border_115.BackgroundTransparency = 1
  4734. Border_115.BorderSizePixel = 0
  4735. Border_115.Position = UDim2.new(0, -12, 1, 0)
  4736. Border_115.Size = UDim2.new(0, 12, 0, 12)
  4737. Border_115.ZIndex = 110
  4738. Border_115.Image = "http://www.roblox.com/asset/?id=238725003"
  4739. Border_115.ImageRectOffset = Vector2.new(0, 24)
  4740. Border_115.ImageRectSize = Vector2.new(12, 12)
  4741.  
  4742. Border_116.Name = "Border"
  4743. Border_116.Parent = Borders_15
  4744. Border_116.BackgroundColor3 = Color3.new(1, 1, 1)
  4745. Border_116.BackgroundTransparency = 1
  4746. Border_116.BorderSizePixel = 0
  4747. Border_116.Position = UDim2.new(1, 0, 1, 0)
  4748. Border_116.Size = UDim2.new(0, 12, 0, 12)
  4749. Border_116.ZIndex = 110
  4750. Border_116.Image = "http://www.roblox.com/asset/?id=238725003"
  4751. Border_116.ImageRectOffset = Vector2.new(24, 24)
  4752. Border_116.ImageRectSize = Vector2.new(12, 12)
  4753.  
  4754. Border_117.Name = "Border"
  4755. Border_117.Parent = Borders_15
  4756. Border_117.BackgroundColor3 = Color3.new(1, 1, 1)
  4757. Border_117.BackgroundTransparency = 1
  4758. Border_117.BorderSizePixel = 0
  4759. Border_117.Position = UDim2.new(0, 0, 1, 0)
  4760. Border_117.Size = UDim2.new(1, 0, 0, 12)
  4761. Border_117.ZIndex = 110
  4762. Border_117.Image = "http://www.roblox.com/asset/?id=238725003"
  4763. Border_117.ImageRectOffset = Vector2.new(12, 24)
  4764. Border_117.ImageRectSize = Vector2.new(12, 12)
  4765.  
  4766. Border_118.Name = "Border"
  4767. Border_118.Parent = Borders_15
  4768. Border_118.BackgroundColor3 = Color3.new(1, 1, 1)
  4769. Border_118.BackgroundTransparency = 1
  4770. Border_118.BorderSizePixel = 0
  4771. Border_118.Position = UDim2.new(0, 0, 0, -12)
  4772. Border_118.Size = UDim2.new(1, 0, 0, 12)
  4773. Border_118.ZIndex = 110
  4774. Border_118.Image = "http://www.roblox.com/asset/?id=238725003"
  4775. Border_118.ImageRectOffset = Vector2.new(12, 0)
  4776. Border_118.ImageRectSize = Vector2.new(12, 12)
  4777.  
  4778. Border_119.Name = "Border"
  4779. Border_119.Parent = Borders_15
  4780. Border_119.BackgroundColor3 = Color3.new(1, 1, 1)
  4781. Border_119.BackgroundTransparency = 1
  4782. Border_119.BorderSizePixel = 0
  4783. Border_119.Position = UDim2.new(0, -12, 0, 0)
  4784. Border_119.Size = UDim2.new(0, 12, 1, 0)
  4785. Border_119.ZIndex = 110
  4786. Border_119.Image = "http://www.roblox.com/asset/?id=238725003"
  4787. Border_119.ImageRectOffset = Vector2.new(0, 12)
  4788. Border_119.ImageRectSize = Vector2.new(12, 12)
  4789.  
  4790. Border_120.Name = "Border"
  4791. Border_120.Parent = Borders_15
  4792. Border_120.BackgroundColor3 = Color3.new(1, 1, 1)
  4793. Border_120.BackgroundTransparency = 1
  4794. Border_120.BorderSizePixel = 0
  4795. Border_120.Position = UDim2.new(1, 0, 0, 0)
  4796. Border_120.Size = UDim2.new(0, 12, 1, 0)
  4797. Border_120.ZIndex = 110
  4798. Border_120.Image = "http://www.roblox.com/asset/?id=238725003"
  4799. Border_120.ImageRectOffset = Vector2.new(24, 12)
  4800. Border_120.ImageRectSize = Vector2.new(12, 12)
  4801.  
  4802. BeatToThePunchFrame.Name = "BeatToThePunchFrame"
  4803. BeatToThePunchFrame.Parent = ChallengesFrame
  4804. BeatToThePunchFrame.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4805. BeatToThePunchFrame.Position = UDim2.new(0, 0, 0.238670692, 0)
  4806. BeatToThePunchFrame.Size = UDim2.new(1, 0, 0.761329293, 0)
  4807. BeatToThePunchFrame.Visible = false
  4808. BeatToThePunchFrame.ZIndex = 100
  4809.  
  4810. Borders_16.Name = "Borders"
  4811. Borders_16.Parent = BeatToThePunchFrame
  4812. Borders_16.BackgroundColor3 = Color3.new(1, 1, 1)
  4813. Borders_16.BackgroundTransparency = 1
  4814. Borders_16.BorderSizePixel = 0
  4815. Borders_16.Size = UDim2.new(1, 0, 1, 0)
  4816. Borders_16.ZIndex = 120
  4817.  
  4818. Border_121.Name = "Border"
  4819. Border_121.Parent = Borders_16
  4820. Border_121.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4821. Border_121.BackgroundTransparency = 1
  4822. Border_121.BorderSizePixel = 0
  4823. Border_121.Position = UDim2.new(0, -12, 0, -12)
  4824. Border_121.Size = UDim2.new(0, 12, 0, 12)
  4825. Border_121.ZIndex = 110
  4826. Border_121.Image = "http://www.roblox.com/asset/?id=238725003"
  4827. Border_121.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4828. Border_121.ImageRectSize = Vector2.new(12, 12)
  4829.  
  4830. Border_122.Name = "Border"
  4831. Border_122.Parent = Borders_16
  4832. Border_122.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4833. Border_122.BackgroundTransparency = 1
  4834. Border_122.BorderSizePixel = 0
  4835. Border_122.Position = UDim2.new(1, 0, 0, -12)
  4836. Border_122.Size = UDim2.new(0, 12, 0, 12)
  4837. Border_122.ZIndex = 110
  4838. Border_122.Image = "http://www.roblox.com/asset/?id=238725003"
  4839. Border_122.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4840. Border_122.ImageRectOffset = Vector2.new(24, 0)
  4841. Border_122.ImageRectSize = Vector2.new(12, 12)
  4842.  
  4843. Border_123.Name = "Border"
  4844. Border_123.Parent = Borders_16
  4845. Border_123.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4846. Border_123.BackgroundTransparency = 1
  4847. Border_123.BorderSizePixel = 0
  4848. Border_123.Position = UDim2.new(0, -12, 1, 0)
  4849. Border_123.Size = UDim2.new(0, 12, 0, 12)
  4850. Border_123.ZIndex = 110
  4851. Border_123.Image = "http://www.roblox.com/asset/?id=238725003"
  4852. Border_123.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4853. Border_123.ImageRectOffset = Vector2.new(0, 24)
  4854. Border_123.ImageRectSize = Vector2.new(12, 12)
  4855.  
  4856. Border_124.Name = "Border"
  4857. Border_124.Parent = Borders_16
  4858. Border_124.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4859. Border_124.BackgroundTransparency = 1
  4860. Border_124.BorderSizePixel = 0
  4861. Border_124.Position = UDim2.new(1, 0, 1, 0)
  4862. Border_124.Size = UDim2.new(0, 12, 0, 12)
  4863. Border_124.ZIndex = 110
  4864. Border_124.Image = "http://www.roblox.com/asset/?id=238725003"
  4865. Border_124.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4866. Border_124.ImageRectOffset = Vector2.new(24, 24)
  4867. Border_124.ImageRectSize = Vector2.new(12, 12)
  4868.  
  4869. Border_125.Name = "Border"
  4870. Border_125.Parent = Borders_16
  4871. Border_125.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4872. Border_125.BackgroundTransparency = 1
  4873. Border_125.BorderSizePixel = 0
  4874. Border_125.Position = UDim2.new(0, 0, 1, 0)
  4875. Border_125.Size = UDim2.new(1, 0, 0, 12)
  4876. Border_125.ZIndex = 110
  4877. Border_125.Image = "http://www.roblox.com/asset/?id=238725003"
  4878. Border_125.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4879. Border_125.ImageRectOffset = Vector2.new(12, 24)
  4880. Border_125.ImageRectSize = Vector2.new(12, 12)
  4881.  
  4882. Border_126.Name = "Border"
  4883. Border_126.Parent = Borders_16
  4884. Border_126.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4885. Border_126.BackgroundTransparency = 1
  4886. Border_126.BorderSizePixel = 0
  4887. Border_126.Position = UDim2.new(0, 0, 0, -12)
  4888. Border_126.Size = UDim2.new(1, 0, 0, 12)
  4889. Border_126.ZIndex = 110
  4890. Border_126.Image = "http://www.roblox.com/asset/?id=238725003"
  4891. Border_126.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4892. Border_126.ImageRectOffset = Vector2.new(12, 0)
  4893. Border_126.ImageRectSize = Vector2.new(12, 12)
  4894.  
  4895. Border_127.Name = "Border"
  4896. Border_127.Parent = Borders_16
  4897. Border_127.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4898. Border_127.BackgroundTransparency = 1
  4899. Border_127.BorderSizePixel = 0
  4900. Border_127.Position = UDim2.new(0, -12, 0, 0)
  4901. Border_127.Size = UDim2.new(0, 12, 1, 0)
  4902. Border_127.ZIndex = 110
  4903. Border_127.Image = "http://www.roblox.com/asset/?id=238725003"
  4904. Border_127.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4905. Border_127.ImageRectOffset = Vector2.new(0, 12)
  4906. Border_127.ImageRectSize = Vector2.new(12, 12)
  4907.  
  4908. Border_128.Name = "Border"
  4909. Border_128.Parent = Borders_16
  4910. Border_128.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4911. Border_128.BackgroundTransparency = 1
  4912. Border_128.BorderSizePixel = 0
  4913. Border_128.Position = UDim2.new(1, 0, 0, 0)
  4914. Border_128.Size = UDim2.new(0, 12, 1, 0)
  4915. Border_128.ZIndex = 110
  4916. Border_128.Image = "http://www.roblox.com/asset/?id=238725003"
  4917. Border_128.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4918. Border_128.ImageRectOffset = Vector2.new(24, 12)
  4919. Border_128.ImageRectSize = Vector2.new(12, 12)
  4920.  
  4921. ChallengeInfo_8.Name = "ChallengeInfo"
  4922. ChallengeInfo_8.Parent = BeatToThePunchFrame
  4923. ChallengeInfo_8.BackgroundColor3 = Color3.new(1, 1, 1)
  4924. ChallengeInfo_8.BackgroundTransparency = 1
  4925. ChallengeInfo_8.BorderSizePixel = 0
  4926. ChallengeInfo_8.Position = UDim2.new(0.0076481835, 0, 0, 0)
  4927. ChallengeInfo_8.Size = UDim2.new(0.99235183, 0, 0.134920642, 0)
  4928. ChallengeInfo_8.ZIndex = 120
  4929. ChallengeInfo_8.Font = Enum.Font.Highway
  4930. ChallengeInfo_8.Text = "All Beat To The Punch Commands :"
  4931. ChallengeInfo_8.TextColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  4932. ChallengeInfo_8.TextScaled = true
  4933. ChallengeInfo_8.TextSize = 14
  4934. ChallengeInfo_8.TextWrapped = true
  4935.  
  4936. BotWin_5.Name = "BotWin"
  4937. BotWin_5.Parent = BeatToThePunchFrame
  4938. BotWin_5.BackgroundColor3 = Color3.new(1, 1, 1)
  4939. BotWin_5.BorderSizePixel = 0
  4940. BotWin_5.Position = UDim2.new(0, 0, 0.34375, 0)
  4941. BotWin_5.Size = UDim2.new(0, 523, 0, 17)
  4942. BotWin_5.ZIndex = 120
  4943. BotWin_5.Font = Enum.Font.Highway
  4944. BotWin_5.Text = "Insta Win"
  4945. BotWin_5.TextColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  4946. BotWin_5.TextScaled = true
  4947. BotWin_5.TextSize = 14
  4948. BotWin_5.TextWrapped = true
  4949.  
  4950. Borders_17.Name = "Borders"
  4951. Borders_17.Parent = BotWin_5
  4952. Borders_17.BackgroundColor3 = Color3.new(1, 1, 1)
  4953. Borders_17.BackgroundTransparency = 1
  4954. Borders_17.BorderSizePixel = 0
  4955. Borders_17.Size = UDim2.new(1, 0, 1, 0)
  4956. Borders_17.ZIndex = 120
  4957.  
  4958. Border_129.Name = "Border"
  4959. Border_129.Parent = Borders_17
  4960. Border_129.BackgroundColor3 = Color3.new(1, 1, 1)
  4961. Border_129.BackgroundTransparency = 1
  4962. Border_129.BorderSizePixel = 0
  4963. Border_129.Position = UDim2.new(0, -12, 0, -12)
  4964. Border_129.Size = UDim2.new(0, 12, 0, 12)
  4965. Border_129.ZIndex = 110
  4966. Border_129.Image = "http://www.roblox.com/asset/?id=238725003"
  4967. Border_129.ImageRectSize = Vector2.new(12, 12)
  4968.  
  4969. Border_130.Name = "Border"
  4970. Border_130.Parent = Borders_17
  4971. Border_130.BackgroundColor3 = Color3.new(1, 1, 1)
  4972. Border_130.BackgroundTransparency = 1
  4973. Border_130.BorderSizePixel = 0
  4974. Border_130.Position = UDim2.new(1, 0, 0, -12)
  4975. Border_130.Size = UDim2.new(0, 12, 0, 12)
  4976. Border_130.ZIndex = 110
  4977. Border_130.Image = "http://www.roblox.com/asset/?id=238725003"
  4978. Border_130.ImageRectOffset = Vector2.new(24, 0)
  4979. Border_130.ImageRectSize = Vector2.new(12, 12)
  4980.  
  4981. Border_131.Name = "Border"
  4982. Border_131.Parent = Borders_17
  4983. Border_131.BackgroundColor3 = Color3.new(1, 1, 1)
  4984. Border_131.BackgroundTransparency = 1
  4985. Border_131.BorderSizePixel = 0
  4986. Border_131.Position = UDim2.new(0, -12, 1, 0)
  4987. Border_131.Size = UDim2.new(0, 12, 0, 12)
  4988. Border_131.ZIndex = 110
  4989. Border_131.Image = "http://www.roblox.com/asset/?id=238725003"
  4990. Border_131.ImageRectOffset = Vector2.new(0, 24)
  4991. Border_131.ImageRectSize = Vector2.new(12, 12)
  4992.  
  4993. Border_132.Name = "Border"
  4994. Border_132.Parent = Borders_17
  4995. Border_132.BackgroundColor3 = Color3.new(1, 1, 1)
  4996. Border_132.BackgroundTransparency = 1
  4997. Border_132.BorderSizePixel = 0
  4998. Border_132.Position = UDim2.new(1, 0, 1, 0)
  4999. Border_132.Size = UDim2.new(0, 12, 0, 12)
  5000. Border_132.ZIndex = 110
  5001. Border_132.Image = "http://www.roblox.com/asset/?id=238725003"
  5002. Border_132.ImageRectOffset = Vector2.new(24, 24)
  5003. Border_132.ImageRectSize = Vector2.new(12, 12)
  5004.  
  5005. Border_133.Name = "Border"
  5006. Border_133.Parent = Borders_17
  5007. Border_133.BackgroundColor3 = Color3.new(1, 1, 1)
  5008. Border_133.BackgroundTransparency = 1
  5009. Border_133.BorderSizePixel = 0
  5010. Border_133.Position = UDim2.new(0, 0, 1, 0)
  5011. Border_133.Size = UDim2.new(1, 0, 0, 12)
  5012. Border_133.ZIndex = 110
  5013. Border_133.Image = "http://www.roblox.com/asset/?id=238725003"
  5014. Border_133.ImageRectOffset = Vector2.new(12, 24)
  5015. Border_133.ImageRectSize = Vector2.new(12, 12)
  5016.  
  5017. Border_134.Name = "Border"
  5018. Border_134.Parent = Borders_17
  5019. Border_134.BackgroundColor3 = Color3.new(1, 1, 1)
  5020. Border_134.BackgroundTransparency = 1
  5021. Border_134.BorderSizePixel = 0
  5022. Border_134.Position = UDim2.new(0, 0, 0, -12)
  5023. Border_134.Size = UDim2.new(1, 0, 0, 12)
  5024. Border_134.ZIndex = 110
  5025. Border_134.Image = "http://www.roblox.com/asset/?id=238725003"
  5026. Border_134.ImageRectOffset = Vector2.new(12, 0)
  5027. Border_134.ImageRectSize = Vector2.new(12, 12)
  5028.  
  5029. Border_135.Name = "Border"
  5030. Border_135.Parent = Borders_17
  5031. Border_135.BackgroundColor3 = Color3.new(1, 1, 1)
  5032. Border_135.BackgroundTransparency = 1
  5033. Border_135.BorderSizePixel = 0
  5034. Border_135.Position = UDim2.new(0, -12, 0, 0)
  5035. Border_135.Size = UDim2.new(0, 12, 1, 0)
  5036. Border_135.ZIndex = 110
  5037. Border_135.Image = "http://www.roblox.com/asset/?id=238725003"
  5038. Border_135.ImageRectOffset = Vector2.new(0, 12)
  5039. Border_135.ImageRectSize = Vector2.new(12, 12)
  5040.  
  5041. Border_136.Name = "Border"
  5042. Border_136.Parent = Borders_17
  5043. Border_136.BackgroundColor3 = Color3.new(1, 1, 1)
  5044. Border_136.BackgroundTransparency = 1
  5045. Border_136.BorderSizePixel = 0
  5046. Border_136.Position = UDim2.new(1, 0, 0, 0)
  5047. Border_136.Size = UDim2.new(0, 12, 1, 0)
  5048. Border_136.ZIndex = 110
  5049. Border_136.Image = "http://www.roblox.com/asset/?id=238725003"
  5050. Border_136.ImageRectOffset = Vector2.new(24, 12)
  5051. Border_136.ImageRectSize = Vector2.new(12, 12)
  5052.  
  5053. -- Scripts
  5054. local function GetModule ()
  5055. --[[
  5056. This Is The Data For The Survivor GUI.
  5057. Fucking Leakers...
  5058. 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.
  5059. Script Data Version : 1
  5060. GUI Version : 3
  5061. Any Other GUI Version Won't Work With This Data.
  5062. --]]
  5063. local function GraduallyMovePart (Part,EndPoint)
  5064. local Magnitude = (Part.Position-EndPoint).magnitude
  5065. local LookVector = CFrame.new((Part.Position+EndPoint)/2,EndPoint)
  5066. local Step = 0
  5067. repeat
  5068. wait()
  5069. Step = Step + 1
  5070. Part.CFrame = Part.CFrame + LookVector.lookVector
  5071. until Step >= Magnitude
  5072. end
  5073.  
  5074. local Players = game.Players
  5075. local Player = Players.LocalPlayer
  5076. local Misc = game.Workspace.Misc
  5077. local GetPlayerTribal = function()
  5078. local Teams = game.Teams
  5079. local MyTeam = Player.Team
  5080. local GameData = game.ReplicatedStorage.GameData
  5081. local Tribe1 = GameData.Tribe1Name
  5082. local Tribe2 = GameData.Tribe2Name
  5083. local TribeName = MyTeam.Name
  5084. local TribeNum = 0
  5085. local PlayerTribe = nil
  5086. local PlayerTribeNum = nil
  5087. PlayerTribe = MyTeam.Name
  5088. print("Tribe : "..MyTeam.Name)
  5089. if MyTeam.Name == Tribe1.Value then
  5090. TribeNum = 1
  5091. PlayerTribeNum = 1
  5092. elseif MyTeam.Name == Tribe2.Value then
  5093. TribeNum = 2
  5094. PlayerTribeNum = 2
  5095. end
  5096. return {Tribe = PlayerTribe, TribeNum = PlayerTribeNum}
  5097. end
  5098.  
  5099.  
  5100.  
  5101.  
  5102.  
  5103. local ScriptData = {
  5104. WlLink = "https://pastebin.com/raw/Ta5uXQh4",
  5105. VersionLink = "https://pastebin.com/raw/VEd0LQxj",
  5106. MyVersion = 3,
  5107. ModuleVersion = 1,
  5108. Players = game.Players,
  5109. Player = Players.LocalPlayer,
  5110. Mouse = Player:GetMouse(),
  5111. Misc = game.Workspace.Misc,
  5112. CheckMark = "rbxassetid://505845268",
  5113. Ts = game:GetService("TweenService"),
  5114. Tinfos = {
  5115. TweenInfo.new(
  5116. 1,
  5117. Enum.EasingStyle.Sine,
  5118. Enum.EasingDirection.Out,
  5119. 0,
  5120. false,
  5121. 0
  5122. ),
  5123. TweenInfo.new(
  5124. 0.5,
  5125. Enum.EasingStyle.Sine,
  5126. Enum.EasingDirection.Out,
  5127. 0,
  5128. false,
  5129. 0
  5130. )
  5131. },
  5132. ProfileData = {
  5133. Values = {
  5134. "Wins",
  5135. "Runner-ups",
  5136. "Idols found",
  5137. "Idols used",
  5138. "Tribal wins",
  5139. "Votes against",
  5140. "Individual wins",
  5141. "Times in Jury",
  5142. "Torches snuffed",
  5143. "Advantages used",
  5144. "Idoled out",
  5145. "Rocked out",
  5146. "Nullified votes",
  5147. "Coins"
  5148. }
  5149. },
  5150. SwitchData = {
  5151. KeysDown = {
  5152.  
  5153. },
  5154. ClickMethods = {
  5155. Teleport = false,
  5156. Destroy = false,
  5157. Debug = false,
  5158. Toggle = false
  5159. },
  5160. TotalDebugs = 0,
  5161. Flying = false,
  5162. Noclipping = false,
  5163. CAim = false,
  5164. Chathook = false
  5165. },
  5166. GetPlayerFromShortGameName = function(ShortName)
  5167. local Plr = nil
  5168. for i, v in ipairs(game.Players:GetPlayers()) do
  5169. if string.find(string.lower(v.GameName.Value),string.lower(ShortName)) ~= nil then
  5170. Plr = v
  5171. end
  5172. end
  5173. return Plr
  5174. end,
  5175. GetPlayerFromShortName = function(ShortName)
  5176. local Plr = nil
  5177. for i, v in ipairs(game.Players:GetPlayers()) do
  5178. if string.find(string.lower(v.Name),string.lower(ShortName)) ~= nil then
  5179. Plr = v
  5180. end
  5181. end
  5182. return Plr
  5183. end,
  5184. StringToArray = function(String,Separator)
  5185. local Array = {}
  5186. local ExtStr = String
  5187. for i = 0,10 do
  5188. if ExtStr == "" or ExtStr == " " then
  5189.  
  5190. else
  5191. local Start = string.find(ExtStr,Separator)
  5192. if Start ~= nil then
  5193. local Arg = string.sub(ExtStr,0,Start-1)
  5194. table.insert(Array,Arg)
  5195. ExtStr = string.sub(ExtStr,Start+1)
  5196. else
  5197. table.insert(Array,ExtStr)
  5198. ExtStr = ""
  5199. end
  5200. end
  5201. end
  5202. if string.lower(Array[1]) == "/e" then
  5203. Array[1] = nil
  5204. for i, v in pairs(Array) do
  5205. if i == 1 then
  5206.  
  5207. else
  5208. Array[i-1] = v
  5209. end
  5210. end
  5211. end
  5212. return Array
  5213. end,
  5214. GetLink = function(Link)
  5215. local Body = "Unable To Get Body."
  5216. local DefBody = Body
  5217. pcall(function()
  5218. Body = HttpGet(Link)
  5219. end)
  5220. if Body == DefBody then
  5221. pcall(function()
  5222. Body = game:HttpGet(Link)
  5223. end)
  5224. if Body == DefBody then
  5225. pcall(function()
  5226. Body = game:HttpGetAsync(Link)
  5227. end)
  5228. if Body == DefBody then
  5229. pcall(function()
  5230. Body = game:GetService("HttpService"):GetAsync(Link)
  5231. end)
  5232. return Body
  5233. else
  5234. return Body
  5235. end
  5236. else
  5237. return Body
  5238. end
  5239. else
  5240. return Body
  5241. end
  5242. end,
  5243. GetPlayerTribal = function()
  5244. local Teams = game.Teams
  5245. local MyTeam = Player.Team
  5246. local GameData = game.ReplicatedStorage.GameData
  5247. local Tribe1 = GameData.Tribe1Name
  5248. local Tribe2 = GameData.Tribe2Name
  5249. local TribeName = MyTeam.Name
  5250. local TribeNum = 0
  5251. local PlayerTribe = nil
  5252. local PlayerTribeNum = nil
  5253. PlayerTribe = MyTeam.Name
  5254. print("Tribe : "..MyTeam.Name)
  5255. if MyTeam.Name == Tribe1.Value then
  5256. TribeNum = 1
  5257. PlayerTribeNum = 1
  5258. elseif MyTeam.Name == Tribe2.Value then
  5259. TribeNum = 2
  5260. PlayerTribeNum = 2
  5261. end
  5262. return {Tribe = PlayerTribe, TribeNum = PlayerTribeNum}
  5263. end,
  5264. Funcs = {
  5265. GetCoins = function(Number)
  5266. if Number ~= nil then
  5267. local Char = Player.Character
  5268. local Coinsx = {}
  5269. for i, v in pairs(Misc:GetDescendants())do
  5270. if v.Name == "Coin" then
  5271. table.insert(Coinsx,v)
  5272. end
  5273. end
  5274. for i = 1, Number do
  5275. local v = Coinsx[i]
  5276. if v.Transparency < 0.9 then
  5277. Char.HumanoidRootPart.CFrame = v.CFrame + Vector3.new(15,10,15)
  5278. wait(1)
  5279. Char.Humanoid:MoveTo(v.CFrame.p)
  5280. wait(2)
  5281. end
  5282. end
  5283. else
  5284. local Char = Player.Character
  5285. local Coinsx = {}
  5286. for i, v in pairs(Misc:GetDescendants())do
  5287. if v.Name == "Coin" then
  5288. table.insert(Coinsx,v)
  5289. end
  5290. end
  5291. for i, v in pairs(Coinsx) do
  5292. if v.Transparency < 0.9 then
  5293. Char.HumanoidRootPart.CFrame = v.CFrame + Vector3.new(15,10,15)
  5294. wait(1)
  5295. Char.Humanoid:MoveTo(v.CFrame.p)
  5296. wait(2)
  5297. end
  5298. end
  5299. end
  5300. end,
  5301. GetPickups = function()
  5302. local Char = Player.Character
  5303. for i, v in pairs(Misc.Spawned:GetChildren())do
  5304. if string.find(v.Name,"H") == nil then
  5305. v.CFrame = Char.HumanoidRootPart.CFrame
  5306. end
  5307. end
  5308. end
  5309. },
  5310. ChallengesData = {
  5311. {
  5312. Name = "Beat to the punch",
  5313. FuncName = "BeatToThePunch"
  5314. },
  5315. {
  5316. Name = "Tidepool",
  5317. FuncName = "Tidepool"
  5318. },
  5319. {
  5320. Name = "Dive Dwelling",
  5321. FuncName = "DiveDwelling"
  5322. },
  5323. {
  5324. Name = "Get A Grip",
  5325. FuncName = "GetAGrip"
  5326. },
  5327. {
  5328. Name = "Top Of The Mount",
  5329. FuncName = "TopOfTheMount"
  5330. },
  5331. {
  5332. Name = "Byway Bustel",
  5333. FuncName = "BywayBustel"
  5334. },
  5335. {
  5336. Name = "Team Tandem",
  5337. FuncName = "TeamTandem"
  5338. },
  5339. {
  5340. Name = "Cryptic Combo",
  5341. FuncName = "CrypticCombo"
  5342. },
  5343. {
  5344. Name = "Keys to Victory",
  5345. FuncName = "KeysToVictory"
  5346. },
  5347. {
  5348. Name = "Picture Perfect",
  5349. FuncName = "PicturePerfect"
  5350. }
  5351. },
  5352. Challenges = {
  5353. KeysToVictory = function()
  5354. local Char = Player.Character
  5355. local MyTribeData = GetPlayerTribal()
  5356. local MyTribeMap = game.Workspace["Keys to Victory"].Map:FindFirstChild("tribe".. tostring(MyTribeData.TribeNum))
  5357. if MyTribeMap == nil then
  5358. MyTribeMap = game.Workspace["Team Tandem"].Map:FindFirstChild("Tribe".. tostring(MyTribeData.TribeNum))
  5359. end
  5360. local KeyHole = nil
  5361. for i, v in pairs(MyTribeMap:GetDescendants())do
  5362. if v.Name == "KeyHole" then
  5363. KeyHole = v
  5364. end
  5365. end
  5366. for i, v in pairs(MyTribeMap:GetDescendants())do
  5367. if v:IsA("MeshPart") then
  5368. Char.HumanoidRootPart.CFrame = v.CFrame
  5369. wait(0.3)
  5370. Char.HumanoidRootPart.CFrame = KeyHole.CFrame + Vector3.new(0,3,0)
  5371. wait(0.3)
  5372. end
  5373. end
  5374. end,
  5375. PicturePerfect = function()
  5376. local Char = Player.Character
  5377. local Hrp = Char.HumanoidRootPart
  5378. local MyReg = Region3.new(Hrp.Position - Vector3.new(15,15),Hrp.Position + Vector3.new(15,15))
  5379. local Parts = game.Workspace:FindPartsInRegion3(MyReg)
  5380. local MySpawn = nil
  5381. local MyRoom = nil
  5382. for i, v in pairs(Parts) do
  5383. if v.Parent == game.Workspace["Picture Perfect"].Data.Spawns then
  5384. MySpawn = v
  5385. end
  5386. end
  5387. MyRoom = game.Workspace["Picture Perfect"].Map:FindFirstChild(MySpawn.Name)
  5388. if MyRoom ~= nil then
  5389. print("room found")
  5390. for i, v in pairs(MyRoom.Blocks:GetChildren()) do
  5391. local Partener = MyRoom.Stack:FindFirstChild(v.Name)
  5392. if Partener ~= nil then
  5393. local Rod = Instance.new("RodConstraint",v)
  5394. Rod.Enabled = false
  5395. local A0 = Instance.new("Attachment",v)
  5396. local A1 = Instance.new("Attachment",Partener)
  5397. Rod.Attachment0 = A0
  5398. Rod.Attachment1 = A1
  5399. Rod.Visible = true
  5400. Rod.Color = Color3.fromRGB(0,255,0)
  5401. end
  5402. end
  5403. else
  5404. print("no room")
  5405. end
  5406. end,
  5407. CrypticCombo = function()
  5408. local Gui = Player.PlayerGui.GUIs.Center.CrypticCombo.Frame
  5409. local Checks = {}
  5410. local Txbxs = {}
  5411. for i, v in pairs({1,2,3,4}) do
  5412. local Check = Gui:FindFirstChild("Check"..tostring(v))
  5413. if Check ~= nil then
  5414. table.insert(Checks,v)
  5415. end
  5416. end
  5417. for i, v in pairs(Gui:GetChildren()) do
  5418. if v:IsA("TextBox") then
  5419. table.insert(Txbxs)
  5420. end
  5421. end
  5422. for i, v in pairs(Txbxs) do
  5423. local Staisfied = false
  5424. local Count = 0
  5425. repeat
  5426. wait()
  5427. v.Text = tostring(Count)
  5428. Count = Count + 1
  5429. for e, c in pairs(Checks) do
  5430. if c ~= nil and c.Visible == true and c.ImageTransparency == 0 then
  5431. Checks[e] = nil
  5432. Staisfied = true
  5433. end
  5434. end
  5435. until Count >= 30 or Staisfied == true
  5436. end
  5437. end,
  5438. TeamTandem = function()
  5439. local Char = Player.Character
  5440. local MyTribeData = GetPlayerTribal()
  5441. local MyTribeMap = game.Workspace["Team Tandem"].Map:FindFirstChild("tribe".. tostring(MyTribeData.TribeNum))
  5442. if MyTribeMap == nil then
  5443. MyTribeMap = game.Workspace["Team Tandem"].Map:FindFirstChild("Tribe".. tostring(MyTribeData.TribeNum))
  5444. end
  5445. for i, v in pairs(MyTribeMap:GetDescendants()) do
  5446. if v.Name == "Button" then
  5447. wait()
  5448. Char.HumanoidRootPart.CFrame = v.CFrame
  5449. end
  5450. end
  5451. end,
  5452. BeatToThePuch = function()
  5453. local Char = Player.Character
  5454. local MyTribeData = GetPlayerTribal()
  5455. local MyTribeMap = game.Workspace["Beat to the Punch"].Map:FindFirstChild("tribe".. tostring(MyTribeData.TribeNum))
  5456. if MyTribeMap == nil then
  5457. MyTribeMap = game.Workspace["Beat to the Punch"].Map:FindFirstChild("Tribe".. tostring(MyTribeData.TribeNum))
  5458. end
  5459. local Finish = MyTribeMap:FindFirstChild("Finish")
  5460. if Finish == nil then
  5461. Finish = MyTribeMap:FindFirstChild("finish")
  5462. end
  5463. for i = 0,10 do
  5464. Char.HumanoidRootPart.CFrame = Finish.CFrame + Vector3.new(0,3,0)
  5465. wait(7)
  5466. end
  5467. end,
  5468. Tidepool = function()
  5469. local Char = Player.Character
  5470. local MyTribeData = GetPlayerTribal()
  5471. local MyTribeMap = game.Workspace.Tidepool.Map:FindFirstChild("tribe".. tostring(MyTribeData.TribeNum))
  5472. if MyTribeMap == nil then
  5473. MyTribeMap = game.Workspace.Tidepool.Map:FindFirstChild("Tribe".. tostring(MyTribeData.TribeNum))
  5474. end
  5475. local StartPlate1 = MyTribeMap:FindFirstChild("StartPlate1")
  5476. if StartPlate1 == nil then
  5477. StartPlate1 = MyTribeMap:FindFirstChild("Startplate1")
  5478. end
  5479. local StartPlate2 = MyTribeMap:FindFirstChild("StartPlate2")
  5480. if StartPlate2 == nil then
  5481. StartPlate2 = MyTribeMap:FindFirstChild("Startplate2")
  5482. end
  5483. local EndPlate1 = MyTribeMap:FindFirstChild("EndPlate1")
  5484. if EndPlate1 == nil then
  5485. EndPlate1 = MyTribeMap:FindFirstChild("Endplate1")
  5486. end
  5487. local EndPlate2 = MyTribeMap:FindFirstChild("EndPlate2")
  5488. if EndPlate2 == nil then
  5489. EndPlate2 = MyTribeMap:FindFirstChild("Endplate2")
  5490. end
  5491. for i = 0,6 do
  5492. Char.HumanoidRootPart.CFrame = EndPlate1.CFrame
  5493. wait(0.5)
  5494. Char.HumanoidRootPart.CFrame = StartPlate1.CFrame
  5495. wait(0.5)
  5496. Char.HumanoidRootPart.CFrame = EndPlate2.CFrame
  5497. wait(0.5)
  5498. Char.HumanoidRootPart.CFrame = StartPlate2.CFrame
  5499. wait(0.5)
  5500. end
  5501. end,
  5502. DiveDwelling = function()
  5503. local MyTribeData = GetPlayerTribal()
  5504. local Char = Player.Character
  5505. local MyTribeMap = game.Workspace["Dive Dwelling"].Map:FindFirstChild("tribe".. tostring(MyTribeData.TribeNum))
  5506. if MyTribeMap == nil then
  5507. MyTribeMap = game.Workspace["Dive Dwelling"].Map:FindFirstChild("Tribe".. tostring(MyTribeData.TribeNum))
  5508. end
  5509. local MyPearls = MyTribeMap:FindFirstChild("Pearls")
  5510. if MyPearls == nil then
  5511. MyPearls = MyTribeMap:FindFirstChild("pearls")
  5512. end
  5513. for i, v in pairs(MyPearls:GetChildren())do
  5514. Char.HumanoidRootPart.CFrame = v.CFrame
  5515. wait(0.5)
  5516. end
  5517. end,
  5518. GetAGrip = function()
  5519. game.Players.LocalPlayer.PlayerGui.GUIs.Center.GetAGrip:Destroy()
  5520. end,
  5521. TopOfTheMount = function()
  5522. local Char = Player.Character
  5523.  
  5524. Char.HumanoidRootPart = Vector3.new(65, 12, -1490)
  5525. wait(1)
  5526. Char.Head.Anchored = true
  5527. repeat
  5528. wait(1)
  5529. until game.Workspace:FindFirstChild("Top of the Mount") == nil
  5530. Char.Head.Anchored = false
  5531. end,
  5532. BywayBustel = function()
  5533. local Char = Player.Character
  5534. local Hrp = Char.HumanoidRootPart
  5535. local Pos = Hrp.Position
  5536. local MyReigon = Region3.new(Pos - Vector3.new(5,5,5),Pos + Vector3.new(5,5,5))
  5537. local Parts = game.Workspace:FindPartsInRegion3(MyReigon)
  5538. local Numbers = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15}
  5539. local MyNum = nil
  5540. local MyRoom = nil
  5541. local Spawn = nil
  5542. for i, v in pairs(Parts) do
  5543. local Confirmed = false
  5544. for e, n in pairs(Numbers) do
  5545. if v.Name == tostring(n) then
  5546. Confirmed = true
  5547. end
  5548. end
  5549. if Confirmed == true then
  5550. if Spawn == nil and v.Parent == game.Workspace["Byway Bustle"].Data.Spawns then
  5551. Spawn = v
  5552. end
  5553. end
  5554. end
  5555. if Spawn ~= nil then
  5556. MyNum = Spawn.Name
  5557. MyRoom = game.Workspace["Byway Bustle"].Map:FindFirstChild(MyNum)
  5558. end
  5559. if MyRoom ~= nil then
  5560. local function GetMyBlock()
  5561. local Block = nil
  5562. for i, v in pairs(MyRoom.Blocks:GetChildren())do
  5563. if v.Transparency <= 0.1 then
  5564. Block = v
  5565. end
  5566. end
  5567. return Block
  5568. end
  5569. for i, v in pairs(MyRoom.Bridge:GetChildren())do
  5570. wait(0.2)
  5571. if v.Transparency >= 0.9 then
  5572. local Block = GetMyBlock()
  5573. Hrp.CFrame = Block.CFrame - Vector3.new(4,0,0)
  5574. GraduallyMovePart(Hrp,Vector3.new(v.Position.X,Hrp.Position.Y,v.Position.Z))
  5575. end
  5576. end
  5577. for i, n in pairs({"Yellow1","Yellow2","Yellow3"})do
  5578. wait(0.2)
  5579. local v = MyRoom.Hit:FindFirstChild(n)
  5580. if v ~= nil and n ~= "Yellow1" and n ~= "Yellow2" then
  5581. v = MyRoom.Hit:FindFirstChild("Yellow2")
  5582. local Block = GetMyBlock()
  5583. Hrp.CFrame = Block.CFrame - Vector3.new(4,0,0)
  5584. GraduallyMovePart(Hrp,Vector3.new(v.Position.X-2,Hrp.Position.Y,v.Position.Z))
  5585. v = MyRoom.Hit:FindFirstChild("Yellow3")
  5586. if v ~= nil then
  5587. Hrp.CFrame = Block.CFrame - Vector3.new(0,0,2.5)
  5588. GraduallyMovePart(Hrp,Vector3.new(v.Position.X,Hrp.Position.Y,v.Position.Z))
  5589. end
  5590. elseif n == "Yellow1" then
  5591. v = MyRoom.Hit:FindFirstChild("Yellow2")
  5592. if v ~= nil then
  5593. local Block = GetMyBlock()
  5594. Hrp.CFrame = Block.CFrame - Vector3.new(4,0,0)
  5595. GraduallyMovePart(Hrp,Vector3.new(v.Position.X,Hrp.Position.Y,v.Position.Z))
  5596. end
  5597. elseif n == "Yellow2" then
  5598. local Block = GetMyBlock()
  5599. Hrp.CFrame = Block.CFrame - Vector3.new(4,0,0)
  5600. GraduallyMovePart(Hrp,Vector3.new(v.Position.X-2,Hrp.Position.Y,v.Position.Z))
  5601. v = MyRoom.Hit:FindFirstChild("Yellow1")
  5602. if v ~= nil then
  5603. Hrp.CFrame = Block.CFrame + Vector3.new(0,0,2.5)
  5604. GraduallyMovePart(Hrp,Vector3.new(v.Position.X,Hrp.Position.Y,v.Position.Z))
  5605. end
  5606. end
  5607. end
  5608. end
  5609. end
  5610. },
  5611. }
  5612.  
  5613. return ScriptData
  5614. end
  5615.  
  5616. local Data = GetModule()
  5617.  
  5618. -- Objects
  5619.  
  5620. CreditsFrame = Instance.new("Frame")
  5621. QuitButton = Instance.new("ImageButton")
  5622. Borders = Instance.new("Frame")
  5623. Border = Instance.new("ImageLabel")
  5624. Border_2 = Instance.new("ImageLabel")
  5625. Border_3 = Instance.new("ImageLabel")
  5626. Border_4 = Instance.new("ImageLabel")
  5627. Border_5 = Instance.new("ImageLabel")
  5628. Borders_2 = Instance.new("Frame")
  5629. Border_6 = Instance.new("ImageLabel")
  5630. Border_7 = Instance.new("ImageLabel")
  5631. Border_8 = Instance.new("ImageLabel")
  5632. Border_9 = Instance.new("ImageLabel")
  5633. Border_10 = Instance.new("ImageLabel")
  5634. Border_11 = Instance.new("ImageLabel")
  5635. Border_12 = Instance.new("ImageLabel")
  5636. Border_13 = Instance.new("ImageLabel")
  5637. CreditsLabel = Instance.new("TextLabel")
  5638. CloseBtn = Instance.new("TextButton")
  5639. Borders_3 = Instance.new("Frame")
  5640. Border_14 = Instance.new("ImageLabel")
  5641. Border_15 = Instance.new("ImageLabel")
  5642. Border_16 = Instance.new("ImageLabel")
  5643. Border_17 = Instance.new("ImageLabel")
  5644. Border_18 = Instance.new("ImageLabel")
  5645. Border_19 = Instance.new("ImageLabel")
  5646. Border_20 = Instance.new("ImageLabel")
  5647. Border_21 = Instance.new("ImageLabel")
  5648. CreditsLabel_2 = Instance.new("TextLabel")
  5649. CreditsLabel_3 = Instance.new("TextLabel")
  5650. CreditsLabel_4 = Instance.new("TextLabel")
  5651. CreditsLabel_5 = Instance.new("TextLabel")
  5652. CreditsLabel_6 = Instance.new("TextLabel")
  5653.  
  5654. -- Properties
  5655.  
  5656. CreditsFrame.Name = "CreditsFrame"
  5657. CreditsFrame.Parent = game.StarterGui
  5658. CreditsFrame.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  5659. CreditsFrame.Position = UDim2.new(0.750366032, 0, 0.341194987, 0)
  5660. CreditsFrame.Size = UDim2.new(0.234992683, 0, 0.52044028, 0)
  5661. CreditsFrame.Visible = false
  5662. CreditsFrame.ZIndex = 100
  5663.  
  5664. QuitButton.Name = "QuitButton"
  5665. QuitButton.Parent = CreditsFrame
  5666. QuitButton.BackgroundColor3 = Color3.new(1, 1, 1)
  5667. QuitButton.BorderSizePixel = 0
  5668. QuitButton.Position = UDim2.new(0.962616801, 0, 0, 0)
  5669. QuitButton.Size = UDim2.new(0, 12, 0, 17)
  5670. QuitButton.ZIndex = 120
  5671. QuitButton.Image = "rbxassetid://1828839274"
  5672.  
  5673. Borders.Name = "Borders"
  5674. Borders.Parent = QuitButton
  5675. Borders.BackgroundColor3 = Color3.new(1, 1, 1)
  5676. Borders.BackgroundTransparency = 1
  5677. Borders.BorderSizePixel = 0
  5678. Borders.Size = UDim2.new(1, 0, 1, 0)
  5679. Borders.ZIndex = 120
  5680.  
  5681. Border.Name = "Border"
  5682. Border.Parent = Borders
  5683. Border.BackgroundColor3 = Color3.new(1, 1, 1)
  5684. Border.BackgroundTransparency = 1
  5685. Border.BorderSizePixel = 0
  5686. Border.Position = UDim2.new(0, -12, 1, 0)
  5687. Border.Size = UDim2.new(0, 12, 0, 12)
  5688. Border.ZIndex = 120
  5689. Border.Image = "http://www.roblox.com/asset/?id=238725003"
  5690. Border.ImageRectOffset = Vector2.new(0, 24)
  5691. Border.ImageRectSize = Vector2.new(12, 12)
  5692.  
  5693. Border_2.Name = "Border"
  5694. Border_2.Parent = Borders
  5695. Border_2.BackgroundColor3 = Color3.new(1, 1, 1)
  5696. Border_2.BackgroundTransparency = 1
  5697. Border_2.BorderSizePixel = 0
  5698. Border_2.Position = UDim2.new(1, 0, 1, 0)
  5699. Border_2.Size = UDim2.new(0, 12, 0, 12)
  5700. Border_2.ZIndex = 120
  5701. Border_2.Image = "http://www.roblox.com/asset/?id=238725003"
  5702. Border_2.ImageRectOffset = Vector2.new(24, 24)
  5703. Border_2.ImageRectSize = Vector2.new(12, 12)
  5704.  
  5705. Border_3.Name = "Border"
  5706. Border_3.Parent = Borders
  5707. Border_3.BackgroundColor3 = Color3.new(1, 1, 1)
  5708. Border_3.BackgroundTransparency = 1
  5709. Border_3.BorderSizePixel = 0
  5710. Border_3.Position = UDim2.new(0, 0, 1, 0)
  5711. Border_3.Size = UDim2.new(1, 0, 0, 12)
  5712. Border_3.ZIndex = 120
  5713. Border_3.Image = "http://www.roblox.com/asset/?id=238725003"
  5714. Border_3.ImageRectOffset = Vector2.new(12, 24)
  5715. Border_3.ImageRectSize = Vector2.new(12, 12)
  5716.  
  5717. Border_4.Name = "Border"
  5718. Border_4.Parent = Borders
  5719. Border_4.BackgroundColor3 = Color3.new(1, 1, 1)
  5720. Border_4.BackgroundTransparency = 1
  5721. Border_4.BorderSizePixel = 0
  5722. Border_4.Position = UDim2.new(0, -12, 0, 0)
  5723. Border_4.Size = UDim2.new(0, 12, 1, 0)
  5724. Border_4.ZIndex = 120
  5725. Border_4.Image = "http://www.roblox.com/asset/?id=238725003"
  5726. Border_4.ImageRectOffset = Vector2.new(0, 12)
  5727. Border_4.ImageRectSize = Vector2.new(12, 12)
  5728.  
  5729. Border_5.Name = "Border"
  5730. Border_5.Parent = Borders
  5731. Border_5.BackgroundColor3 = Color3.new(1, 1, 1)
  5732. Border_5.BackgroundTransparency = 1
  5733. Border_5.BorderSizePixel = 0
  5734. Border_5.Position = UDim2.new(1, 0, 0, 0)
  5735. Border_5.Size = UDim2.new(0, 12, 1, 0)
  5736. Border_5.ZIndex = 120
  5737. Border_5.Image = "http://www.roblox.com/asset/?id=238725003"
  5738. Border_5.ImageRectOffset = Vector2.new(24, 12)
  5739. Border_5.ImageRectSize = Vector2.new(12, 12)
  5740.  
  5741. Borders_2.Name = "Borders"
  5742. Borders_2.Parent = CreditsFrame
  5743. Borders_2.BackgroundColor3 = Color3.new(1, 1, 1)
  5744. Borders_2.BackgroundTransparency = 1
  5745. Borders_2.BorderSizePixel = 0
  5746. Borders_2.Size = UDim2.new(1, 0, 1, 0)
  5747. Borders_2.ZIndex = 120
  5748.  
  5749. Border_6.Name = "Border"
  5750. Border_6.Parent = Borders_2
  5751. Border_6.BackgroundColor3 = Color3.new(1, 1, 1)
  5752. Border_6.BackgroundTransparency = 1
  5753. Border_6.BorderSizePixel = 0
  5754. Border_6.Position = UDim2.new(0, -12, 0, -12)
  5755. Border_6.Size = UDim2.new(0, 12, 0, 12)
  5756. Border_6.ZIndex = 110
  5757. Border_6.Image = "http://www.roblox.com/asset/?id=238725003"
  5758. Border_6.ImageRectSize = Vector2.new(12, 12)
  5759.  
  5760. Border_7.Name = "Border"
  5761. Border_7.Parent = Borders_2
  5762. Border_7.BackgroundColor3 = Color3.new(1, 1, 1)
  5763. Border_7.BackgroundTransparency = 1
  5764. Border_7.BorderSizePixel = 0
  5765. Border_7.Position = UDim2.new(1, 0, 0, -12)
  5766. Border_7.Size = UDim2.new(0, 12, 0, 12)
  5767. Border_7.ZIndex = 110
  5768. Border_7.Image = "http://www.roblox.com/asset/?id=238725003"
  5769. Border_7.ImageRectOffset = Vector2.new(24, 0)
  5770. Border_7.ImageRectSize = Vector2.new(12, 12)
  5771.  
  5772. Border_8.Name = "Border"
  5773. Border_8.Parent = Borders_2
  5774. Border_8.BackgroundColor3 = Color3.new(1, 1, 1)
  5775. Border_8.BackgroundTransparency = 1
  5776. Border_8.BorderSizePixel = 0
  5777. Border_8.Position = UDim2.new(0, -12, 1, 0)
  5778. Border_8.Size = UDim2.new(0, 12, 0, 12)
  5779. Border_8.ZIndex = 110
  5780. Border_8.Image = "http://www.roblox.com/asset/?id=238725003"
  5781. Border_8.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  5782. Border_8.ImageRectOffset = Vector2.new(0, 24)
  5783. Border_8.ImageRectSize = Vector2.new(12, 12)
  5784.  
  5785. Border_9.Name = "Border"
  5786. Border_9.Parent = Borders_2
  5787. Border_9.BackgroundColor3 = Color3.new(1, 1, 1)
  5788. Border_9.BackgroundTransparency = 1
  5789. Border_9.BorderSizePixel = 0
  5790. Border_9.Position = UDim2.new(1, 0, 1, 0)
  5791. Border_9.Size = UDim2.new(0, 12, 0, 12)
  5792. Border_9.ZIndex = 110
  5793. Border_9.Image = "http://www.roblox.com/asset/?id=238725003"
  5794. Border_9.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  5795. Border_9.ImageRectOffset = Vector2.new(24, 24)
  5796. Border_9.ImageRectSize = Vector2.new(12, 12)
  5797.  
  5798. Border_10.Name = "Border"
  5799. Border_10.Parent = Borders_2
  5800. Border_10.BackgroundColor3 = Color3.new(1, 1, 1)
  5801. Border_10.BackgroundTransparency = 1
  5802. Border_10.BorderSizePixel = 0
  5803. Border_10.Position = UDim2.new(0, 0, 1, 0)
  5804. Border_10.Size = UDim2.new(1, 0, 0, 12)
  5805. Border_10.ZIndex = 110
  5806. Border_10.Image = "http://www.roblox.com/asset/?id=238725003"
  5807. Border_10.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  5808. Border_10.ImageRectOffset = Vector2.new(12, 24)
  5809. Border_10.ImageRectSize = Vector2.new(12, 12)
  5810.  
  5811. Border_11.Name = "Border"
  5812. Border_11.Parent = Borders_2
  5813. Border_11.BackgroundColor3 = Color3.new(1, 1, 1)
  5814. Border_11.BackgroundTransparency = 1
  5815. Border_11.BorderSizePixel = 0
  5816. Border_11.Position = UDim2.new(0, 0, 0, -12)
  5817. Border_11.Size = UDim2.new(1, 0, 0, 12)
  5818. Border_11.ZIndex = 110
  5819. Border_11.Image = "http://www.roblox.com/asset/?id=238725003"
  5820. Border_11.ImageRectOffset = Vector2.new(12, 0)
  5821. Border_11.ImageRectSize = Vector2.new(12, 12)
  5822.  
  5823. Border_12.Name = "Border"
  5824. Border_12.Parent = Borders_2
  5825. Border_12.BackgroundColor3 = Color3.new(1, 1, 1)
  5826. Border_12.BackgroundTransparency = 1
  5827. Border_12.BorderSizePixel = 0
  5828. Border_12.Position = UDim2.new(0, -12, 0, 0)
  5829. Border_12.Size = UDim2.new(0, 12, 1, 0)
  5830. Border_12.ZIndex = 110
  5831. Border_12.Image = "http://www.roblox.com/asset/?id=238725003"
  5832. Border_12.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  5833. Border_12.ImageRectOffset = Vector2.new(0, 12)
  5834. Border_12.ImageRectSize = Vector2.new(12, 12)
  5835.  
  5836. Border_13.Name = "Border"
  5837. Border_13.Parent = Borders_2
  5838. Border_13.BackgroundColor3 = Color3.new(1, 1, 1)
  5839. Border_13.BackgroundTransparency = 1
  5840. Border_13.BorderSizePixel = 0
  5841. Border_13.Position = UDim2.new(1, 0, 0, 0)
  5842. Border_13.Size = UDim2.new(0, 12, 1, 0)
  5843. Border_13.ZIndex = 110
  5844. Border_13.Image = "http://www.roblox.com/asset/?id=238725003"
  5845. Border_13.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  5846. Border_13.ImageRectOffset = Vector2.new(24, 12)
  5847. Border_13.ImageRectSize = Vector2.new(12, 12)
  5848.  
  5849. CreditsLabel.Name = "CreditsLabel"
  5850. CreditsLabel.Parent = CreditsFrame
  5851. CreditsLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  5852. CreditsLabel.BackgroundTransparency = 1
  5853. CreditsLabel.BorderSizePixel = 0
  5854. CreditsLabel.Position = UDim2.new(0, 0, 0.117824771, 0)
  5855. CreditsLabel.Size = UDim2.new(1, 0, 0.0996978879, 0)
  5856. CreditsLabel.ZIndex = 120
  5857. CreditsLabel.Font = Enum.Font.Highway
  5858. CreditsLabel.Text = "Survivor GUI Version 4.2"
  5859. CreditsLabel.TextColor3 = Color3.new(1, 1, 1)
  5860. CreditsLabel.TextScaled = true
  5861. CreditsLabel.TextSize = 14
  5862. CreditsLabel.TextWrapped = true
  5863. CreditsLabel.TextXAlignment = Enum.TextXAlignment.Left
  5864.  
  5865. CloseBtn.Name = "CloseBtn"
  5866. CloseBtn.Parent = CreditsFrame
  5867. CloseBtn.BackgroundColor3 = Color3.new(1, 1, 1)
  5868. CloseBtn.BorderSizePixel = 0
  5869. CloseBtn.Position = UDim2.new(0, 0, 0.948640466, 0)
  5870. CloseBtn.Size = UDim2.new(0, 321, 0, 17)
  5871. CloseBtn.ZIndex = 120
  5872. CloseBtn.Font = Enum.Font.Highway
  5873. CloseBtn.Text = "Close"
  5874. CloseBtn.TextColor3 = Color3.new(1, 0.333333, 0)
  5875. CloseBtn.TextScaled = true
  5876. CloseBtn.TextSize = 14
  5877. CloseBtn.TextWrapped = true
  5878.  
  5879. Borders_3.Name = "Borders"
  5880. Borders_3.Parent = CloseBtn
  5881. Borders_3.BackgroundColor3 = Color3.new(1, 1, 1)
  5882. Borders_3.BackgroundTransparency = 1
  5883. Borders_3.BorderSizePixel = 0
  5884. Borders_3.Size = UDim2.new(1, 0, 1, 0)
  5885. Borders_3.ZIndex = 120
  5886.  
  5887. Border_14.Name = "Border"
  5888. Border_14.Parent = Borders_3
  5889. Border_14.BackgroundColor3 = Color3.new(1, 1, 1)
  5890. Border_14.BackgroundTransparency = 1
  5891. Border_14.BorderSizePixel = 0
  5892. Border_14.Position = UDim2.new(0, -12, 0, -12)
  5893. Border_14.Size = UDim2.new(0, 12, 0, 12)
  5894. Border_14.ZIndex = 110
  5895. Border_14.Image = "http://www.roblox.com/asset/?id=238725003"
  5896. Border_14.ImageRectSize = Vector2.new(12, 12)
  5897.  
  5898. Border_15.Name = "Border"
  5899. Border_15.Parent = Borders_3
  5900. Border_15.BackgroundColor3 = Color3.new(1, 1, 1)
  5901. Border_15.BackgroundTransparency = 1
  5902. Border_15.BorderSizePixel = 0
  5903. Border_15.Position = UDim2.new(1, 0, 0, -12)
  5904. Border_15.Size = UDim2.new(0, 12, 0, 12)
  5905. Border_15.ZIndex = 110
  5906. Border_15.Image = "http://www.roblox.com/asset/?id=238725003"
  5907. Border_15.ImageRectOffset = Vector2.new(24, 0)
  5908. Border_15.ImageRectSize = Vector2.new(12, 12)
  5909.  
  5910. Border_16.Name = "Border"
  5911. Border_16.Parent = Borders_3
  5912. Border_16.BackgroundColor3 = Color3.new(1, 1, 1)
  5913. Border_16.BackgroundTransparency = 1
  5914. Border_16.BorderSizePixel = 0
  5915. Border_16.Position = UDim2.new(0, -12, 1, 0)
  5916. Border_16.Size = UDim2.new(0, 12, 0, 12)
  5917. Border_16.ZIndex = 110
  5918. Border_16.Image = "http://www.roblox.com/asset/?id=238725003"
  5919. Border_16.ImageRectOffset = Vector2.new(0, 24)
  5920. Border_16.ImageRectSize = Vector2.new(12, 12)
  5921.  
  5922. Border_17.Name = "Border"
  5923. Border_17.Parent = Borders_3
  5924. Border_17.BackgroundColor3 = Color3.new(1, 1, 1)
  5925. Border_17.BackgroundTransparency = 1
  5926. Border_17.BorderSizePixel = 0
  5927. Border_17.Position = UDim2.new(1, 0, 1, 0)
  5928. Border_17.Size = UDim2.new(0, 12, 0, 12)
  5929. Border_17.ZIndex = 110
  5930. Border_17.Image = "http://www.roblox.com/asset/?id=238725003"
  5931. Border_17.ImageRectOffset = Vector2.new(24, 24)
  5932. Border_17.ImageRectSize = Vector2.new(12, 12)
  5933.  
  5934. Border_18.Name = "Border"
  5935. Border_18.Parent = Borders_3
  5936. Border_18.BackgroundColor3 = Color3.new(1, 1, 1)
  5937. Border_18.BackgroundTransparency = 1
  5938. Border_18.BorderSizePixel = 0
  5939. Border_18.Position = UDim2.new(0, 0, 1, 0)
  5940. Border_18.Size = UDim2.new(1, 0, 0, 12)
  5941. Border_18.ZIndex = 110
  5942. Border_18.Image = "http://www.roblox.com/asset/?id=238725003"
  5943. Border_18.ImageRectOffset = Vector2.new(12, 24)
  5944. Border_18.ImageRectSize = Vector2.new(12, 12)
  5945.  
  5946. Border_19.Name = "Border"
  5947. Border_19.Parent = Borders_3
  5948. Border_19.BackgroundColor3 = Color3.new(1, 1, 1)
  5949. Border_19.BackgroundTransparency = 1
  5950. Border_19.BorderSizePixel = 0
  5951. Border_19.Position = UDim2.new(0, 0, 0, -12)
  5952. Border_19.Size = UDim2.new(1, 0, 0, 12)
  5953. Border_19.ZIndex = 110
  5954. Border_19.Image = "http://www.roblox.com/asset/?id=238725003"
  5955. Border_19.ImageRectOffset = Vector2.new(12, 0)
  5956. Border_19.ImageRectSize = Vector2.new(12, 12)
  5957.  
  5958. Border_20.Name = "Border"
  5959. Border_20.Parent = Borders_3
  5960. Border_20.BackgroundColor3 = Color3.new(1, 1, 1)
  5961. Border_20.BackgroundTransparency = 1
  5962. Border_20.BorderSizePixel = 0
  5963. Border_20.Position = UDim2.new(0, -12, 0, 0)
  5964. Border_20.Size = UDim2.new(0, 12, 1, 0)
  5965. Border_20.ZIndex = 110
  5966. Border_20.Image = "http://www.roblox.com/asset/?id=238725003"
  5967. Border_20.ImageRectOffset = Vector2.new(0, 12)
  5968. Border_20.ImageRectSize = Vector2.new(12, 12)
  5969.  
  5970. Border_21.Name = "Border"
  5971. Border_21.Parent = Borders_3
  5972. Border_21.BackgroundColor3 = Color3.new(1, 1, 1)
  5973. Border_21.BackgroundTransparency = 1
  5974. Border_21.BorderSizePixel = 0
  5975. Border_21.Position = UDim2.new(1, 0, 0, 0)
  5976. Border_21.Size = UDim2.new(0, 12, 1, 0)
  5977. Border_21.ZIndex = 110
  5978. Border_21.Image = "http://www.roblox.com/asset/?id=238725003"
  5979. Border_21.ImageRectOffset = Vector2.new(24, 12)
  5980. Border_21.ImageRectSize = Vector2.new(12, 12)
  5981.  
  5982. CreditsLabel_2.Name = "CreditsLabel"
  5983. CreditsLabel_2.Parent = CreditsFrame
  5984. CreditsLabel_2.BackgroundColor3 = Color3.new(1, 1, 1)
  5985. CreditsLabel_2.BackgroundTransparency = 1
  5986. CreditsLabel_2.BorderSizePixel = 0
  5987. CreditsLabel_2.Position = UDim2.new(0, 0, 0.290030211, 0)
  5988. CreditsLabel_2.Size = UDim2.new(1, 0, 0.0996978879, 0)
  5989. CreditsLabel_2.ZIndex = 120
  5990. CreditsLabel_2.Font = Enum.Font.Highway
  5991. CreditsLabel_2.Text = "Created By : VeteranBlue|VeteranAnime#7468"
  5992. CreditsLabel_2.TextColor3 = Color3.new(1, 1, 1)
  5993. CreditsLabel_2.TextScaled = true
  5994. CreditsLabel_2.TextSize = 14
  5995. CreditsLabel_2.TextWrapped = true
  5996. CreditsLabel_2.TextXAlignment = Enum.TextXAlignment.Left
  5997.  
  5998. CreditsLabel_3.Name = "CreditsLabel"
  5999. CreditsLabel_3.Parent = CreditsFrame
  6000. CreditsLabel_3.BackgroundColor3 = Color3.new(1, 1, 1)
  6001. CreditsLabel_3.BackgroundTransparency = 1
  6002. CreditsLabel_3.BorderSizePixel = 0
  6003. CreditsLabel_3.Position = UDim2.new(0, 0, 0.389728099, 0)
  6004. CreditsLabel_3.Size = UDim2.new(1, 0, 0.0996978879, 0)
  6005. CreditsLabel_3.ZIndex = 120
  6006. CreditsLabel_3.Font = Enum.Font.Highway
  6007. CreditsLabel_3.Text = "Remote Recon : Emrehan|emrehan1234567891🦇#4217"
  6008. CreditsLabel_3.TextColor3 = Color3.new(1, 1, 1)
  6009. CreditsLabel_3.TextScaled = true
  6010. CreditsLabel_3.TextSize = 14
  6011. CreditsLabel_3.TextWrapped = true
  6012. CreditsLabel_3.TextXAlignment = Enum.TextXAlignment.Left
  6013.  
  6014. CreditsLabel_4.Name = "CreditsLabel"
  6015. CreditsLabel_4.Parent = CreditsFrame
  6016. CreditsLabel_4.BackgroundColor3 = Color3.new(1, 1, 1)
  6017. CreditsLabel_4.BackgroundTransparency = 1
  6018. CreditsLabel_4.BorderSizePixel = 0
  6019. CreditsLabel_4.Position = UDim2.new(0, 0, 0.489425987, 0)
  6020. CreditsLabel_4.Size = UDim2.new(1, 0, 0.0996978879, 0)
  6021. CreditsLabel_4.ZIndex = 120
  6022. CreditsLabel_4.Font = Enum.Font.Highway
  6023. CreditsLabel_4.Text = "Script Synapse Tester : SGC|SGC3671#9242"
  6024. CreditsLabel_4.TextColor3 = Color3.new(1, 1, 1)
  6025. CreditsLabel_4.TextScaled = true
  6026. CreditsLabel_4.TextSize = 14
  6027. CreditsLabel_4.TextWrapped = true
  6028. CreditsLabel_4.TextXAlignment = Enum.TextXAlignment.Left
  6029.  
  6030. CreditsLabel_5.Name = "CreditsLabel"
  6031. CreditsLabel_5.Parent = CreditsFrame
  6032. CreditsLabel_5.BackgroundColor3 = Color3.new(1, 1, 1)
  6033. CreditsLabel_5.BackgroundTransparency = 1
  6034. CreditsLabel_5.BorderSizePixel = 0
  6035. CreditsLabel_5.Position = UDim2.new(0, 0, 0.589123845, 0)
  6036. CreditsLabel_5.Size = UDim2.new(1, 0, 0.0996978879, 0)
  6037. CreditsLabel_5.ZIndex = 120
  6038. CreditsLabel_5.Font = Enum.Font.Highway
  6039. CreditsLabel_5.Text = "Script Elysian Tester : Kuro,Regalia"
  6040. CreditsLabel_5.TextColor3 = Color3.new(1, 1, 1)
  6041. CreditsLabel_5.TextScaled = true
  6042. CreditsLabel_5.TextSize = 14
  6043. CreditsLabel_5.TextWrapped = true
  6044. CreditsLabel_5.TextXAlignment = Enum.TextXAlignment.Left
  6045.  
  6046. CreditsLabel_6.Name = "CreditsLabel"
  6047. CreditsLabel_6.Parent = CreditsFrame
  6048. CreditsLabel_6.BackgroundColor3 = Color3.new(1, 1, 1)
  6049. CreditsLabel_6.BackgroundTransparency = 1
  6050. CreditsLabel_6.BorderSizePixel = 0
  6051. CreditsLabel_6.Position = UDim2.new(0, 0, 0.688821733, 0)
  6052. CreditsLabel_6.Size = UDim2.new(1, 0, 0.157099694, 0)
  6053. CreditsLabel_6.ZIndex = 120
  6054. CreditsLabel_6.Font = Enum.Font.Highway
  6055. CreditsLabel_6.Text = "Note : All Experimental Commands Don't Work In Limited Mode And Don't Garuntee Working."
  6056. CreditsLabel_6.TextColor3 = Color3.new(1, 1, 1)
  6057. CreditsLabel_6.TextScaled = true
  6058. CreditsLabel_6.TextSize = 14
  6059. CreditsLabel_6.TextWrapped = true
  6060. CreditsLabel_6.TextXAlignment = Enum.TextXAlignment.Left
  6061.  
  6062.  
  6063.  
  6064. -- Objects
  6065.  
  6066. ExtrasFrame = Instance.new("Frame")
  6067. CTpSwitch = Instance.new("TextButton")
  6068. Borders = Instance.new("Frame")
  6069. Border = Instance.new("ImageLabel")
  6070. Border_2 = Instance.new("ImageLabel")
  6071. Border_3 = Instance.new("ImageLabel")
  6072. Border_4 = Instance.new("ImageLabel")
  6073. Border_5 = Instance.new("ImageLabel")
  6074. Border_6 = Instance.new("ImageLabel")
  6075. Border_7 = Instance.new("ImageLabel")
  6076. Border_8 = Instance.new("ImageLabel")
  6077. CCmdsTitle = Instance.new("TextLabel")
  6078. CTPLabel = Instance.new("TextLabel")
  6079. CDstLabel = Instance.new("TextLabel")
  6080. CDstSwitch = Instance.new("TextButton")
  6081. Borders_2 = Instance.new("Frame")
  6082. Border_9 = Instance.new("ImageLabel")
  6083. Border_10 = Instance.new("ImageLabel")
  6084. Border_11 = Instance.new("ImageLabel")
  6085. Border_12 = Instance.new("ImageLabel")
  6086. Border_13 = Instance.new("ImageLabel")
  6087. Border_14 = Instance.new("ImageLabel")
  6088. Border_15 = Instance.new("ImageLabel")
  6089. Border_16 = Instance.new("ImageLabel")
  6090. CTglLabel = Instance.new("TextLabel")
  6091. CTglSwitch = Instance.new("TextButton")
  6092. Borders_3 = Instance.new("Frame")
  6093. Border_17 = Instance.new("ImageLabel")
  6094. Border_18 = Instance.new("ImageLabel")
  6095. Border_19 = Instance.new("ImageLabel")
  6096. Border_20 = Instance.new("ImageLabel")
  6097. Border_21 = Instance.new("ImageLabel")
  6098. Border_22 = Instance.new("ImageLabel")
  6099. Border_23 = Instance.new("ImageLabel")
  6100. Border_24 = Instance.new("ImageLabel")
  6101. CDbgLabel = Instance.new("TextLabel")
  6102. CDbgSwitch = Instance.new("TextButton")
  6103. Borders_4 = Instance.new("Frame")
  6104. Border_25 = Instance.new("ImageLabel")
  6105. Border_26 = Instance.new("ImageLabel")
  6106. Border_27 = Instance.new("ImageLabel")
  6107. Border_28 = Instance.new("ImageLabel")
  6108. Border_29 = Instance.new("ImageLabel")
  6109. Border_30 = Instance.new("ImageLabel")
  6110. Border_31 = Instance.new("ImageLabel")
  6111. Border_32 = Instance.new("ImageLabel")
  6112. FlyingLabel = Instance.new("TextLabel")
  6113. FlyingSwitch = Instance.new("TextButton")
  6114. Borders_5 = Instance.new("Frame")
  6115. Border_33 = Instance.new("ImageLabel")
  6116. Border_34 = Instance.new("ImageLabel")
  6117. Border_35 = Instance.new("ImageLabel")
  6118. Border_36 = Instance.new("ImageLabel")
  6119. Border_37 = Instance.new("ImageLabel")
  6120. Border_38 = Instance.new("ImageLabel")
  6121. Border_39 = Instance.new("ImageLabel")
  6122. Border_40 = Instance.new("ImageLabel")
  6123. CCmdsTitle_2 = Instance.new("TextLabel")
  6124. CAimbotLabel = Instance.new("TextLabel")
  6125. CAimbotSwitch = Instance.new("TextButton")
  6126. Borders_6 = Instance.new("Frame")
  6127. Border_41 = Instance.new("ImageLabel")
  6128. Border_42 = Instance.new("ImageLabel")
  6129. Border_43 = Instance.new("ImageLabel")
  6130. Border_44 = Instance.new("ImageLabel")
  6131. Border_45 = Instance.new("ImageLabel")
  6132. Border_46 = Instance.new("ImageLabel")
  6133. Border_47 = Instance.new("ImageLabel")
  6134. Border_48 = Instance.new("ImageLabel")
  6135. ChathookLabel = Instance.new("TextLabel")
  6136. ChathookSwitch = Instance.new("TextButton")
  6137. Borders_7 = Instance.new("Frame")
  6138. Border_49 = Instance.new("ImageLabel")
  6139. Border_50 = Instance.new("ImageLabel")
  6140. Border_51 = Instance.new("ImageLabel")
  6141. Border_52 = Instance.new("ImageLabel")
  6142. Border_53 = Instance.new("ImageLabel")
  6143. Border_54 = Instance.new("ImageLabel")
  6144. Border_55 = Instance.new("ImageLabel")
  6145. Border_56 = Instance.new("ImageLabel")
  6146. Goto = Instance.new("TextButton")
  6147. Borders_8 = Instance.new("Frame")
  6148. Border_57 = Instance.new("ImageLabel")
  6149. Border_58 = Instance.new("ImageLabel")
  6150. Border_59 = Instance.new("ImageLabel")
  6151. Border_60 = Instance.new("ImageLabel")
  6152. Border_61 = Instance.new("ImageLabel")
  6153. Border_62 = Instance.new("ImageLabel")
  6154. Border_63 = Instance.new("ImageLabel")
  6155. Border_64 = Instance.new("ImageLabel")
  6156.  
  6157. -- Properties
  6158.  
  6159. ExtrasFrame.Name = "ExtrasFrame"
  6160. ExtrasFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  6161. ExtrasFrame.BackgroundTransparency = 1
  6162. ExtrasFrame.BorderSizePixel = 0
  6163. ExtrasFrame.Size = UDim2.new(1, 0, 1, 0)
  6164. ExtrasFrame.Visible = false
  6165.  
  6166. CTpSwitch.Name = "CTpSwitch"
  6167. CTpSwitch.Parent = ExtrasFrame
  6168. CTpSwitch.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6169. CTpSwitch.BorderSizePixel = 0
  6170. CTpSwitch.Position = UDim2.new(0.411089897, 0, 0.273809552, 0)
  6171. CTpSwitch.Size = UDim2.new(0, 20, 0, 20)
  6172. CTpSwitch.ZIndex = 120
  6173. CTpSwitch.Font = Enum.Font.Highway
  6174. CTpSwitch.Text = ""
  6175. CTpSwitch.TextColor3 = Color3.new(1, 1, 1)
  6176. CTpSwitch.TextScaled = true
  6177. CTpSwitch.TextSize = 14
  6178. CTpSwitch.TextWrapped = true
  6179.  
  6180. Borders.Name = "Borders"
  6181. Borders.Parent = CTpSwitch
  6182. Borders.BackgroundColor3 = Color3.new(1, 1, 1)
  6183. Borders.BackgroundTransparency = 1
  6184. Borders.BorderSizePixel = 0
  6185. Borders.Size = UDim2.new(1, 0, 1, 0)
  6186. Borders.ZIndex = 120
  6187.  
  6188. Border.Name = "Border"
  6189. Border.Parent = Borders
  6190. Border.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6191. Border.BackgroundTransparency = 1
  6192. Border.BorderSizePixel = 0
  6193. Border.Position = UDim2.new(0, -12, 0, -12)
  6194. Border.Size = UDim2.new(0, 12, 0, 12)
  6195. Border.ZIndex = 110
  6196. Border.Image = "http://www.roblox.com/asset/?id=238725003"
  6197. Border.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6198. Border.ImageRectSize = Vector2.new(12, 12)
  6199.  
  6200. Border_2.Name = "Border"
  6201. Border_2.Parent = Borders
  6202. Border_2.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6203. Border_2.BackgroundTransparency = 1
  6204. Border_2.BorderSizePixel = 0
  6205. Border_2.Position = UDim2.new(1, 0, 0, -12)
  6206. Border_2.Size = UDim2.new(0, 12, 0, 12)
  6207. Border_2.ZIndex = 110
  6208. Border_2.Image = "http://www.roblox.com/asset/?id=238725003"
  6209. Border_2.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6210. Border_2.ImageRectOffset = Vector2.new(24, 0)
  6211. Border_2.ImageRectSize = Vector2.new(12, 12)
  6212.  
  6213. Border_3.Name = "Border"
  6214. Border_3.Parent = Borders
  6215. Border_3.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6216. Border_3.BackgroundTransparency = 1
  6217. Border_3.BorderSizePixel = 0
  6218. Border_3.Position = UDim2.new(0, -12, 1, 0)
  6219. Border_3.Size = UDim2.new(0, 12, 0, 12)
  6220. Border_3.ZIndex = 110
  6221. Border_3.Image = "http://www.roblox.com/asset/?id=238725003"
  6222. Border_3.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6223. Border_3.ImageRectOffset = Vector2.new(0, 24)
  6224. Border_3.ImageRectSize = Vector2.new(12, 12)
  6225.  
  6226. Border_4.Name = "Border"
  6227. Border_4.Parent = Borders
  6228. Border_4.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6229. Border_4.BackgroundTransparency = 1
  6230. Border_4.BorderSizePixel = 0
  6231. Border_4.Position = UDim2.new(1, 0, 1, 0)
  6232. Border_4.Size = UDim2.new(0, 12, 0, 12)
  6233. Border_4.ZIndex = 110
  6234. Border_4.Image = "http://www.roblox.com/asset/?id=238725003"
  6235. Border_4.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6236. Border_4.ImageRectOffset = Vector2.new(24, 24)
  6237. Border_4.ImageRectSize = Vector2.new(12, 12)
  6238.  
  6239. Border_5.Name = "Border"
  6240. Border_5.Parent = Borders
  6241. Border_5.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6242. Border_5.BackgroundTransparency = 1
  6243. Border_5.BorderSizePixel = 0
  6244. Border_5.Position = UDim2.new(0, 0, 1, 0)
  6245. Border_5.Size = UDim2.new(1, 0, 0, 12)
  6246. Border_5.ZIndex = 110
  6247. Border_5.Image = "http://www.roblox.com/asset/?id=238725003"
  6248. Border_5.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6249. Border_5.ImageRectOffset = Vector2.new(12, 24)
  6250. Border_5.ImageRectSize = Vector2.new(12, 12)
  6251.  
  6252. Border_6.Name = "Border"
  6253. Border_6.Parent = Borders
  6254. Border_6.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6255. Border_6.BackgroundTransparency = 1
  6256. Border_6.BorderSizePixel = 0
  6257. Border_6.Position = UDim2.new(0, 0, 0, -12)
  6258. Border_6.Size = UDim2.new(1, 0, 0, 12)
  6259. Border_6.ZIndex = 110
  6260. Border_6.Image = "http://www.roblox.com/asset/?id=238725003"
  6261. Border_6.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6262. Border_6.ImageRectOffset = Vector2.new(12, 0)
  6263. Border_6.ImageRectSize = Vector2.new(12, 12)
  6264.  
  6265. Border_7.Name = "Border"
  6266. Border_7.Parent = Borders
  6267. Border_7.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6268. Border_7.BackgroundTransparency = 1
  6269. Border_7.BorderSizePixel = 0
  6270. Border_7.Position = UDim2.new(0, -12, 0, 0)
  6271. Border_7.Size = UDim2.new(0, 12, 1, 0)
  6272. Border_7.ZIndex = 110
  6273. Border_7.Image = "http://www.roblox.com/asset/?id=238725003"
  6274. Border_7.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6275. Border_7.ImageRectOffset = Vector2.new(0, 12)
  6276. Border_7.ImageRectSize = Vector2.new(12, 12)
  6277.  
  6278. Border_8.Name = "Border"
  6279. Border_8.Parent = Borders
  6280. Border_8.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6281. Border_8.BackgroundTransparency = 1
  6282. Border_8.BorderSizePixel = 0
  6283. Border_8.Position = UDim2.new(1, 0, 0, 0)
  6284. Border_8.Size = UDim2.new(0, 12, 1, 0)
  6285. Border_8.ZIndex = 110
  6286. Border_8.Image = "http://www.roblox.com/asset/?id=238725003"
  6287. Border_8.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6288. Border_8.ImageRectOffset = Vector2.new(24, 12)
  6289. Border_8.ImageRectSize = Vector2.new(12, 12)
  6290.  
  6291. CCmdsTitle.Name = "CCmdsTitle"
  6292. CCmdsTitle.Parent = ExtrasFrame
  6293. CCmdsTitle.BackgroundColor3 = Color3.new(1, 1, 1)
  6294. CCmdsTitle.BackgroundTransparency = 1
  6295. CCmdsTitle.BorderSizePixel = 0
  6296. CCmdsTitle.Position = UDim2.new(-0.00191204587, 0, 0, 0)
  6297. CCmdsTitle.Size = UDim2.new(0.313575536, 0, 0.134920642, 0)
  6298. CCmdsTitle.ZIndex = 120
  6299. CCmdsTitle.Font = Enum.Font.Highway
  6300. CCmdsTitle.Text = "Click Commands :"
  6301. CCmdsTitle.TextColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6302. CCmdsTitle.TextScaled = true
  6303. CCmdsTitle.TextSize = 14
  6304. CCmdsTitle.TextWrapped = true
  6305. CCmdsTitle.TextXAlignment = Enum.TextXAlignment.Left
  6306.  
  6307. CTPLabel.Name = "CTPLabel"
  6308. CTPLabel.Parent = ExtrasFrame
  6309. CTPLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  6310. CTPLabel.BackgroundTransparency = 1
  6311. CTPLabel.BorderSizePixel = 0
  6312. CTPLabel.Position = UDim2.new(-0.00191204587, 0, 0.244047612, 0)
  6313. CTPLabel.Size = UDim2.new(0.313575536, 0, 0.134920642, 0)
  6314. CTPLabel.ZIndex = 120
  6315. CTPLabel.Font = Enum.Font.Highway
  6316. CTPLabel.Text = "Click Teleport :"
  6317. CTPLabel.TextColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6318. CTPLabel.TextScaled = true
  6319. CTPLabel.TextSize = 14
  6320. CTPLabel.TextWrapped = true
  6321. CTPLabel.TextXAlignment = Enum.TextXAlignment.Left
  6322.  
  6323. CDstLabel.Name = "CDstLabel"
  6324. CDstLabel.Parent = ExtrasFrame
  6325. CDstLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  6326. CDstLabel.BackgroundTransparency = 1
  6327. CDstLabel.BorderSizePixel = 0
  6328. CDstLabel.Position = UDim2.new(-0.00191204587, 0, 0.430555552, 0)
  6329. CDstLabel.Size = UDim2.new(0.313575536, 0, 0.134920642, 0)
  6330. CDstLabel.ZIndex = 120
  6331. CDstLabel.Font = Enum.Font.Highway
  6332. CDstLabel.Text = "Click Destroy : "
  6333. CDstLabel.TextColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6334. CDstLabel.TextScaled = true
  6335. CDstLabel.TextSize = 14
  6336. CDstLabel.TextWrapped = true
  6337. CDstLabel.TextXAlignment = Enum.TextXAlignment.Left
  6338.  
  6339. CDstSwitch.Name = "CDstSwitch"
  6340. CDstSwitch.Parent = ExtrasFrame
  6341. CDstSwitch.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6342. CDstSwitch.BorderSizePixel = 0
  6343. CDstSwitch.Position = UDim2.new(0.411089897, 0, 0.460317492, 0)
  6344. CDstSwitch.Size = UDim2.new(0, 20, 0, 20)
  6345. CDstSwitch.ZIndex = 120
  6346. CDstSwitch.Font = Enum.Font.Highway
  6347. CDstSwitch.Text = ""
  6348. CDstSwitch.TextColor3 = Color3.new(1, 1, 1)
  6349. CDstSwitch.TextScaled = true
  6350. CDstSwitch.TextSize = 14
  6351. CDstSwitch.TextWrapped = true
  6352.  
  6353. Borders_2.Name = "Borders"
  6354. Borders_2.Parent = CDstSwitch
  6355. Borders_2.BackgroundColor3 = Color3.new(1, 1, 1)
  6356. Borders_2.BackgroundTransparency = 1
  6357. Borders_2.BorderSizePixel = 0
  6358. Borders_2.Size = UDim2.new(1, 0, 1, 0)
  6359. Borders_2.ZIndex = 120
  6360.  
  6361. Border_9.Name = "Border"
  6362. Border_9.Parent = Borders_2
  6363. Border_9.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6364. Border_9.BackgroundTransparency = 1
  6365. Border_9.BorderSizePixel = 0
  6366. Border_9.Position = UDim2.new(0, -12, 0, -12)
  6367. Border_9.Size = UDim2.new(0, 12, 0, 12)
  6368. Border_9.ZIndex = 110
  6369. Border_9.Image = "http://www.roblox.com/asset/?id=238725003"
  6370. Border_9.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6371. Border_9.ImageRectSize = Vector2.new(12, 12)
  6372.  
  6373. Border_10.Name = "Border"
  6374. Border_10.Parent = Borders_2
  6375. Border_10.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6376. Border_10.BackgroundTransparency = 1
  6377. Border_10.BorderSizePixel = 0
  6378. Border_10.Position = UDim2.new(1, 0, 0, -12)
  6379. Border_10.Size = UDim2.new(0, 12, 0, 12)
  6380. Border_10.ZIndex = 110
  6381. Border_10.Image = "http://www.roblox.com/asset/?id=238725003"
  6382. Border_10.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6383. Border_10.ImageRectOffset = Vector2.new(24, 0)
  6384. Border_10.ImageRectSize = Vector2.new(12, 12)
  6385.  
  6386. Border_11.Name = "Border"
  6387. Border_11.Parent = Borders_2
  6388. Border_11.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6389. Border_11.BackgroundTransparency = 1
  6390. Border_11.BorderSizePixel = 0
  6391. Border_11.Position = UDim2.new(0, -12, 1, 0)
  6392. Border_11.Size = UDim2.new(0, 12, 0, 12)
  6393. Border_11.ZIndex = 110
  6394. Border_11.Image = "http://www.roblox.com/asset/?id=238725003"
  6395. Border_11.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6396. Border_11.ImageRectOffset = Vector2.new(0, 24)
  6397. Border_11.ImageRectSize = Vector2.new(12, 12)
  6398.  
  6399. Border_12.Name = "Border"
  6400. Border_12.Parent = Borders_2
  6401. Border_12.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6402. Border_12.BackgroundTransparency = 1
  6403. Border_12.BorderSizePixel = 0
  6404. Border_12.Position = UDim2.new(1, 0, 1, 0)
  6405. Border_12.Size = UDim2.new(0, 12, 0, 12)
  6406. Border_12.ZIndex = 110
  6407. Border_12.Image = "http://www.roblox.com/asset/?id=238725003"
  6408. Border_12.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6409. Border_12.ImageRectOffset = Vector2.new(24, 24)
  6410. Border_12.ImageRectSize = Vector2.new(12, 12)
  6411.  
  6412. Border_13.Name = "Border"
  6413. Border_13.Parent = Borders_2
  6414. Border_13.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6415. Border_13.BackgroundTransparency = 1
  6416. Border_13.BorderSizePixel = 0
  6417. Border_13.Position = UDim2.new(0, 0, 1, 0)
  6418. Border_13.Size = UDim2.new(1, 0, 0, 12)
  6419. Border_13.ZIndex = 110
  6420. Border_13.Image = "http://www.roblox.com/asset/?id=238725003"
  6421. Border_13.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6422. Border_13.ImageRectOffset = Vector2.new(12, 24)
  6423. Border_13.ImageRectSize = Vector2.new(12, 12)
  6424.  
  6425. Border_14.Name = "Border"
  6426. Border_14.Parent = Borders_2
  6427. Border_14.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6428. Border_14.BackgroundTransparency = 1
  6429. Border_14.BorderSizePixel = 0
  6430. Border_14.Position = UDim2.new(0, 0, 0, -12)
  6431. Border_14.Size = UDim2.new(1, 0, 0, 12)
  6432. Border_14.ZIndex = 110
  6433. Border_14.Image = "http://www.roblox.com/asset/?id=238725003"
  6434. Border_14.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6435. Border_14.ImageRectOffset = Vector2.new(12, 0)
  6436. Border_14.ImageRectSize = Vector2.new(12, 12)
  6437.  
  6438. Border_15.Name = "Border"
  6439. Border_15.Parent = Borders_2
  6440. Border_15.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6441. Border_15.BackgroundTransparency = 1
  6442. Border_15.BorderSizePixel = 0
  6443. Border_15.Position = UDim2.new(0, -12, 0, 0)
  6444. Border_15.Size = UDim2.new(0, 12, 1, 0)
  6445. Border_15.ZIndex = 110
  6446. Border_15.Image = "http://www.roblox.com/asset/?id=238725003"
  6447. Border_15.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6448. Border_15.ImageRectOffset = Vector2.new(0, 12)
  6449. Border_15.ImageRectSize = Vector2.new(12, 12)
  6450.  
  6451. Border_16.Name = "Border"
  6452. Border_16.Parent = Borders_2
  6453. Border_16.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6454. Border_16.BackgroundTransparency = 1
  6455. Border_16.BorderSizePixel = 0
  6456. Border_16.Position = UDim2.new(1, 0, 0, 0)
  6457. Border_16.Size = UDim2.new(0, 12, 1, 0)
  6458. Border_16.ZIndex = 110
  6459. Border_16.Image = "http://www.roblox.com/asset/?id=238725003"
  6460. Border_16.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6461. Border_16.ImageRectOffset = Vector2.new(24, 12)
  6462. Border_16.ImageRectSize = Vector2.new(12, 12)
  6463.  
  6464. CTglLabel.Name = "CTglLabel"
  6465. CTglLabel.Parent = ExtrasFrame
  6466. CTglLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  6467. CTglLabel.BackgroundTransparency = 1
  6468. CTglLabel.BorderSizePixel = 0
  6469. CTglLabel.Position = UDim2.new(-0.00191204587, 0, 0.628968239, 0)
  6470. CTglLabel.Size = UDim2.new(0.313575536, 0, 0.134920642, 0)
  6471. CTglLabel.ZIndex = 120
  6472. CTglLabel.Font = Enum.Font.Highway
  6473. CTglLabel.Text = "Click Toggle/Untoggle : "
  6474. CTglLabel.TextColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6475. CTglLabel.TextScaled = true
  6476. CTglLabel.TextSize = 14
  6477. CTglLabel.TextWrapped = true
  6478. CTglLabel.TextXAlignment = Enum.TextXAlignment.Left
  6479.  
  6480. CTglSwitch.Name = "CTglSwitch"
  6481. CTglSwitch.Parent = ExtrasFrame
  6482. CTglSwitch.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6483. CTglSwitch.BorderSizePixel = 0
  6484. CTglSwitch.Position = UDim2.new(0.411089897, 0, 0.658730209, 0)
  6485. CTglSwitch.Size = UDim2.new(0, 20, 0, 20)
  6486. CTglSwitch.ZIndex = 120
  6487. CTglSwitch.Font = Enum.Font.Highway
  6488. CTglSwitch.Text = ""
  6489. CTglSwitch.TextColor3 = Color3.new(1, 1, 1)
  6490. CTglSwitch.TextScaled = true
  6491. CTglSwitch.TextSize = 14
  6492. CTglSwitch.TextWrapped = true
  6493.  
  6494. Borders_3.Name = "Borders"
  6495. Borders_3.Parent = CTglSwitch
  6496. Borders_3.BackgroundColor3 = Color3.new(1, 1, 1)
  6497. Borders_3.BackgroundTransparency = 1
  6498. Borders_3.BorderSizePixel = 0
  6499. Borders_3.Size = UDim2.new(1, 0, 1, 0)
  6500. Borders_3.ZIndex = 120
  6501.  
  6502. Border_17.Name = "Border"
  6503. Border_17.Parent = Borders_3
  6504. Border_17.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6505. Border_17.BackgroundTransparency = 1
  6506. Border_17.BorderSizePixel = 0
  6507. Border_17.Position = UDim2.new(0, -12, 0, -12)
  6508. Border_17.Size = UDim2.new(0, 12, 0, 12)
  6509. Border_17.ZIndex = 110
  6510. Border_17.Image = "http://www.roblox.com/asset/?id=238725003"
  6511. Border_17.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6512. Border_17.ImageRectSize = Vector2.new(12, 12)
  6513.  
  6514. Border_18.Name = "Border"
  6515. Border_18.Parent = Borders_3
  6516. Border_18.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6517. Border_18.BackgroundTransparency = 1
  6518. Border_18.BorderSizePixel = 0
  6519. Border_18.Position = UDim2.new(1, 0, 0, -12)
  6520. Border_18.Size = UDim2.new(0, 12, 0, 12)
  6521. Border_18.ZIndex = 110
  6522. Border_18.Image = "http://www.roblox.com/asset/?id=238725003"
  6523. Border_18.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6524. Border_18.ImageRectOffset = Vector2.new(24, 0)
  6525. Border_18.ImageRectSize = Vector2.new(12, 12)
  6526.  
  6527. Border_19.Name = "Border"
  6528. Border_19.Parent = Borders_3
  6529. Border_19.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6530. Border_19.BackgroundTransparency = 1
  6531. Border_19.BorderSizePixel = 0
  6532. Border_19.Position = UDim2.new(0, -12, 1, 0)
  6533. Border_19.Size = UDim2.new(0, 12, 0, 12)
  6534. Border_19.ZIndex = 110
  6535. Border_19.Image = "http://www.roblox.com/asset/?id=238725003"
  6536. Border_19.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6537. Border_19.ImageRectOffset = Vector2.new(0, 24)
  6538. Border_19.ImageRectSize = Vector2.new(12, 12)
  6539.  
  6540. Border_20.Name = "Border"
  6541. Border_20.Parent = Borders_3
  6542. Border_20.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6543. Border_20.BackgroundTransparency = 1
  6544. Border_20.BorderSizePixel = 0
  6545. Border_20.Position = UDim2.new(1, 0, 1, 0)
  6546. Border_20.Size = UDim2.new(0, 12, 0, 12)
  6547. Border_20.ZIndex = 110
  6548. Border_20.Image = "http://www.roblox.com/asset/?id=238725003"
  6549. Border_20.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6550. Border_20.ImageRectOffset = Vector2.new(24, 24)
  6551. Border_20.ImageRectSize = Vector2.new(12, 12)
  6552.  
  6553. Border_21.Name = "Border"
  6554. Border_21.Parent = Borders_3
  6555. Border_21.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6556. Border_21.BackgroundTransparency = 1
  6557. Border_21.BorderSizePixel = 0
  6558. Border_21.Position = UDim2.new(0, 0, 1, 0)
  6559. Border_21.Size = UDim2.new(1, 0, 0, 12)
  6560. Border_21.ZIndex = 110
  6561. Border_21.Image = "http://www.roblox.com/asset/?id=238725003"
  6562. Border_21.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6563. Border_21.ImageRectOffset = Vector2.new(12, 24)
  6564. Border_21.ImageRectSize = Vector2.new(12, 12)
  6565.  
  6566. Border_22.Name = "Border"
  6567. Border_22.Parent = Borders_3
  6568. Border_22.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6569. Border_22.BackgroundTransparency = 1
  6570. Border_22.BorderSizePixel = 0
  6571. Border_22.Position = UDim2.new(0, 0, 0, -12)
  6572. Border_22.Size = UDim2.new(1, 0, 0, 12)
  6573. Border_22.ZIndex = 110
  6574. Border_22.Image = "http://www.roblox.com/asset/?id=238725003"
  6575. Border_22.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6576. Border_22.ImageRectOffset = Vector2.new(12, 0)
  6577. Border_22.ImageRectSize = Vector2.new(12, 12)
  6578.  
  6579. Border_23.Name = "Border"
  6580. Border_23.Parent = Borders_3
  6581. Border_23.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6582. Border_23.BackgroundTransparency = 1
  6583. Border_23.BorderSizePixel = 0
  6584. Border_23.Position = UDim2.new(0, -12, 0, 0)
  6585. Border_23.Size = UDim2.new(0, 12, 1, 0)
  6586. Border_23.ZIndex = 110
  6587. Border_23.Image = "http://www.roblox.com/asset/?id=238725003"
  6588. Border_23.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6589. Border_23.ImageRectOffset = Vector2.new(0, 12)
  6590. Border_23.ImageRectSize = Vector2.new(12, 12)
  6591.  
  6592. Border_24.Name = "Border"
  6593. Border_24.Parent = Borders_3
  6594. Border_24.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6595. Border_24.BackgroundTransparency = 1
  6596. Border_24.BorderSizePixel = 0
  6597. Border_24.Position = UDim2.new(1, 0, 0, 0)
  6598. Border_24.Size = UDim2.new(0, 12, 1, 0)
  6599. Border_24.ZIndex = 110
  6600. Border_24.Image = "http://www.roblox.com/asset/?id=238725003"
  6601. Border_24.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6602. Border_24.ImageRectOffset = Vector2.new(24, 12)
  6603. Border_24.ImageRectSize = Vector2.new(12, 12)
  6604.  
  6605. CDbgLabel.Name = "CDbgLabel"
  6606. CDbgLabel.Parent = ExtrasFrame
  6607. CDbgLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  6608. CDbgLabel.BackgroundTransparency = 1
  6609. CDbgLabel.BorderSizePixel = 0
  6610. CDbgLabel.Position = UDim2.new(-0.00191204587, 0, 0.823412657, 0)
  6611. CDbgLabel.Size = UDim2.new(0.313575536, 0, 0.134920642, 0)
  6612. CDbgLabel.ZIndex = 120
  6613. CDbgLabel.Font = Enum.Font.Highway
  6614. CDbgLabel.Text = "Click Debug : "
  6615. CDbgLabel.TextColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6616. CDbgLabel.TextScaled = true
  6617. CDbgLabel.TextSize = 14
  6618. CDbgLabel.TextWrapped = true
  6619. CDbgLabel.TextXAlignment = Enum.TextXAlignment.Left
  6620.  
  6621. CDbgSwitch.Name = "CDbgSwitch"
  6622. CDbgSwitch.Parent = ExtrasFrame
  6623. CDbgSwitch.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6624. CDbgSwitch.BorderSizePixel = 0
  6625. CDbgSwitch.Position = UDim2.new(0.411089897, 0, 0.853174686, 0)
  6626. CDbgSwitch.Size = UDim2.new(0, 20, 0, 20)
  6627. CDbgSwitch.ZIndex = 120
  6628. CDbgSwitch.Font = Enum.Font.Highway
  6629. CDbgSwitch.Text = ""
  6630. CDbgSwitch.TextColor3 = Color3.new(1, 1, 1)
  6631. CDbgSwitch.TextScaled = true
  6632. CDbgSwitch.TextSize = 14
  6633. CDbgSwitch.TextWrapped = true
  6634.  
  6635. Borders_4.Name = "Borders"
  6636. Borders_4.Parent = CDbgSwitch
  6637. Borders_4.BackgroundColor3 = Color3.new(1, 1, 1)
  6638. Borders_4.BackgroundTransparency = 1
  6639. Borders_4.BorderSizePixel = 0
  6640. Borders_4.Size = UDim2.new(1, 0, 1, 0)
  6641. Borders_4.ZIndex = 120
  6642.  
  6643. Border_25.Name = "Border"
  6644. Border_25.Parent = Borders_4
  6645. Border_25.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6646. Border_25.BackgroundTransparency = 1
  6647. Border_25.BorderSizePixel = 0
  6648. Border_25.Position = UDim2.new(0, -12, 0, -12)
  6649. Border_25.Size = UDim2.new(0, 12, 0, 12)
  6650. Border_25.ZIndex = 110
  6651. Border_25.Image = "http://www.roblox.com/asset/?id=238725003"
  6652. Border_25.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6653. Border_25.ImageRectSize = Vector2.new(12, 12)
  6654.  
  6655. Border_26.Name = "Border"
  6656. Border_26.Parent = Borders_4
  6657. Border_26.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6658. Border_26.BackgroundTransparency = 1
  6659. Border_26.BorderSizePixel = 0
  6660. Border_26.Position = UDim2.new(1, 0, 0, -12)
  6661. Border_26.Size = UDim2.new(0, 12, 0, 12)
  6662. Border_26.ZIndex = 110
  6663. Border_26.Image = "http://www.roblox.com/asset/?id=238725003"
  6664. Border_26.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6665. Border_26.ImageRectOffset = Vector2.new(24, 0)
  6666. Border_26.ImageRectSize = Vector2.new(12, 12)
  6667.  
  6668. Border_27.Name = "Border"
  6669. Border_27.Parent = Borders_4
  6670. Border_27.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6671. Border_27.BackgroundTransparency = 1
  6672. Border_27.BorderSizePixel = 0
  6673. Border_27.Position = UDim2.new(0, -12, 1, 0)
  6674. Border_27.Size = UDim2.new(0, 12, 0, 12)
  6675. Border_27.ZIndex = 110
  6676. Border_27.Image = "http://www.roblox.com/asset/?id=238725003"
  6677. Border_27.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6678. Border_27.ImageRectOffset = Vector2.new(0, 24)
  6679. Border_27.ImageRectSize = Vector2.new(12, 12)
  6680.  
  6681. Border_28.Name = "Border"
  6682. Border_28.Parent = Borders_4
  6683. Border_28.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6684. Border_28.BackgroundTransparency = 1
  6685. Border_28.BorderSizePixel = 0
  6686. Border_28.Position = UDim2.new(1, 0, 1, 0)
  6687. Border_28.Size = UDim2.new(0, 12, 0, 12)
  6688. Border_28.ZIndex = 110
  6689. Border_28.Image = "http://www.roblox.com/asset/?id=238725003"
  6690. Border_28.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6691. Border_28.ImageRectOffset = Vector2.new(24, 24)
  6692. Border_28.ImageRectSize = Vector2.new(12, 12)
  6693.  
  6694. Border_29.Name = "Border"
  6695. Border_29.Parent = Borders_4
  6696. Border_29.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6697. Border_29.BackgroundTransparency = 1
  6698. Border_29.BorderSizePixel = 0
  6699. Border_29.Position = UDim2.new(0, 0, 1, 0)
  6700. Border_29.Size = UDim2.new(1, 0, 0, 12)
  6701. Border_29.ZIndex = 110
  6702. Border_29.Image = "http://www.roblox.com/asset/?id=238725003"
  6703. Border_29.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6704. Border_29.ImageRectOffset = Vector2.new(12, 24)
  6705. Border_29.ImageRectSize = Vector2.new(12, 12)
  6706.  
  6707. Border_30.Name = "Border"
  6708. Border_30.Parent = Borders_4
  6709. Border_30.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6710. Border_30.BackgroundTransparency = 1
  6711. Border_30.BorderSizePixel = 0
  6712. Border_30.Position = UDim2.new(0, 0, 0, -12)
  6713. Border_30.Size = UDim2.new(1, 0, 0, 12)
  6714. Border_30.ZIndex = 110
  6715. Border_30.Image = "http://www.roblox.com/asset/?id=238725003"
  6716. Border_30.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6717. Border_30.ImageRectOffset = Vector2.new(12, 0)
  6718. Border_30.ImageRectSize = Vector2.new(12, 12)
  6719.  
  6720. Border_31.Name = "Border"
  6721. Border_31.Parent = Borders_4
  6722. Border_31.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6723. Border_31.BackgroundTransparency = 1
  6724. Border_31.BorderSizePixel = 0
  6725. Border_31.Position = UDim2.new(0, -12, 0, 0)
  6726. Border_31.Size = UDim2.new(0, 12, 1, 0)
  6727. Border_31.ZIndex = 110
  6728. Border_31.Image = "http://www.roblox.com/asset/?id=238725003"
  6729. Border_31.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6730. Border_31.ImageRectOffset = Vector2.new(0, 12)
  6731. Border_31.ImageRectSize = Vector2.new(12, 12)
  6732.  
  6733. Border_32.Name = "Border"
  6734. Border_32.Parent = Borders_4
  6735. Border_32.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6736. Border_32.BackgroundTransparency = 1
  6737. Border_32.BorderSizePixel = 0
  6738. Border_32.Position = UDim2.new(1, 0, 0, 0)
  6739. Border_32.Size = UDim2.new(0, 12, 1, 0)
  6740. Border_32.ZIndex = 110
  6741. Border_32.Image = "http://www.roblox.com/asset/?id=238725003"
  6742. Border_32.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6743. Border_32.ImageRectOffset = Vector2.new(24, 12)
  6744. Border_32.ImageRectSize = Vector2.new(12, 12)
  6745.  
  6746. FlyingLabel.Name = "FlyingLabel"
  6747. FlyingLabel.Parent = ExtrasFrame
  6748. FlyingLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  6749. FlyingLabel.BackgroundTransparency = 1
  6750. FlyingLabel.BorderSizePixel = 0
  6751. FlyingLabel.Position = UDim2.new(0.510516226, 0, 0.244047582, 0)
  6752. FlyingLabel.Size = UDim2.new(0.313575536, 0, 0.134920642, 0)
  6753. FlyingLabel.ZIndex = 120
  6754. FlyingLabel.Font = Enum.Font.Highway
  6755. FlyingLabel.Text = "Flying :"
  6756. FlyingLabel.TextColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6757. FlyingLabel.TextScaled = true
  6758. FlyingLabel.TextSize = 14
  6759. FlyingLabel.TextWrapped = true
  6760. FlyingLabel.TextXAlignment = Enum.TextXAlignment.Left
  6761.  
  6762. FlyingSwitch.Name = "FlyingSwitch"
  6763. FlyingSwitch.Parent = ExtrasFrame
  6764. FlyingSwitch.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6765. FlyingSwitch.BorderSizePixel = 0
  6766. FlyingSwitch.Position = UDim2.new(0.923518181, 0, 0.273809612, 0)
  6767. FlyingSwitch.Size = UDim2.new(0, 20, 0, 20)
  6768. FlyingSwitch.ZIndex = 120
  6769. FlyingSwitch.Font = Enum.Font.Highway
  6770. FlyingSwitch.Text = ""
  6771. FlyingSwitch.TextColor3 = Color3.new(1, 1, 1)
  6772. FlyingSwitch.TextScaled = true
  6773. FlyingSwitch.TextSize = 14
  6774. FlyingSwitch.TextWrapped = true
  6775.  
  6776. Borders_5.Name = "Borders"
  6777. Borders_5.Parent = FlyingSwitch
  6778. Borders_5.BackgroundColor3 = Color3.new(1, 1, 1)
  6779. Borders_5.BackgroundTransparency = 1
  6780. Borders_5.BorderSizePixel = 0
  6781. Borders_5.Size = UDim2.new(1, 0, 1, 0)
  6782. Borders_5.ZIndex = 120
  6783.  
  6784. Border_33.Name = "Border"
  6785. Border_33.Parent = Borders_5
  6786. Border_33.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6787. Border_33.BackgroundTransparency = 1
  6788. Border_33.BorderSizePixel = 0
  6789. Border_33.Position = UDim2.new(0, -12, 0, -12)
  6790. Border_33.Size = UDim2.new(0, 12, 0, 12)
  6791. Border_33.ZIndex = 110
  6792. Border_33.Image = "http://www.roblox.com/asset/?id=238725003"
  6793. Border_33.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6794. Border_33.ImageRectSize = Vector2.new(12, 12)
  6795.  
  6796. Border_34.Name = "Border"
  6797. Border_34.Parent = Borders_5
  6798. Border_34.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6799. Border_34.BackgroundTransparency = 1
  6800. Border_34.BorderSizePixel = 0
  6801. Border_34.Position = UDim2.new(1, 0, 0, -12)
  6802. Border_34.Size = UDim2.new(0, 12, 0, 12)
  6803. Border_34.ZIndex = 110
  6804. Border_34.Image = "http://www.roblox.com/asset/?id=238725003"
  6805. Border_34.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6806. Border_34.ImageRectOffset = Vector2.new(24, 0)
  6807. Border_34.ImageRectSize = Vector2.new(12, 12)
  6808.  
  6809. Border_35.Name = "Border"
  6810. Border_35.Parent = Borders_5
  6811. Border_35.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6812. Border_35.BackgroundTransparency = 1
  6813. Border_35.BorderSizePixel = 0
  6814. Border_35.Position = UDim2.new(0, -12, 1, 0)
  6815. Border_35.Size = UDim2.new(0, 12, 0, 12)
  6816. Border_35.ZIndex = 110
  6817. Border_35.Image = "http://www.roblox.com/asset/?id=238725003"
  6818. Border_35.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6819. Border_35.ImageRectOffset = Vector2.new(0, 24)
  6820. Border_35.ImageRectSize = Vector2.new(12, 12)
  6821.  
  6822. Border_36.Name = "Border"
  6823. Border_36.Parent = Borders_5
  6824. Border_36.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6825. Border_36.BackgroundTransparency = 1
  6826. Border_36.BorderSizePixel = 0
  6827. Border_36.Position = UDim2.new(1, 0, 1, 0)
  6828. Border_36.Size = UDim2.new(0, 12, 0, 12)
  6829. Border_36.ZIndex = 110
  6830. Border_36.Image = "http://www.roblox.com/asset/?id=238725003"
  6831. Border_36.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6832. Border_36.ImageRectOffset = Vector2.new(24, 24)
  6833. Border_36.ImageRectSize = Vector2.new(12, 12)
  6834.  
  6835. Border_37.Name = "Border"
  6836. Border_37.Parent = Borders_5
  6837. Border_37.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6838. Border_37.BackgroundTransparency = 1
  6839. Border_37.BorderSizePixel = 0
  6840. Border_37.Position = UDim2.new(0, 0, 1, 0)
  6841. Border_37.Size = UDim2.new(1, 0, 0, 12)
  6842. Border_37.ZIndex = 110
  6843. Border_37.Image = "http://www.roblox.com/asset/?id=238725003"
  6844. Border_37.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6845. Border_37.ImageRectOffset = Vector2.new(12, 24)
  6846. Border_37.ImageRectSize = Vector2.new(12, 12)
  6847.  
  6848. Border_38.Name = "Border"
  6849. Border_38.Parent = Borders_5
  6850. Border_38.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6851. Border_38.BackgroundTransparency = 1
  6852. Border_38.BorderSizePixel = 0
  6853. Border_38.Position = UDim2.new(0, 0, 0, -12)
  6854. Border_38.Size = UDim2.new(1, 0, 0, 12)
  6855. Border_38.ZIndex = 110
  6856. Border_38.Image = "http://www.roblox.com/asset/?id=238725003"
  6857. Border_38.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6858. Border_38.ImageRectOffset = Vector2.new(12, 0)
  6859. Border_38.ImageRectSize = Vector2.new(12, 12)
  6860.  
  6861. Border_39.Name = "Border"
  6862. Border_39.Parent = Borders_5
  6863. Border_39.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6864. Border_39.BackgroundTransparency = 1
  6865. Border_39.BorderSizePixel = 0
  6866. Border_39.Position = UDim2.new(0, -12, 0, 0)
  6867. Border_39.Size = UDim2.new(0, 12, 1, 0)
  6868. Border_39.ZIndex = 110
  6869. Border_39.Image = "http://www.roblox.com/asset/?id=238725003"
  6870. Border_39.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6871. Border_39.ImageRectOffset = Vector2.new(0, 12)
  6872. Border_39.ImageRectSize = Vector2.new(12, 12)
  6873.  
  6874. Border_40.Name = "Border"
  6875. Border_40.Parent = Borders_5
  6876. Border_40.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6877. Border_40.BackgroundTransparency = 1
  6878. Border_40.BorderSizePixel = 0
  6879. Border_40.Position = UDim2.new(1, 0, 0, 0)
  6880. Border_40.Size = UDim2.new(0, 12, 1, 0)
  6881. Border_40.ZIndex = 110
  6882. Border_40.Image = "http://www.roblox.com/asset/?id=238725003"
  6883. Border_40.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6884. Border_40.ImageRectOffset = Vector2.new(24, 12)
  6885. Border_40.ImageRectSize = Vector2.new(12, 12)
  6886.  
  6887. CCmdsTitle_2.Name = "CCmdsTitle"
  6888. CCmdsTitle_2.Parent = ExtrasFrame
  6889. CCmdsTitle_2.BackgroundColor3 = Color3.new(1, 1, 1)
  6890. CCmdsTitle_2.BackgroundTransparency = 1
  6891. CCmdsTitle_2.BorderSizePixel = 0
  6892. CCmdsTitle_2.Position = UDim2.new(0.510516226, 0, 0, 0)
  6893. CCmdsTitle_2.Size = UDim2.new(0.313575536, 0, 0.134920642, 0)
  6894. CCmdsTitle_2.ZIndex = 120
  6895. CCmdsTitle_2.Font = Enum.Font.Highway
  6896. CCmdsTitle_2.Text = "Switches : "
  6897. CCmdsTitle_2.TextColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6898. CCmdsTitle_2.TextScaled = true
  6899. CCmdsTitle_2.TextSize = 14
  6900. CCmdsTitle_2.TextWrapped = true
  6901. CCmdsTitle_2.TextXAlignment = Enum.TextXAlignment.Left
  6902.  
  6903. CAimbotLabel.Name = "CAimbotLabel"
  6904. CAimbotLabel.Parent = ExtrasFrame
  6905. CAimbotLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  6906. CAimbotLabel.BackgroundTransparency = 1
  6907. CAimbotLabel.BorderSizePixel = 0
  6908. CAimbotLabel.Position = UDim2.new(0.510516226, 0, 0.430555522, 0)
  6909. CAimbotLabel.Size = UDim2.new(0.313575536, 0, 0.134920642, 0)
  6910. CAimbotLabel.ZIndex = 120
  6911. CAimbotLabel.Font = Enum.Font.Highway
  6912. CAimbotLabel.Text = "Coins Aimbot : "
  6913. CAimbotLabel.TextColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6914. CAimbotLabel.TextScaled = true
  6915. CAimbotLabel.TextSize = 14
  6916. CAimbotLabel.TextWrapped = true
  6917. CAimbotLabel.TextXAlignment = Enum.TextXAlignment.Left
  6918.  
  6919. CAimbotSwitch.Name = "CAimbotSwitch"
  6920. CAimbotSwitch.Parent = ExtrasFrame
  6921. CAimbotSwitch.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6922. CAimbotSwitch.BorderSizePixel = 0
  6923. CAimbotSwitch.Position = UDim2.new(0.923518181, 0, 0.460317552, 0)
  6924. CAimbotSwitch.Size = UDim2.new(0, 20, 0, 20)
  6925. CAimbotSwitch.ZIndex = 120
  6926. CAimbotSwitch.Font = Enum.Font.Highway
  6927. CAimbotSwitch.Text = ""
  6928. CAimbotSwitch.TextColor3 = Color3.new(1, 1, 1)
  6929. CAimbotSwitch.TextScaled = true
  6930. CAimbotSwitch.TextSize = 14
  6931. CAimbotSwitch.TextWrapped = true
  6932.  
  6933. Borders_6.Name = "Borders"
  6934. Borders_6.Parent = CAimbotSwitch
  6935. Borders_6.BackgroundColor3 = Color3.new(1, 1, 1)
  6936. Borders_6.BackgroundTransparency = 1
  6937. Borders_6.BorderSizePixel = 0
  6938. Borders_6.Size = UDim2.new(1, 0, 1, 0)
  6939. Borders_6.ZIndex = 120
  6940.  
  6941. Border_41.Name = "Border"
  6942. Border_41.Parent = Borders_6
  6943. Border_41.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6944. Border_41.BackgroundTransparency = 1
  6945. Border_41.BorderSizePixel = 0
  6946. Border_41.Position = UDim2.new(0, -12, 0, -12)
  6947. Border_41.Size = UDim2.new(0, 12, 0, 12)
  6948. Border_41.ZIndex = 110
  6949. Border_41.Image = "http://www.roblox.com/asset/?id=238725003"
  6950. Border_41.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6951. Border_41.ImageRectSize = Vector2.new(12, 12)
  6952.  
  6953. Border_42.Name = "Border"
  6954. Border_42.Parent = Borders_6
  6955. Border_42.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6956. Border_42.BackgroundTransparency = 1
  6957. Border_42.BorderSizePixel = 0
  6958. Border_42.Position = UDim2.new(1, 0, 0, -12)
  6959. Border_42.Size = UDim2.new(0, 12, 0, 12)
  6960. Border_42.ZIndex = 110
  6961. Border_42.Image = "http://www.roblox.com/asset/?id=238725003"
  6962. Border_42.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6963. Border_42.ImageRectOffset = Vector2.new(24, 0)
  6964. Border_42.ImageRectSize = Vector2.new(12, 12)
  6965.  
  6966. Border_43.Name = "Border"
  6967. Border_43.Parent = Borders_6
  6968. Border_43.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6969. Border_43.BackgroundTransparency = 1
  6970. Border_43.BorderSizePixel = 0
  6971. Border_43.Position = UDim2.new(0, -12, 1, 0)
  6972. Border_43.Size = UDim2.new(0, 12, 0, 12)
  6973. Border_43.ZIndex = 110
  6974. Border_43.Image = "http://www.roblox.com/asset/?id=238725003"
  6975. Border_43.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6976. Border_43.ImageRectOffset = Vector2.new(0, 24)
  6977. Border_43.ImageRectSize = Vector2.new(12, 12)
  6978.  
  6979. Border_44.Name = "Border"
  6980. Border_44.Parent = Borders_6
  6981. Border_44.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6982. Border_44.BackgroundTransparency = 1
  6983. Border_44.BorderSizePixel = 0
  6984. Border_44.Position = UDim2.new(1, 0, 1, 0)
  6985. Border_44.Size = UDim2.new(0, 12, 0, 12)
  6986. Border_44.ZIndex = 110
  6987. Border_44.Image = "http://www.roblox.com/asset/?id=238725003"
  6988. Border_44.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6989. Border_44.ImageRectOffset = Vector2.new(24, 24)
  6990. Border_44.ImageRectSize = Vector2.new(12, 12)
  6991.  
  6992. Border_45.Name = "Border"
  6993. Border_45.Parent = Borders_6
  6994. Border_45.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  6995. Border_45.BackgroundTransparency = 1
  6996. Border_45.BorderSizePixel = 0
  6997. Border_45.Position = UDim2.new(0, 0, 1, 0)
  6998. Border_45.Size = UDim2.new(1, 0, 0, 12)
  6999. Border_45.ZIndex = 110
  7000. Border_45.Image = "http://www.roblox.com/asset/?id=238725003"
  7001. Border_45.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  7002. Border_45.ImageRectOffset = Vector2.new(12, 24)
  7003. Border_45.ImageRectSize = Vector2.new(12, 12)
  7004.  
  7005. Border_46.Name = "Border"
  7006. Border_46.Parent = Borders_6
  7007. Border_46.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  7008. Border_46.BackgroundTransparency = 1
  7009. Border_46.BorderSizePixel = 0
  7010. Border_46.Position = UDim2.new(0, 0, 0, -12)
  7011. Border_46.Size = UDim2.new(1, 0, 0, 12)
  7012. Border_46.ZIndex = 110
  7013. Border_46.Image = "http://www.roblox.com/asset/?id=238725003"
  7014. Border_46.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  7015. Border_46.ImageRectOffset = Vector2.new(12, 0)
  7016. Border_46.ImageRectSize = Vector2.new(12, 12)
  7017.  
  7018. Border_47.Name = "Border"
  7019. Border_47.Parent = Borders_6
  7020. Border_47.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  7021. Border_47.BackgroundTransparency = 1
  7022. Border_47.BorderSizePixel = 0
  7023. Border_47.Position = UDim2.new(0, -12, 0, 0)
  7024. Border_47.Size = UDim2.new(0, 12, 1, 0)
  7025. Border_47.ZIndex = 110
  7026. Border_47.Image = "http://www.roblox.com/asset/?id=238725003"
  7027. Border_47.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  7028. Border_47.ImageRectOffset = Vector2.new(0, 12)
  7029. Border_47.ImageRectSize = Vector2.new(12, 12)
  7030.  
  7031. Border_48.Name = "Border"
  7032. Border_48.Parent = Borders_6
  7033. Border_48.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  7034. Border_48.BackgroundTransparency = 1
  7035. Border_48.BorderSizePixel = 0
  7036. Border_48.Position = UDim2.new(1, 0, 0, 0)
  7037. Border_48.Size = UDim2.new(0, 12, 1, 0)
  7038. Border_48.ZIndex = 110
  7039. Border_48.Image = "http://www.roblox.com/asset/?id=238725003"
  7040. Border_48.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  7041. Border_48.ImageRectOffset = Vector2.new(24, 12)
  7042. Border_48.ImageRectSize = Vector2.new(12, 12)
  7043.  
  7044. ChathookLabel.Name = "ChathookLabel"
  7045. ChathookLabel.Parent = ExtrasFrame
  7046. ChathookLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  7047. ChathookLabel.BackgroundTransparency = 1
  7048. ChathookLabel.BorderSizePixel = 0
  7049. ChathookLabel.Position = UDim2.new(0.510516226, 0, 0.628968239, 0)
  7050. ChathookLabel.Size = UDim2.new(0.313575536, 0, 0.134920642, 0)
  7051. ChathookLabel.ZIndex = 120
  7052. ChathookLabel.Font = Enum.Font.Highway
  7053. ChathookLabel.Text = "Chathook : "
  7054. ChathookLabel.TextColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  7055. ChathookLabel.TextScaled = true
  7056. ChathookLabel.TextSize = 14
  7057. ChathookLabel.TextWrapped = true
  7058. ChathookLabel.TextXAlignment = Enum.TextXAlignment.Left
  7059.  
  7060. ChathookSwitch.Name = "ChathookSwitch"
  7061. ChathookSwitch.Parent = ExtrasFrame
  7062. ChathookSwitch.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  7063. ChathookSwitch.BorderSizePixel = 0
  7064. ChathookSwitch.Position = UDim2.new(0.923518181, 0, 0.658730268, 0)
  7065. ChathookSwitch.Size = UDim2.new(0, 20, 0, 20)
  7066. ChathookSwitch.ZIndex = 120
  7067. ChathookSwitch.Font = Enum.Font.Highway
  7068. ChathookSwitch.Text = ""
  7069. ChathookSwitch.TextColor3 = Color3.new(1, 1, 1)
  7070. ChathookSwitch.TextScaled = true
  7071. ChathookSwitch.TextSize = 14
  7072. ChathookSwitch.TextWrapped = true
  7073.  
  7074. Borders_7.Name = "Borders"
  7075. Borders_7.Parent = ChathookSwitch
  7076. Borders_7.BackgroundColor3 = Color3.new(1, 1, 1)
  7077. Borders_7.BackgroundTransparency = 1
  7078. Borders_7.BorderSizePixel = 0
  7079. Borders_7.Size = UDim2.new(1, 0, 1, 0)
  7080. Borders_7.ZIndex = 120
  7081.  
  7082. Border_49.Name = "Border"
  7083. Border_49.Parent = Borders_7
  7084. Border_49.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  7085. Border_49.BackgroundTransparency = 1
  7086. Border_49.BorderSizePixel = 0
  7087. Border_49.Position = UDim2.new(0, -12, 0, -12)
  7088. Border_49.Size = UDim2.new(0, 12, 0, 12)
  7089. Border_49.ZIndex = 110
  7090. Border_49.Image = "http://www.roblox.com/asset/?id=238725003"
  7091. Border_49.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  7092. Border_49.ImageRectSize = Vector2.new(12, 12)
  7093.  
  7094. Border_50.Name = "Border"
  7095. Border_50.Parent = Borders_7
  7096. Border_50.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  7097. Border_50.BackgroundTransparency = 1
  7098. Border_50.BorderSizePixel = 0
  7099. Border_50.Position = UDim2.new(1, 0, 0, -12)
  7100. Border_50.Size = UDim2.new(0, 12, 0, 12)
  7101. Border_50.ZIndex = 110
  7102. Border_50.Image = "http://www.roblox.com/asset/?id=238725003"
  7103. Border_50.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  7104. Border_50.ImageRectOffset = Vector2.new(24, 0)
  7105. Border_50.ImageRectSize = Vector2.new(12, 12)
  7106.  
  7107. Border_51.Name = "Border"
  7108. Border_51.Parent = Borders_7
  7109. Border_51.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  7110. Border_51.BackgroundTransparency = 1
  7111. Border_51.BorderSizePixel = 0
  7112. Border_51.Position = UDim2.new(0, -12, 1, 0)
  7113. Border_51.Size = UDim2.new(0, 12, 0, 12)
  7114. Border_51.ZIndex = 110
  7115. Border_51.Image = "http://www.roblox.com/asset/?id=238725003"
  7116. Border_51.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  7117. Border_51.ImageRectOffset = Vector2.new(0, 24)
  7118. Border_51.ImageRectSize = Vector2.new(12, 12)
  7119.  
  7120. Border_52.Name = "Border"
  7121. Border_52.Parent = Borders_7
  7122. Border_52.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  7123. Border_52.BackgroundTransparency = 1
  7124. Border_52.BorderSizePixel = 0
  7125. Border_52.Position = UDim2.new(1, 0, 1, 0)
  7126. Border_52.Size = UDim2.new(0, 12, 0, 12)
  7127. Border_52.ZIndex = 110
  7128. Border_52.Image = "http://www.roblox.com/asset/?id=238725003"
  7129. Border_52.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  7130. Border_52.ImageRectOffset = Vector2.new(24, 24)
  7131. Border_52.ImageRectSize = Vector2.new(12, 12)
  7132.  
  7133. Border_53.Name = "Border"
  7134. Border_53.Parent = Borders_7
  7135. Border_53.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  7136. Border_53.BackgroundTransparency = 1
  7137. Border_53.BorderSizePixel = 0
  7138. Border_53.Position = UDim2.new(0, 0, 1, 0)
  7139. Border_53.Size = UDim2.new(1, 0, 0, 12)
  7140. Border_53.ZIndex = 110
  7141. Border_53.Image = "http://www.roblox.com/asset/?id=238725003"
  7142. Border_53.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  7143. Border_53.ImageRectOffset = Vector2.new(12, 24)
  7144. Border_53.ImageRectSize = Vector2.new(12, 12)
  7145.  
  7146. Border_54.Name = "Border"
  7147. Border_54.Parent = Borders_7
  7148. Border_54.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  7149. Border_54.BackgroundTransparency = 1
  7150. Border_54.BorderSizePixel = 0
  7151. Border_54.Position = UDim2.new(0, 0, 0, -12)
  7152. Border_54.Size = UDim2.new(1, 0, 0, 12)
  7153. Border_54.ZIndex = 110
  7154. Border_54.Image = "http://www.roblox.com/asset/?id=238725003"
  7155. Border_54.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  7156. Border_54.ImageRectOffset = Vector2.new(12, 0)
  7157. Border_54.ImageRectSize = Vector2.new(12, 12)
  7158.  
  7159. Border_55.Name = "Border"
  7160. Border_55.Parent = Borders_7
  7161. Border_55.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  7162. Border_55.BackgroundTransparency = 1
  7163. Border_55.BorderSizePixel = 0
  7164. Border_55.Position = UDim2.new(0, -12, 0, 0)
  7165. Border_55.Size = UDim2.new(0, 12, 1, 0)
  7166. Border_55.ZIndex = 110
  7167. Border_55.Image = "http://www.roblox.com/asset/?id=238725003"
  7168. Border_55.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  7169. Border_55.ImageRectOffset = Vector2.new(0, 12)
  7170. Border_55.ImageRectSize = Vector2.new(12, 12)
  7171.  
  7172. Border_56.Name = "Border"
  7173. Border_56.Parent = Borders_7
  7174. Border_56.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  7175. Border_56.BackgroundTransparency = 1
  7176. Border_56.BorderSizePixel = 0
  7177. Border_56.Position = UDim2.new(1, 0, 0, 0)
  7178. Border_56.Size = UDim2.new(0, 12, 1, 0)
  7179. Border_56.ZIndex = 110
  7180. Border_56.Image = "http://www.roblox.com/asset/?id=238725003"
  7181. Border_56.ImageColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  7182. Border_56.ImageRectOffset = Vector2.new(24, 12)
  7183. Border_56.ImageRectSize = Vector2.new(12, 12)
  7184.  
  7185. Goto.Name = "Goto"
  7186. Goto.Parent = ExtrasFrame
  7187. Goto.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  7188. Goto.BorderSizePixel = 0
  7189. Goto.Position = UDim2.new(0.525812626, 0, 0.865079343, 0)
  7190. Goto.Size = UDim2.new(0, 228, 0, 17)
  7191. Goto.ZIndex = 120
  7192. Goto.Font = Enum.Font.Highway
  7193. Goto.Text = "Credits"
  7194. Goto.TextColor3 = Color3.new(1, 1, 1)
  7195. Goto.TextScaled = true
  7196. Goto.TextSize = 14
  7197. Goto.TextWrapped = true
  7198.  
  7199. Borders_8.Name = "Borders"
  7200. Borders_8.Parent = Goto
  7201. Borders_8.BackgroundColor3 = Color3.new(1, 1, 1)
  7202. Borders_8.BackgroundTransparency = 1
  7203. Borders_8.BorderSizePixel = 0
  7204. Borders_8.Size = UDim2.new(1, 0, 1, 0)
  7205. Borders_8.ZIndex = 120
  7206.  
  7207. Border_57.Name = "Border"
  7208. Border_57.Parent = Borders_8
  7209. Border_57.BackgroundColor3 = Color3.new(1, 1, 1)
  7210. Border_57.BackgroundTransparency = 1
  7211. Border_57.BorderSizePixel = 0
  7212. Border_57.Position = UDim2.new(0, -12, 0, -12)
  7213. Border_57.Size = UDim2.new(0, 12, 0, 12)
  7214. Border_57.ZIndex = 110
  7215. Border_57.Image = "http://www.roblox.com/asset/?id=238725003"
  7216. Border_57.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  7217. Border_57.ImageRectSize = Vector2.new(12, 12)
  7218.  
  7219. Border_58.Name = "Border"
  7220. Border_58.Parent = Borders_8
  7221. Border_58.BackgroundColor3 = Color3.new(1, 1, 1)
  7222. Border_58.BackgroundTransparency = 1
  7223. Border_58.BorderSizePixel = 0
  7224. Border_58.Position = UDim2.new(1, 0, 0, -12)
  7225. Border_58.Size = UDim2.new(0, 12, 0, 12)
  7226. Border_58.ZIndex = 110
  7227. Border_58.Image = "http://www.roblox.com/asset/?id=238725003"
  7228. Border_58.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  7229. Border_58.ImageRectOffset = Vector2.new(24, 0)
  7230. Border_58.ImageRectSize = Vector2.new(12, 12)
  7231.  
  7232. Border_59.Name = "Border"
  7233. Border_59.Parent = Borders_8
  7234. Border_59.BackgroundColor3 = Color3.new(1, 1, 1)
  7235. Border_59.BackgroundTransparency = 1
  7236. Border_59.BorderSizePixel = 0
  7237. Border_59.Position = UDim2.new(0, -12, 1, 0)
  7238. Border_59.Size = UDim2.new(0, 12, 0, 12)
  7239. Border_59.ZIndex = 110
  7240. Border_59.Image = "http://www.roblox.com/asset/?id=238725003"
  7241. Border_59.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  7242. Border_59.ImageRectOffset = Vector2.new(0, 24)
  7243. Border_59.ImageRectSize = Vector2.new(12, 12)
  7244.  
  7245. Border_60.Name = "Border"
  7246. Border_60.Parent = Borders_8
  7247. Border_60.BackgroundColor3 = Color3.new(1, 1, 1)
  7248. Border_60.BackgroundTransparency = 1
  7249. Border_60.BorderSizePixel = 0
  7250. Border_60.Position = UDim2.new(1, 0, 1, 0)
  7251. Border_60.Size = UDim2.new(0, 12, 0, 12)
  7252. Border_60.ZIndex = 110
  7253. Border_60.Image = "http://www.roblox.com/asset/?id=238725003"
  7254. Border_60.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  7255. Border_60.ImageRectOffset = Vector2.new(24, 24)
  7256. Border_60.ImageRectSize = Vector2.new(12, 12)
  7257.  
  7258. Border_61.Name = "Border"
  7259. Border_61.Parent = Borders_8
  7260. Border_61.BackgroundColor3 = Color3.new(1, 1, 1)
  7261. Border_61.BackgroundTransparency = 1
  7262. Border_61.BorderSizePixel = 0
  7263. Border_61.Position = UDim2.new(0, 0, 1, 0)
  7264. Border_61.Size = UDim2.new(1, 0, 0, 12)
  7265. Border_61.ZIndex = 110
  7266. Border_61.Image = "http://www.roblox.com/asset/?id=238725003"
  7267. Border_61.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  7268. Border_61.ImageRectOffset = Vector2.new(12, 24)
  7269. Border_61.ImageRectSize = Vector2.new(12, 12)
  7270.  
  7271. Border_62.Name = "Border"
  7272. Border_62.Parent = Borders_8
  7273. Border_62.BackgroundColor3 = Color3.new(1, 1, 1)
  7274. Border_62.BackgroundTransparency = 1
  7275. Border_62.BorderSizePixel = 0
  7276. Border_62.Position = UDim2.new(0, 0, 0, -12)
  7277. Border_62.Size = UDim2.new(1, 0, 0, 12)
  7278. Border_62.ZIndex = 110
  7279. Border_62.Image = "http://www.roblox.com/asset/?id=238725003"
  7280. Border_62.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  7281. Border_62.ImageRectOffset = Vector2.new(12, 0)
  7282. Border_62.ImageRectSize = Vector2.new(12, 12)
  7283.  
  7284. Border_63.Name = "Border"
  7285. Border_63.Parent = Borders_8
  7286. Border_63.BackgroundColor3 = Color3.new(1, 1, 1)
  7287. Border_63.BackgroundTransparency = 1
  7288. Border_63.BorderSizePixel = 0
  7289. Border_63.Position = UDim2.new(0, -12, 0, 0)
  7290. Border_63.Size = UDim2.new(0, 12, 1, 0)
  7291. Border_63.ZIndex = 110
  7292. Border_63.Image = "http://www.roblox.com/asset/?id=238725003"
  7293. Border_63.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  7294. Border_63.ImageRectOffset = Vector2.new(0, 12)
  7295. Border_63.ImageRectSize = Vector2.new(12, 12)
  7296.  
  7297. Border_64.Name = "Border"
  7298. Border_64.Parent = Borders_8
  7299. Border_64.BackgroundColor3 = Color3.new(1, 1, 1)
  7300. Border_64.BackgroundTransparency = 1
  7301. Border_64.BorderSizePixel = 0
  7302. Border_64.Position = UDim2.new(1, 0, 0, 0)
  7303. Border_64.Size = UDim2.new(0, 12, 1, 0)
  7304. Border_64.ZIndex = 110
  7305. Border_64.Image = "http://www.roblox.com/asset/?id=238725003"
  7306. Border_64.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  7307. Border_64.ImageRectOffset = Vector2.new(24, 12)
  7308. Border_64.ImageRectSize = Vector2.new(12, 12)
  7309.  
  7310.  
  7311.  
  7312. -- Objects
  7313.  
  7314. MainCommandsFrame = Instance.new("Frame")
  7315. Playername = Instance.new("TextBox")
  7316. Borders = Instance.new("Frame")
  7317. Border = Instance.new("ImageLabel")
  7318. Border_2 = Instance.new("ImageLabel")
  7319. Border_3 = Instance.new("ImageLabel")
  7320. Border_4 = Instance.new("ImageLabel")
  7321. Border_5 = Instance.new("ImageLabel")
  7322. Border_6 = Instance.new("ImageLabel")
  7323. Border_7 = Instance.new("ImageLabel")
  7324. Border_8 = Instance.new("ImageLabel")
  7325. Pickups = Instance.new("TextButton")
  7326. Borders_2 = Instance.new("Frame")
  7327. Border_9 = Instance.new("ImageLabel")
  7328. Border_10 = Instance.new("ImageLabel")
  7329. Border_11 = Instance.new("ImageLabel")
  7330. Border_12 = Instance.new("ImageLabel")
  7331. Border_13 = Instance.new("ImageLabel")
  7332. Border_14 = Instance.new("ImageLabel")
  7333. Border_15 = Instance.new("ImageLabel")
  7334. Border_16 = Instance.new("ImageLabel")
  7335. LeaderVote = Instance.new("TextButton")
  7336. Borders_3 = Instance.new("Frame")
  7337. Border_17 = Instance.new("ImageLabel")
  7338. Border_18 = Instance.new("ImageLabel")
  7339. Border_19 = Instance.new("ImageLabel")
  7340. Border_20 = Instance.new("ImageLabel")
  7341. Border_21 = Instance.new("ImageLabel")
  7342. Border_22 = Instance.new("ImageLabel")
  7343. Border_23 = Instance.new("ImageLabel")
  7344. Border_24 = Instance.new("ImageLabel")
  7345. VerifyProfile = Instance.new("TextButton")
  7346. Borders_4 = Instance.new("Frame")
  7347. Border_25 = Instance.new("ImageLabel")
  7348. Border_26 = Instance.new("ImageLabel")
  7349. Border_27 = Instance.new("ImageLabel")
  7350. Border_28 = Instance.new("ImageLabel")
  7351. Border_29 = Instance.new("ImageLabel")
  7352. Border_30 = Instance.new("ImageLabel")
  7353. Border_31 = Instance.new("ImageLabel")
  7354. Border_32 = Instance.new("ImageLabel")
  7355. KickVote = Instance.new("TextButton")
  7356. Borders_5 = Instance.new("Frame")
  7357. Border_33 = Instance.new("ImageLabel")
  7358. Border_34 = Instance.new("ImageLabel")
  7359. Border_35 = Instance.new("ImageLabel")
  7360. Border_36 = Instance.new("ImageLabel")
  7361. Border_37 = Instance.new("ImageLabel")
  7362. Border_38 = Instance.new("ImageLabel")
  7363. Border_39 = Instance.new("ImageLabel")
  7364. Border_40 = Instance.new("ImageLabel")
  7365. ShowInventory = Instance.new("TextButton")
  7366. Borders_6 = Instance.new("Frame")
  7367. Border_41 = Instance.new("ImageLabel")
  7368. Border_42 = Instance.new("ImageLabel")
  7369. Border_43 = Instance.new("ImageLabel")
  7370. Border_44 = Instance.new("ImageLabel")
  7371. Border_45 = Instance.new("ImageLabel")
  7372. Border_46 = Instance.new("ImageLabel")
  7373. Border_47 = Instance.new("ImageLabel")
  7374. Border_48 = Instance.new("ImageLabel")
  7375. JuryVote = Instance.new("TextButton")
  7376. Borders_7 = Instance.new("Frame")
  7377. Border_49 = Instance.new("ImageLabel")
  7378. Border_50 = Instance.new("ImageLabel")
  7379. Border_51 = Instance.new("ImageLabel")
  7380. Border_52 = Instance.new("ImageLabel")
  7381. Border_53 = Instance.new("ImageLabel")
  7382. Border_54 = Instance.new("ImageLabel")
  7383. Border_55 = Instance.new("ImageLabel")
  7384. Border_56 = Instance.new("ImageLabel")
  7385. Goto = Instance.new("TextButton")
  7386. Borders_8 = Instance.new("Frame")
  7387. Border_57 = Instance.new("ImageLabel")
  7388. Border_58 = Instance.new("ImageLabel")
  7389. Border_59 = Instance.new("ImageLabel")
  7390. Border_60 = Instance.new("ImageLabel")
  7391. Border_61 = Instance.new("ImageLabel")
  7392. Border_62 = Instance.new("ImageLabel")
  7393. Border_63 = Instance.new("ImageLabel")
  7394. Border_64 = Instance.new("ImageLabel")
  7395. ViewProfile = Instance.new("TextButton")
  7396. Borders_9 = Instance.new("Frame")
  7397. Border_65 = Instance.new("ImageLabel")
  7398. Border_66 = Instance.new("ImageLabel")
  7399. Border_67 = Instance.new("ImageLabel")
  7400. Border_68 = Instance.new("ImageLabel")
  7401. Border_69 = Instance.new("ImageLabel")
  7402. Border_70 = Instance.new("ImageLabel")
  7403. Border_71 = Instance.new("ImageLabel")
  7404. Border_72 = Instance.new("ImageLabel")
  7405. PlayerIcon = Instance.new("ImageLabel")
  7406. Borders_10 = Instance.new("Frame")
  7407. Border_73 = Instance.new("ImageLabel")
  7408. Border_74 = Instance.new("ImageLabel")
  7409. Border_75 = Instance.new("ImageLabel")
  7410. Border_76 = Instance.new("ImageLabel")
  7411. Border_77 = Instance.new("ImageLabel")
  7412. Border_78 = Instance.new("ImageLabel")
  7413. Border_79 = Instance.new("ImageLabel")
  7414. Border_80 = Instance.new("ImageLabel")
  7415. PlayerNameLabel = Instance.new("TextLabel")
  7416.  
  7417. -- Properties
  7418.  
  7419. MainCommandsFrame.Name = "MainCommandsFrame"
  7420. MainCommandsFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  7421. MainCommandsFrame.BackgroundTransparency = 1
  7422. MainCommandsFrame.BorderSizePixel = 0
  7423. MainCommandsFrame.Size = UDim2.new(1, 0, 1, 0)
  7424.  
  7425. Playername.Name = "Playername"
  7426. Playername.Parent = MainCommandsFrame
  7427. Playername.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  7428. Playername.BorderSizePixel = 0
  7429. Playername.Position = UDim2.new(0.0210325047, 0, 0.027777778, 0)
  7430. Playername.Size = UDim2.new(0.957934976, 0, 0.0714285746, 0)
  7431. Playername.ZIndex = 120
  7432. Playername.Font = Enum.Font.Highway
  7433. Playername.PlaceholderColor3 = Color3.new(1, 1, 1)
  7434. Playername.Text = "Player Name"
  7435. Playername.TextColor3 = Color3.new(1, 1, 1)
  7436. Playername.TextScaled = true
  7437. Playername.TextSize = 14
  7438. Playername.TextWrapped = true
  7439. Playername.TextXAlignment = Enum.TextXAlignment.Left
  7440.  
  7441. Borders.Name = "Borders"
  7442. Borders.Parent = Playername
  7443. Borders.BackgroundColor3 = Color3.new(1, 1, 1)
  7444. Borders.BackgroundTransparency = 1
  7445. Borders.BorderSizePixel = 0
  7446. Borders.Size = UDim2.new(1, 0, 1, 0)
  7447. Borders.ZIndex = 120
  7448.  
  7449. Border.Name = "Border"
  7450. Border.Parent = Borders
  7451. Border.BackgroundColor3 = Color3.new(1, 1, 1)
  7452. Border.BackgroundTransparency = 1
  7453. Border.BorderSizePixel = 0
  7454. Border.Position = UDim2.new(0, -12, 0, -12)
  7455. Border.Size = UDim2.new(0, 12, 0, 12)
  7456. Border.ZIndex = 110
  7457. Border.Image = "http://www.roblox.com/asset/?id=238725003"
  7458. Border.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  7459. Border.ImageRectSize = Vector2.new(12, 12)
  7460.  
  7461. Border_2.Name = "Border"
  7462. Border_2.Parent = Borders
  7463. Border_2.BackgroundColor3 = Color3.new(1, 1, 1)
  7464. Border_2.BackgroundTransparency = 1
  7465. Border_2.BorderSizePixel = 0
  7466. Border_2.Position = UDim2.new(1, 0, 0, -12)
  7467. Border_2.Size = UDim2.new(0, 12, 0, 12)
  7468. Border_2.ZIndex = 110
  7469. Border_2.Image = "http://www.roblox.com/asset/?id=238725003"
  7470. Border_2.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  7471. Border_2.ImageRectOffset = Vector2.new(24, 0)
  7472. Border_2.ImageRectSize = Vector2.new(12, 12)
  7473.  
  7474. Border_3.Name = "Border"
  7475. Border_3.Parent = Borders
  7476. Border_3.BackgroundColor3 = Color3.new(1, 1, 1)
  7477. Border_3.BackgroundTransparency = 1
  7478. Border_3.BorderSizePixel = 0
  7479. Border_3.Position = UDim2.new(0, -12, 1, 0)
  7480. Border_3.Size = UDim2.new(0, 12, 0, 12)
  7481. Border_3.ZIndex = 110
  7482. Border_3.Image = "http://www.roblox.com/asset/?id=238725003"
  7483. Border_3.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  7484. Border_3.ImageRectOffset = Vector2.new(0, 24)
  7485. Border_3.ImageRectSize = Vector2.new(12, 12)
  7486.  
  7487. Border_4.Name = "Border"
  7488. Border_4.Parent = Borders
  7489. Border_4.BackgroundColor3 = Color3.new(1, 1, 1)
  7490. Border_4.BackgroundTransparency = 1
  7491. Border_4.BorderSizePixel = 0
  7492. Border_4.Position = UDim2.new(1, 0, 1, 0)
  7493. Border_4.Size = UDim2.new(0, 12, 0, 12)
  7494. Border_4.ZIndex = 110
  7495. Border_4.Image = "http://www.roblox.com/asset/?id=238725003"
  7496. Border_4.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  7497. Border_4.ImageRectOffset = Vector2.new(24, 24)
  7498. Border_4.ImageRectSize = Vector2.new(12, 12)
  7499.  
  7500. Border_5.Name = "Border"
  7501. Border_5.Parent = Borders
  7502. Border_5.BackgroundColor3 = Color3.new(1, 1, 1)
  7503. Border_5.BackgroundTransparency = 1
  7504. Border_5.BorderSizePixel = 0
  7505. Border_5.Position = UDim2.new(0, 0, 1, 0)
  7506. Border_5.Size = UDim2.new(1, 0, 0, 12)
  7507. Border_5.ZIndex = 110
  7508. Border_5.Image = "http://www.roblox.com/asset/?id=238725003"
  7509. Border_5.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  7510. Border_5.ImageRectOffset = Vector2.new(12, 24)
  7511. Border_5.ImageRectSize = Vector2.new(12, 12)
  7512.  
  7513. Border_6.Name = "Border"
  7514. Border_6.Parent = Borders
  7515. Border_6.BackgroundColor3 = Color3.new(1, 1, 1)
  7516. Border_6.BackgroundTransparency = 1
  7517. Border_6.BorderSizePixel = 0
  7518. Border_6.Position = UDim2.new(0, 0, 0, -12)
  7519. Border_6.Size = UDim2.new(1, 0, 0, 12)
  7520. Border_6.ZIndex = 110
  7521. Border_6.Image = "http://www.roblox.com/asset/?id=238725003"
  7522. Border_6.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  7523. Border_6.ImageRectOffset = Vector2.new(12, 0)
  7524. Border_6.ImageRectSize = Vector2.new(12, 12)
  7525.  
  7526. Border_7.Name = "Border"
  7527. Border_7.Parent = Borders
  7528. Border_7.BackgroundColor3 = Color3.new(1, 1, 1)
  7529. Border_7.BackgroundTransparency = 1
  7530. Border_7.BorderSizePixel = 0
  7531. Border_7.Position = UDim2.new(0, -12, 0, 0)
  7532. Border_7.Size = UDim2.new(0, 12, 1, 0)
  7533. Border_7.ZIndex = 110
  7534. Border_7.Image = "http://www.roblox.com/asset/?id=238725003"
  7535. Border_7.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  7536. Border_7.ImageRectOffset = Vector2.new(0, 12)
  7537. Border_7.ImageRectSize = Vector2.new(12, 12)
  7538.  
  7539. Border_8.Name = "Border"
  7540. Border_8.Parent = Borders
  7541. Border_8.BackgroundColor3 = Color3.new(1, 1, 1)
  7542. Border_8.BackgroundTransparency = 1
  7543. Border_8.BorderSizePixel = 0
  7544. Border_8.Position = UDim2.new(1, 0, 0, 0)
  7545. Border_8.Size = UDim2.new(0, 12, 1, 0)
  7546. Border_8.ZIndex = 110
  7547. Border_8.Image = "http://www.roblox.com/asset/?id=238725003"
  7548. Border_8.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  7549. Border_8.ImageRectOffset = Vector2.new(24, 12)
  7550. Border_8.ImageRectSize = Vector2.new(12, 12)
  7551.  
  7552. Pickups.Name = "Pickups"
  7553. Pickups.Parent = MainCommandsFrame
  7554. Pickups.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  7555. Pickups.BorderSizePixel = 0
  7556. Pickups.Position = UDim2.new(0.0210325047, 0, 0.888888896, 0)
  7557. Pickups.Size = UDim2.new(0, 501, 0, 17)
  7558. Pickups.ZIndex = 120
  7559. Pickups.Font = Enum.Font.Highway
  7560. Pickups.Text = "Get Pickups"
  7561. Pickups.TextColor3 = Color3.new(1, 1, 1)
  7562. Pickups.TextScaled = true
  7563. Pickups.TextSize = 14
  7564. Pickups.TextWrapped = true
  7565.  
  7566. Borders_2.Name = "Borders"
  7567. Borders_2.Parent = Pickups
  7568. Borders_2.BackgroundColor3 = Color3.new(1, 1, 1)
  7569. Borders_2.BackgroundTransparency = 1
  7570. Borders_2.BorderSizePixel = 0
  7571. Borders_2.Size = UDim2.new(1, 0, 1, 0)
  7572. Borders_2.ZIndex = 120
  7573.  
  7574. Border_9.Name = "Border"
  7575. Border_9.Parent = Borders_2
  7576. Border_9.BackgroundColor3 = Color3.new(1, 1, 1)
  7577. Border_9.BackgroundTransparency = 1
  7578. Border_9.BorderSizePixel = 0
  7579. Border_9.Position = UDim2.new(0, -12, 0, -12)
  7580. Border_9.Size = UDim2.new(0, 12, 0, 12)
  7581. Border_9.ZIndex = 110
  7582. Border_9.Image = "http://www.roblox.com/asset/?id=238725003"
  7583. Border_9.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  7584. Border_9.ImageRectSize = Vector2.new(12, 12)
  7585.  
  7586. Border_10.Name = "Border"
  7587. Border_10.Parent = Borders_2
  7588. Border_10.BackgroundColor3 = Color3.new(1, 1, 1)
  7589. Border_10.BackgroundTransparency = 1
  7590. Border_10.BorderSizePixel = 0
  7591. Border_10.Position = UDim2.new(1, 0, 0, -12)
  7592. Border_10.Size = UDim2.new(0, 12, 0, 12)
  7593. Border_10.ZIndex = 110
  7594. Border_10.Image = "http://www.roblox.com/asset/?id=238725003"
  7595. Border_10.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  7596. Border_10.ImageRectOffset = Vector2.new(24, 0)
  7597. Border_10.ImageRectSize = Vector2.new(12, 12)
  7598.  
  7599. Border_11.Name = "Border"
  7600. Border_11.Parent = Borders_2
  7601. Border_11.BackgroundColor3 = Color3.new(1, 1, 1)
  7602. Border_11.BackgroundTransparency = 1
  7603. Border_11.BorderSizePixel = 0
  7604. Border_11.Position = UDim2.new(0, -12, 1, 0)
  7605. Border_11.Size = UDim2.new(0, 12, 0, 12)
  7606. Border_11.ZIndex = 110
  7607. Border_11.Image = "http://www.roblox.com/asset/?id=238725003"
  7608. Border_11.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  7609. Border_11.ImageRectOffset = Vector2.new(0, 24)
  7610. Border_11.ImageRectSize = Vector2.new(12, 12)
  7611.  
  7612. Border_12.Name = "Border"
  7613. Border_12.Parent = Borders_2
  7614. Border_12.BackgroundColor3 = Color3.new(1, 1, 1)
  7615. Border_12.BackgroundTransparency = 1
  7616. Border_12.BorderSizePixel = 0
  7617. Border_12.Position = UDim2.new(1, 0, 1, 0)
  7618. Border_12.Size = UDim2.new(0, 12, 0, 12)
  7619. Border_12.ZIndex = 110
  7620. Border_12.Image = "http://www.roblox.com/asset/?id=238725003"
  7621. Border_12.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  7622. Border_12.ImageRectOffset = Vector2.new(24, 24)
  7623. Border_12.ImageRectSize = Vector2.new(12, 12)
  7624.  
  7625. Border_13.Name = "Border"
  7626. Border_13.Parent = Borders_2
  7627. Border_13.BackgroundColor3 = Color3.new(1, 1, 1)
  7628. Border_13.BackgroundTransparency = 1
  7629. Border_13.BorderSizePixel = 0
  7630. Border_13.Position = UDim2.new(0, 0, 1, 0)
  7631. Border_13.Size = UDim2.new(1, 0, 0, 12)
  7632. Border_13.ZIndex = 110
  7633. Border_13.Image = "http://www.roblox.com/asset/?id=238725003"
  7634. Border_13.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  7635. Border_13.ImageRectOffset = Vector2.new(12, 24)
  7636. Border_13.ImageRectSize = Vector2.new(12, 12)
  7637.  
  7638. Border_14.Name = "Border"
  7639. Border_14.Parent = Borders_2
  7640. Border_14.BackgroundColor3 = Color3.new(1, 1, 1)
  7641. Border_14.BackgroundTransparency = 1
  7642. Border_14.BorderSizePixel = 0
  7643. Border_14.Position = UDim2.new(0, 0, 0, -12)
  7644. Border_14.Size = UDim2.new(1, 0, 0, 12)
  7645. Border_14.ZIndex = 110
  7646. Border_14.Image = "http://www.roblox.com/asset/?id=238725003"
  7647. Border_14.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  7648. Border_14.ImageRectOffset = Vector2.new(12, 0)
  7649. Border_14.ImageRectSize = Vector2.new(12, 12)
  7650.  
  7651. Border_15.Name = "Border"
  7652. Border_15.Parent = Borders_2
  7653. Border_15.BackgroundColor3 = Color3.new(1, 1, 1)
  7654. Border_15.BackgroundTransparency = 1
  7655. Border_15.BorderSizePixel = 0
  7656. Border_15.Position = UDim2.new(0, -12, 0, 0)
  7657. Border_15.Size = UDim2.new(0, 12, 1, 0)
  7658. Border_15.ZIndex = 110
  7659. Border_15.Image = "http://www.roblox.com/asset/?id=238725003"
  7660. Border_15.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  7661. Border_15.ImageRectOffset = Vector2.new(0, 12)
  7662. Border_15.ImageRectSize = Vector2.new(12, 12)
  7663.  
  7664. Border_16.Name = "Border"
  7665. Border_16.Parent = Borders_2
  7666. Border_16.BackgroundColor3 = Color3.new(1, 1, 1)
  7667. Border_16.BackgroundTransparency = 1
  7668. Border_16.BorderSizePixel = 0
  7669. Border_16.Position = UDim2.new(1, 0, 0, 0)
  7670. Border_16.Size = UDim2.new(0, 12, 1, 0)
  7671. Border_16.ZIndex = 110
  7672. Border_16.Image = "http://www.roblox.com/asset/?id=238725003"
  7673. Border_16.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  7674. Border_16.ImageRectOffset = Vector2.new(24, 12)
  7675. Border_16.ImageRectSize = Vector2.new(12, 12)
  7676.  
  7677. LeaderVote.Name = "LeaderVote"
  7678. LeaderVote.Parent = MainCommandsFrame
  7679. LeaderVote.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  7680. LeaderVote.BorderSizePixel = 0
  7681. LeaderVote.Position = UDim2.new(0.36328873, 0, 0.706349194, 0)
  7682. LeaderVote.Size = UDim2.new(0, 144, 0, 17)
  7683. LeaderVote.ZIndex = 120
  7684. LeaderVote.Font = Enum.Font.Highway
  7685. LeaderVote.Text = "Leader Vote"
  7686. LeaderVote.TextColor3 = Color3.new(1, 1, 1)
  7687. LeaderVote.TextScaled = true
  7688. LeaderVote.TextSize = 14
  7689. LeaderVote.TextWrapped = true
  7690.  
  7691. Borders_3.Name = "Borders"
  7692. Borders_3.Parent = LeaderVote
  7693. Borders_3.BackgroundColor3 = Color3.new(1, 1, 1)
  7694. Borders_3.BackgroundTransparency = 1
  7695. Borders_3.BorderSizePixel = 0
  7696. Borders_3.Size = UDim2.new(1, 0, 1, 0)
  7697. Borders_3.ZIndex = 120
  7698.  
  7699. Border_17.Name = "Border"
  7700. Border_17.Parent = Borders_3
  7701. Border_17.BackgroundColor3 = Color3.new(1, 1, 1)
  7702. Border_17.BackgroundTransparency = 1
  7703. Border_17.BorderSizePixel = 0
  7704. Border_17.Position = UDim2.new(0, -12, 0, -12)
  7705. Border_17.Size = UDim2.new(0, 12, 0, 12)
  7706. Border_17.ZIndex = 110
  7707. Border_17.Image = "http://www.roblox.com/asset/?id=238725003"
  7708. Border_17.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  7709. Border_17.ImageRectSize = Vector2.new(12, 12)
  7710.  
  7711. Border_18.Name = "Border"
  7712. Border_18.Parent = Borders_3
  7713. Border_18.BackgroundColor3 = Color3.new(1, 1, 1)
  7714. Border_18.BackgroundTransparency = 1
  7715. Border_18.BorderSizePixel = 0
  7716. Border_18.Position = UDim2.new(1, 0, 0, -12)
  7717. Border_18.Size = UDim2.new(0, 12, 0, 12)
  7718. Border_18.ZIndex = 110
  7719. Border_18.Image = "http://www.roblox.com/asset/?id=238725003"
  7720. Border_18.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  7721. Border_18.ImageRectOffset = Vector2.new(24, 0)
  7722. Border_18.ImageRectSize = Vector2.new(12, 12)
  7723.  
  7724. Border_19.Name = "Border"
  7725. Border_19.Parent = Borders_3
  7726. Border_19.BackgroundColor3 = Color3.new(1, 1, 1)
  7727. Border_19.BackgroundTransparency = 1
  7728. Border_19.BorderSizePixel = 0
  7729. Border_19.Position = UDim2.new(0, -12, 1, 0)
  7730. Border_19.Size = UDim2.new(0, 12, 0, 12)
  7731. Border_19.ZIndex = 110
  7732. Border_19.Image = "http://www.roblox.com/asset/?id=238725003"
  7733. Border_19.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  7734. Border_19.ImageRectOffset = Vector2.new(0, 24)
  7735. Border_19.ImageRectSize = Vector2.new(12, 12)
  7736.  
  7737. Border_20.Name = "Border"
  7738. Border_20.Parent = Borders_3
  7739. Border_20.BackgroundColor3 = Color3.new(1, 1, 1)
  7740. Border_20.BackgroundTransparency = 1
  7741. Border_20.BorderSizePixel = 0
  7742. Border_20.Position = UDim2.new(1, 0, 1, 0)
  7743. Border_20.Size = UDim2.new(0, 12, 0, 12)
  7744. Border_20.ZIndex = 110
  7745. Border_20.Image = "http://www.roblox.com/asset/?id=238725003"
  7746. Border_20.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  7747. Border_20.ImageRectOffset = Vector2.new(24, 24)
  7748. Border_20.ImageRectSize = Vector2.new(12, 12)
  7749.  
  7750. Border_21.Name = "Border"
  7751. Border_21.Parent = Borders_3
  7752. Border_21.BackgroundColor3 = Color3.new(1, 1, 1)
  7753. Border_21.BackgroundTransparency = 1
  7754. Border_21.BorderSizePixel = 0
  7755. Border_21.Position = UDim2.new(0, 0, 1, 0)
  7756. Border_21.Size = UDim2.new(1, 0, 0, 12)
  7757. Border_21.ZIndex = 110
  7758. Border_21.Image = "http://www.roblox.com/asset/?id=238725003"
  7759. Border_21.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  7760. Border_21.ImageRectOffset = Vector2.new(12, 24)
  7761. Border_21.ImageRectSize = Vector2.new(12, 12)
  7762.  
  7763. local function ReFly()
  7764. repeat wait()
  7765. until game.Players.LocalPlayer and game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:findFirstChild("Torso") and game.Players.LocalPlayer.Character:findFirstChild("Humanoid")
  7766. local mouse = game.Players.LocalPlayer:GetMouse()
  7767. repeat wait() until mouse
  7768. local plr = game.Players.LocalPlayer
  7769. local torso = plr.Character.Torso
  7770.  
  7771. local deb = true
  7772. local ctrl = {f = 0, b = 0, l = 0, r = 0}
  7773. local lastctrl = {f = 0, b = 0, l = 0, r = 0}
  7774. local maxspeed = 50
  7775. local speed = 0
  7776.  
  7777. function Fly()
  7778. local bg = Instance.new("BodyGyro", torso)
  7779. bg.P = 9e4
  7780. bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  7781. bg.cframe = torso.CFrame
  7782. local bv = Instance.new("BodyVelocity", torso)
  7783. bv.velocity = Vector3.new(0,0.1,0)
  7784. bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
  7785. repeat wait()
  7786. plr.Character.Humanoid.PlatformStand = true
  7787. if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
  7788. speed = speed+.5+(speed/maxspeed)
  7789. if speed > maxspeed then
  7790. speed = maxspeed
  7791. end
  7792. elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
  7793. speed = speed-1
  7794. if speed < 0 then
  7795. speed = 0
  7796. end
  7797. end
  7798. if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
  7799. 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
  7800. lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
  7801. elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
  7802. 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
  7803. else
  7804. bv.velocity = Vector3.new(0,0.1,0)
  7805. end
  7806. bg.cframe = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/maxspeed),0,0)
  7807. until not Data.SwitchData.Flying
  7808. ctrl = {f = 0, b = 0, l = 0, r = 0}
  7809. lastctrl = {f = 0, b = 0, l = 0, r = 0}
  7810. speed = 0
  7811. bg:Destroy()
  7812. bv:Destroy()
  7813. plr.Character.Humanoid.PlatformStand = false
  7814. end
  7815. mouse.KeyDown:connect(function(key)
  7816. if key:lower() == "Deez" then
  7817. if Data.SwitchData.Flying then Data.SwitchData.Flying = false
  7818. else
  7819. Data.SwitchData.Flying = true
  7820. Fly()
  7821. end
  7822. elseif key:lower() == "w" then
  7823. ctrl.f = 1
  7824. elseif key:lower() == "s" then
  7825. ctrl.b = -1
  7826. elseif key:lower() == "a" then
  7827. ctrl.l = -1
  7828. elseif key:lower() == "d" then
  7829. ctrl.r = 1
  7830. end
  7831. end)
  7832. mouse.KeyUp:connect(function(key)
  7833. if key:lower() == "w" then
  7834. ctrl.f = 0
  7835. elseif key:lower() == "s" then
  7836. ctrl.b = 0
  7837. elseif key:lower() == "a" then
  7838. ctrl.l = 0
  7839. elseif key:lower() == "d" then
  7840. ctrl.r = 0
  7841. end
  7842. end)
  7843. end
  7844.  
  7845. Border_22.Name = "Border"
  7846. Border_22.Parent = Borders_3
  7847. Border_22.BackgroundColor3 = Color3.new(1, 1, 1)
  7848. Border_22.BackgroundTransparency = 1
  7849. Border_22.BorderSizePixel = 0
  7850. Border_22.Position = UDim2.new(0, 0, 0, -12)
  7851. Border_22.Size = UDim2.new(1, 0, 0, 12)
  7852. Border_22.ZIndex = 110
  7853. Border_22.Image = "http://www.roblox.com/asset/?id=238725003"
  7854. Border_22.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  7855. Border_22.ImageRectOffset = Vector2.new(12, 0)
  7856. Border_22.ImageRectSize = Vector2.new(12, 12)
  7857.  
  7858. Border_23.Name = "Border"
  7859. Border_23.Parent = Borders_3
  7860. Border_23.BackgroundColor3 = Color3.new(1, 1, 1)
  7861. Border_23.BackgroundTransparency = 1
  7862. Border_23.BorderSizePixel = 0
  7863. Border_23.Position = UDim2.new(0, -12, 0, 0)
  7864. Border_23.Size = UDim2.new(0, 12, 1, 0)
  7865. Border_23.ZIndex = 110
  7866. Border_23.Image = "http://www.roblox.com/asset/?id=238725003"
  7867. Border_23.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  7868. Border_23.ImageRectOffset = Vector2.new(0, 12)
  7869. Border_23.ImageRectSize = Vector2.new(12, 12)
  7870.  
  7871. Border_24.Name = "Border"
  7872. Border_24.Parent = Borders_3
  7873. Border_24.BackgroundColor3 = Color3.new(1, 1, 1)
  7874. Border_24.BackgroundTransparency = 1
  7875. Border_24.BorderSizePixel = 0
  7876. Border_24.Position = UDim2.new(1, 0, 0, 0)
  7877. Border_24.Size = UDim2.new(0, 12, 1, 0)
  7878. Border_24.ZIndex = 110
  7879. Border_24.Image = "http://www.roblox.com/asset/?id=238725003"
  7880. Border_24.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  7881. Border_24.ImageRectOffset = Vector2.new(24, 12)
  7882. Border_24.ImageRectSize = Vector2.new(12, 12)
  7883.  
  7884. VerifyProfile.Name = "VerifyProfile"
  7885. VerifyProfile.Parent = MainCommandsFrame
  7886. VerifyProfile.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  7887. VerifyProfile.BorderSizePixel = 0
  7888. VerifyProfile.Position = UDim2.new(0.703632891, 0, 0.53174603, 0)
  7889. VerifyProfile.Size = UDim2.new(0, 144, 0, 17)
  7890. VerifyProfile.ZIndex = 120
  7891. VerifyProfile.Font = Enum.Font.Highway
  7892. VerifyProfile.Text = "Verify Profile"
  7893. VerifyProfile.TextColor3 = Color3.new(1, 1, 1)
  7894. VerifyProfile.TextScaled = true
  7895. VerifyProfile.TextSize = 14
  7896. VerifyProfile.TextWrapped = true
  7897.  
  7898. Borders_4.Name = "Borders"
  7899. Borders_4.Parent = VerifyProfile
  7900. Borders_4.BackgroundColor3 = Color3.new(1, 1, 1)
  7901. Borders_4.BackgroundTransparency = 1
  7902. Borders_4.BorderSizePixel = 0
  7903. Borders_4.Size = UDim2.new(1, 0, 1, 0)
  7904. Borders_4.ZIndex = 120
  7905.  
  7906. Border_25.Name = "Border"
  7907. Border_25.Parent = Borders_4
  7908. Border_25.BackgroundColor3 = Color3.new(1, 1, 1)
  7909. Border_25.BackgroundTransparency = 1
  7910. Border_25.BorderSizePixel = 0
  7911. Border_25.Position = UDim2.new(0, -12, 0, -12)
  7912. Border_25.Size = UDim2.new(0, 12, 0, 12)
  7913. Border_25.ZIndex = 110
  7914. Border_25.Image = "http://www.roblox.com/asset/?id=238725003"
  7915. Border_25.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  7916. Border_25.ImageRectSize = Vector2.new(12, 12)
  7917.  
  7918. Border_26.Name = "Border"
  7919. Border_26.Parent = Borders_4
  7920. Border_26.BackgroundColor3 = Color3.new(1, 1, 1)
  7921. Border_26.BackgroundTransparency = 1
  7922. Border_26.BorderSizePixel = 0
  7923. Border_26.Position = UDim2.new(1, 0, 0, -12)
  7924. Border_26.Size = UDim2.new(0, 12, 0, 12)
  7925. Border_26.ZIndex = 110
  7926. Border_26.Image = "http://www.roblox.com/asset/?id=238725003"
  7927. Border_26.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  7928. Border_26.ImageRectOffset = Vector2.new(24, 0)
  7929. Border_26.ImageRectSize = Vector2.new(12, 12)
  7930.  
  7931. Border_27.Name = "Border"
  7932. Border_27.Parent = Borders_4
  7933. Border_27.BackgroundColor3 = Color3.new(1, 1, 1)
  7934. Border_27.BackgroundTransparency = 1
  7935. Border_27.BorderSizePixel = 0
  7936. Border_27.Position = UDim2.new(0, -12, 1, 0)
  7937. Border_27.Size = UDim2.new(0, 12, 0, 12)
  7938. Border_27.ZIndex = 110
  7939. Border_27.Image = "http://www.roblox.com/asset/?id=238725003"
  7940. Border_27.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  7941. Border_27.ImageRectOffset = Vector2.new(0, 24)
  7942. Border_27.ImageRectSize = Vector2.new(12, 12)
  7943.  
  7944. Border_28.Name = "Border"
  7945. Border_28.Parent = Borders_4
  7946. Border_28.BackgroundColor3 = Color3.new(1, 1, 1)
  7947. Border_28.BackgroundTransparency = 1
  7948. Border_28.BorderSizePixel = 0
  7949. Border_28.Position = UDim2.new(1, 0, 1, 0)
  7950. Border_28.Size = UDim2.new(0, 12, 0, 12)
  7951. Border_28.ZIndex = 110
  7952. Border_28.Image = "http://www.roblox.com/asset/?id=238725003"
  7953. Border_28.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  7954. Border_28.ImageRectOffset = Vector2.new(24, 24)
  7955. Border_28.ImageRectSize = Vector2.new(12, 12)
  7956.  
  7957. Border_29.Name = "Border"
  7958. Border_29.Parent = Borders_4
  7959. Border_29.BackgroundColor3 = Color3.new(1, 1, 1)
  7960. Border_29.BackgroundTransparency = 1
  7961. Border_29.BorderSizePixel = 0
  7962. Border_29.Position = UDim2.new(0, 0, 1, 0)
  7963. Border_29.Size = UDim2.new(1, 0, 0, 12)
  7964. Border_29.ZIndex = 110
  7965. Border_29.Image = "http://www.roblox.com/asset/?id=238725003"
  7966. Border_29.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  7967. Border_29.ImageRectOffset = Vector2.new(12, 24)
  7968. Border_29.ImageRectSize = Vector2.new(12, 12)
  7969.  
  7970. Border_30.Name = "Border"
  7971. Border_30.Parent = Borders_4
  7972. Border_30.BackgroundColor3 = Color3.new(1, 1, 1)
  7973. Border_30.BackgroundTransparency = 1
  7974. Border_30.BorderSizePixel = 0
  7975. Border_30.Position = UDim2.new(0, 0, 0, -12)
  7976. Border_30.Size = UDim2.new(1, 0, 0, 12)
  7977. Border_30.ZIndex = 110
  7978. Border_30.Image = "http://www.roblox.com/asset/?id=238725003"
  7979. Border_30.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  7980. Border_30.ImageRectOffset = Vector2.new(12, 0)
  7981. Border_30.ImageRectSize = Vector2.new(12, 12)
  7982.  
  7983. Border_31.Name = "Border"
  7984. Border_31.Parent = Borders_4
  7985. Border_31.BackgroundColor3 = Color3.new(1, 1, 1)
  7986. Border_31.BackgroundTransparency = 1
  7987. Border_31.BorderSizePixel = 0
  7988. Border_31.Position = UDim2.new(0, -12, 0, 0)
  7989. Border_31.Size = UDim2.new(0, 12, 1, 0)
  7990. Border_31.ZIndex = 110
  7991. Border_31.Image = "http://www.roblox.com/asset/?id=238725003"
  7992. Border_31.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  7993. Border_31.ImageRectOffset = Vector2.new(0, 12)
  7994. Border_31.ImageRectSize = Vector2.new(12, 12)
  7995.  
  7996. Border_32.Name = "Border"
  7997. Border_32.Parent = Borders_4
  7998. Border_32.BackgroundColor3 = Color3.new(1, 1, 1)
  7999. Border_32.BackgroundTransparency = 1
  8000. Border_32.BorderSizePixel = 0
  8001. Border_32.Position = UDim2.new(1, 0, 0, 0)
  8002. Border_32.Size = UDim2.new(0, 12, 1, 0)
  8003. Border_32.ZIndex = 110
  8004. Border_32.Image = "http://www.roblox.com/asset/?id=238725003"
  8005. Border_32.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  8006. Border_32.ImageRectOffset = Vector2.new(24, 12)
  8007. Border_32.ImageRectSize = Vector2.new(12, 12)
  8008.  
  8009. KickVote.Name = "KickVote"
  8010. KickVote.Parent = MainCommandsFrame
  8011. KickVote.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  8012. KickVote.BorderSizePixel = 0
  8013. KickVote.Position = UDim2.new(0.0210325047, 0, 0.53174603, 0)
  8014. KickVote.Size = UDim2.new(0, 144, 0, 17)
  8015. KickVote.ZIndex = 120
  8016. KickVote.Font = Enum.Font.Highway
  8017. KickVote.Text = "Kick Vote"
  8018. KickVote.TextColor3 = Color3.new(1, 1, 1)
  8019. KickVote.TextScaled = true
  8020. KickVote.TextSize = 14
  8021. KickVote.TextWrapped = true
  8022.  
  8023. Borders_5.Name = "Borders"
  8024. Borders_5.Parent = KickVote
  8025. Borders_5.BackgroundColor3 = Color3.new(1, 1, 1)
  8026. Borders_5.BackgroundTransparency = 1
  8027. Borders_5.BorderSizePixel = 0
  8028. Borders_5.Size = UDim2.new(1, 0, 1, 0)
  8029. Borders_5.ZIndex = 120
  8030.  
  8031. Border_33.Name = "Border"
  8032. Border_33.Parent = Borders_5
  8033. Border_33.BackgroundColor3 = Color3.new(1, 1, 1)
  8034. Border_33.BackgroundTransparency = 1
  8035. Border_33.BorderSizePixel = 0
  8036. Border_33.Position = UDim2.new(0, -12, 0, -12)
  8037. Border_33.Size = UDim2.new(0, 12, 0, 12)
  8038. Border_33.ZIndex = 110
  8039. Border_33.Image = "http://www.roblox.com/asset/?id=238725003"
  8040. Border_33.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  8041. Border_33.ImageRectSize = Vector2.new(12, 12)
  8042.  
  8043. Border_34.Name = "Border"
  8044. Border_34.Parent = Borders_5
  8045. Border_34.BackgroundColor3 = Color3.new(1, 1, 1)
  8046. Border_34.BackgroundTransparency = 1
  8047. Border_34.BorderSizePixel = 0
  8048. Border_34.Position = UDim2.new(1, 0, 0, -12)
  8049. Border_34.Size = UDim2.new(0, 12, 0, 12)
  8050. Border_34.ZIndex = 110
  8051. Border_34.Image = "http://www.roblox.com/asset/?id=238725003"
  8052. Border_34.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  8053. Border_34.ImageRectOffset = Vector2.new(24, 0)
  8054. Border_34.ImageRectSize = Vector2.new(12, 12)
  8055.  
  8056. Border_35.Name = "Border"
  8057. Border_35.Parent = Borders_5
  8058. Border_35.BackgroundColor3 = Color3.new(1, 1, 1)
  8059. Border_35.BackgroundTransparency = 1
  8060. Border_35.BorderSizePixel = 0
  8061. Border_35.Position = UDim2.new(0, -12, 1, 0)
  8062. Border_35.Size = UDim2.new(0, 12, 0, 12)
  8063. Border_35.ZIndex = 110
  8064. Border_35.Image = "http://www.roblox.com/asset/?id=238725003"
  8065. Border_35.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  8066. Border_35.ImageRectOffset = Vector2.new(0, 24)
  8067. Border_35.ImageRectSize = Vector2.new(12, 12)
  8068.  
  8069. Border_36.Name = "Border"
  8070. Border_36.Parent = Borders_5
  8071. Border_36.BackgroundColor3 = Color3.new(1, 1, 1)
  8072. Border_36.BackgroundTransparency = 1
  8073. Border_36.BorderSizePixel = 0
  8074. Border_36.Position = UDim2.new(1, 0, 1, 0)
  8075. Border_36.Size = UDim2.new(0, 12, 0, 12)
  8076. Border_36.ZIndex = 110
  8077. Border_36.Image = "http://www.roblox.com/asset/?id=238725003"
  8078. Border_36.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  8079. Border_36.ImageRectOffset = Vector2.new(24, 24)
  8080. Border_36.ImageRectSize = Vector2.new(12, 12)
  8081.  
  8082. Border_37.Name = "Border"
  8083. Border_37.Parent = Borders_5
  8084. Border_37.BackgroundColor3 = Color3.new(1, 1, 1)
  8085. Border_37.BackgroundTransparency = 1
  8086. Border_37.BorderSizePixel = 0
  8087. Border_37.Position = UDim2.new(0, 0, 1, 0)
  8088. Border_37.Size = UDim2.new(1, 0, 0, 12)
  8089. Border_37.ZIndex = 110
  8090. Border_37.Image = "http://www.roblox.com/asset/?id=238725003"
  8091. Border_37.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  8092. Border_37.ImageRectOffset = Vector2.new(12, 24)
  8093. Border_37.ImageRectSize = Vector2.new(12, 12)
  8094.  
  8095. Border_38.Name = "Border"
  8096. Border_38.Parent = Borders_5
  8097. Border_38.BackgroundColor3 = Color3.new(1, 1, 1)
  8098. Border_38.BackgroundTransparency = 1
  8099. Border_38.BorderSizePixel = 0
  8100. Border_38.Position = UDim2.new(0, 0, 0, -12)
  8101. Border_38.Size = UDim2.new(1, 0, 0, 12)
  8102. Border_38.ZIndex = 110
  8103. Border_38.Image = "http://www.roblox.com/asset/?id=238725003"
  8104. Border_38.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  8105. Border_38.ImageRectOffset = Vector2.new(12, 0)
  8106. Border_38.ImageRectSize = Vector2.new(12, 12)
  8107.  
  8108. Border_39.Name = "Border"
  8109. Border_39.Parent = Borders_5
  8110. Border_39.BackgroundColor3 = Color3.new(1, 1, 1)
  8111. Border_39.BackgroundTransparency = 1
  8112. Border_39.BorderSizePixel = 0
  8113. Border_39.Position = UDim2.new(0, -12, 0, 0)
  8114. Border_39.Size = UDim2.new(0, 12, 1, 0)
  8115. Border_39.ZIndex = 110
  8116. Border_39.Image = "http://www.roblox.com/asset/?id=238725003"
  8117. Border_39.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  8118. Border_39.ImageRectOffset = Vector2.new(0, 12)
  8119. Border_39.ImageRectSize = Vector2.new(12, 12)
  8120.  
  8121. Border_40.Name = "Border"
  8122. Border_40.Parent = Borders_5
  8123. Border_40.BackgroundColor3 = Color3.new(1, 1, 1)
  8124. Border_40.BackgroundTransparency = 1
  8125. Border_40.BorderSizePixel = 0
  8126. Border_40.Position = UDim2.new(1, 0, 0, 0)
  8127. Border_40.Size = UDim2.new(0, 12, 1, 0)
  8128. Border_40.ZIndex = 110
  8129. Border_40.Image = "http://www.roblox.com/asset/?id=238725003"
  8130. Border_40.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  8131. Border_40.ImageRectOffset = Vector2.new(24, 12)
  8132. Border_40.ImageRectSize = Vector2.new(12, 12)
  8133.  
  8134. ShowInventory.Name = "ShowInventory"
  8135. ShowInventory.Parent = MainCommandsFrame
  8136. ShowInventory.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  8137. ShowInventory.BorderSizePixel = 0
  8138. ShowInventory.Position = UDim2.new(0.0210325047, 0, 0.706349194, 0)
  8139. ShowInventory.Size = UDim2.new(0, 144, 0, 17)
  8140. ShowInventory.ZIndex = 120
  8141. ShowInventory.Font = Enum.Font.Highway
  8142. ShowInventory.Text = "Show Inventory"
  8143. ShowInventory.TextColor3 = Color3.new(1, 1, 1)
  8144. ShowInventory.TextScaled = true
  8145. ShowInventory.TextSize = 14
  8146. ShowInventory.TextWrapped = true
  8147.  
  8148. Borders_6.Name = "Borders"
  8149. Borders_6.Parent = ShowInventory
  8150. Borders_6.BackgroundColor3 = Color3.new(1, 1, 1)
  8151. Borders_6.BackgroundTransparency = 1
  8152. Borders_6.BorderSizePixel = 0
  8153. Borders_6.Size = UDim2.new(1, 0, 1, 0)
  8154. Borders_6.ZIndex = 120
  8155.  
  8156. Border_41.Name = "Border"
  8157. Border_41.Parent = Borders_6
  8158. Border_41.BackgroundColor3 = Color3.new(1, 1, 1)
  8159. Border_41.BackgroundTransparency = 1
  8160. Border_41.BorderSizePixel = 0
  8161. Border_41.Position = UDim2.new(0, -12, 0, -12)
  8162. Border_41.Size = UDim2.new(0, 12, 0, 12)
  8163. Border_41.ZIndex = 110
  8164. Border_41.Image = "http://www.roblox.com/asset/?id=238725003"
  8165. Border_41.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  8166. Border_41.ImageRectSize = Vector2.new(12, 12)
  8167.  
  8168. Border_42.Name = "Border"
  8169. Border_42.Parent = Borders_6
  8170. Border_42.BackgroundColor3 = Color3.new(1, 1, 1)
  8171. Border_42.BackgroundTransparency = 1
  8172. Border_42.BorderSizePixel = 0
  8173. Border_42.Position = UDim2.new(1, 0, 0, -12)
  8174. Border_42.Size = UDim2.new(0, 12, 0, 12)
  8175. Border_42.ZIndex = 110
  8176. Border_42.Image = "http://www.roblox.com/asset/?id=238725003"
  8177. Border_42.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  8178. Border_42.ImageRectOffset = Vector2.new(24, 0)
  8179. Border_42.ImageRectSize = Vector2.new(12, 12)
  8180.  
  8181. Border_43.Name = "Border"
  8182. Border_43.Parent = Borders_6
  8183. Border_43.BackgroundColor3 = Color3.new(1, 1, 1)
  8184. Border_43.BackgroundTransparency = 1
  8185. Border_43.BorderSizePixel = 0
  8186. Border_43.Position = UDim2.new(0, -12, 1, 0)
  8187. Border_43.Size = UDim2.new(0, 12, 0, 12)
  8188. Border_43.ZIndex = 110
  8189. Border_43.Image = "http://www.roblox.com/asset/?id=238725003"
  8190. Border_43.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  8191. Border_43.ImageRectOffset = Vector2.new(0, 24)
  8192. Border_43.ImageRectSize = Vector2.new(12, 12)
  8193.  
  8194. Border_44.Name = "Border"
  8195. Border_44.Parent = Borders_6
  8196. Border_44.BackgroundColor3 = Color3.new(1, 1, 1)
  8197. Border_44.BackgroundTransparency = 1
  8198. Border_44.BorderSizePixel = 0
  8199. Border_44.Position = UDim2.new(1, 0, 1, 0)
  8200. Border_44.Size = UDim2.new(0, 12, 0, 12)
  8201. Border_44.ZIndex = 110
  8202. Border_44.Image = "http://www.roblox.com/asset/?id=238725003"
  8203. Border_44.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  8204. Border_44.ImageRectOffset = Vector2.new(24, 24)
  8205. Border_44.ImageRectSize = Vector2.new(12, 12)
  8206.  
  8207. Border_45.Name = "Border"
  8208. Border_45.Parent = Borders_6
  8209. Border_45.BackgroundColor3 = Color3.new(1, 1, 1)
  8210. Border_45.BackgroundTransparency = 1
  8211. Border_45.BorderSizePixel = 0
  8212. Border_45.Position = UDim2.new(0, 0, 1, 0)
  8213. Border_45.Size = UDim2.new(1, 0, 0, 12)
  8214. Border_45.ZIndex = 110
  8215. Border_45.Image = "http://www.roblox.com/asset/?id=238725003"
  8216. Border_45.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  8217. Border_45.ImageRectOffset = Vector2.new(12, 24)
  8218. Border_45.ImageRectSize = Vector2.new(12, 12)
  8219.  
  8220. Border_46.Name = "Border"
  8221. Border_46.Parent = Borders_6
  8222. Border_46.BackgroundColor3 = Color3.new(1, 1, 1)
  8223. Border_46.BackgroundTransparency = 1
  8224. Border_46.BorderSizePixel = 0
  8225. Border_46.Position = UDim2.new(0, 0, 0, -12)
  8226. Border_46.Size = UDim2.new(1, 0, 0, 12)
  8227. Border_46.ZIndex = 110
  8228. Border_46.Image = "http://www.roblox.com/asset/?id=238725003"
  8229. Border_46.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  8230. Border_46.ImageRectOffset = Vector2.new(12, 0)
  8231. Border_46.ImageRectSize = Vector2.new(12, 12)
  8232.  
  8233. Border_47.Name = "Border"
  8234. Border_47.Parent = Borders_6
  8235. Border_47.BackgroundColor3 = Color3.new(1, 1, 1)
  8236. Border_47.BackgroundTransparency = 1
  8237. Border_47.BorderSizePixel = 0
  8238. Border_47.Position = UDim2.new(0, -12, 0, 0)
  8239. Border_47.Size = UDim2.new(0, 12, 1, 0)
  8240. Border_47.ZIndex = 110
  8241. Border_47.Image = "http://www.roblox.com/asset/?id=238725003"
  8242. Border_47.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  8243. Border_47.ImageRectOffset = Vector2.new(0, 12)
  8244. Border_47.ImageRectSize = Vector2.new(12, 12)
  8245.  
  8246. Border_48.Name = "Border"
  8247. Border_48.Parent = Borders_6
  8248. Border_48.BackgroundColor3 = Color3.new(1, 1, 1)
  8249. Border_48.BackgroundTransparency = 1
  8250. Border_48.BorderSizePixel = 0
  8251. Border_48.Position = UDim2.new(1, 0, 0, 0)
  8252. Border_48.Size = UDim2.new(0, 12, 1, 0)
  8253. Border_48.ZIndex = 110
  8254. Border_48.Image = "http://www.roblox.com/asset/?id=238725003"
  8255. Border_48.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  8256. Border_48.ImageRectOffset = Vector2.new(24, 12)
  8257. Border_48.ImageRectSize = Vector2.new(12, 12)
  8258.  
  8259. JuryVote.Name = "JuryVote"
  8260. JuryVote.Parent = MainCommandsFrame
  8261. JuryVote.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  8262. JuryVote.BorderSizePixel = 0
  8263. JuryVote.Position = UDim2.new(0.703632891, 0, 0.706349194, 0)
  8264. JuryVote.Size = UDim2.new(0, 144, 0, 17)
  8265. JuryVote.ZIndex = 120
  8266. JuryVote.Font = Enum.Font.Highway
  8267. JuryVote.Text = "Jury Vote"
  8268. JuryVote.TextColor3 = Color3.new(1, 1, 1)
  8269. JuryVote.TextScaled = true
  8270. JuryVote.TextSize = 14
  8271. JuryVote.TextWrapped = true
  8272.  
  8273. Borders_7.Name = "Borders"
  8274. Borders_7.Parent = JuryVote
  8275. Borders_7.BackgroundColor3 = Color3.new(1, 1, 1)
  8276. Borders_7.BackgroundTransparency = 1
  8277. Borders_7.BorderSizePixel = 0
  8278. Borders_7.Size = UDim2.new(1, 0, 1, 0)
  8279. Borders_7.ZIndex = 120
  8280.  
  8281. Border_49.Name = "Border"
  8282. Border_49.Parent = Borders_7
  8283. Border_49.BackgroundColor3 = Color3.new(1, 1, 1)
  8284. Border_49.BackgroundTransparency = 1
  8285. Border_49.BorderSizePixel = 0
  8286. Border_49.Position = UDim2.new(0, -12, 0, -12)
  8287. Border_49.Size = UDim2.new(0, 12, 0, 12)
  8288. Border_49.ZIndex = 110
  8289. Border_49.Image = "http://www.roblox.com/asset/?id=238725003"
  8290. Border_49.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  8291. Border_49.ImageRectSize = Vector2.new(12, 12)
  8292.  
  8293. Border_50.Name = "Border"
  8294. Border_50.Parent = Borders_7
  8295. Border_50.BackgroundColor3 = Color3.new(1, 1, 1)
  8296. Border_50.BackgroundTransparency = 1
  8297. Border_50.BorderSizePixel = 0
  8298. Border_50.Position = UDim2.new(1, 0, 0, -12)
  8299. Border_50.Size = UDim2.new(0, 12, 0, 12)
  8300. Border_50.ZIndex = 110
  8301. Border_50.Image = "http://www.roblox.com/asset/?id=238725003"
  8302. Border_50.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  8303. Border_50.ImageRectOffset = Vector2.new(24, 0)
  8304. Border_50.ImageRectSize = Vector2.new(12, 12)
  8305.  
  8306. Border_51.Name = "Border"
  8307. Border_51.Parent = Borders_7
  8308. Border_51.BackgroundColor3 = Color3.new(1, 1, 1)
  8309. Border_51.BackgroundTransparency = 1
  8310. Border_51.BorderSizePixel = 0
  8311. Border_51.Position = UDim2.new(0, -12, 1, 0)
  8312. Border_51.Size = UDim2.new(0, 12, 0, 12)
  8313. Border_51.ZIndex = 110
  8314. Border_51.Image = "http://www.roblox.com/asset/?id=238725003"
  8315. Border_51.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  8316. Border_51.ImageRectOffset = Vector2.new(0, 24)
  8317. Border_51.ImageRectSize = Vector2.new(12, 12)
  8318.  
  8319. Border_52.Name = "Border"
  8320. Border_52.Parent = Borders_7
  8321. Border_52.BackgroundColor3 = Color3.new(1, 1, 1)
  8322. Border_52.BackgroundTransparency = 1
  8323. Border_52.BorderSizePixel = 0
  8324. Border_52.Position = UDim2.new(1, 0, 1, 0)
  8325. Border_52.Size = UDim2.new(0, 12, 0, 12)
  8326. Border_52.ZIndex = 110
  8327. Border_52.Image = "http://www.roblox.com/asset/?id=238725003"
  8328. Border_52.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  8329. Border_52.ImageRectOffset = Vector2.new(24, 24)
  8330. Border_52.ImageRectSize = Vector2.new(12, 12)
  8331.  
  8332. Border_53.Name = "Border"
  8333. Border_53.Parent = Borders_7
  8334. Border_53.BackgroundColor3 = Color3.new(1, 1, 1)
  8335. Border_53.BackgroundTransparency = 1
  8336. Border_53.BorderSizePixel = 0
  8337. Border_53.Position = UDim2.new(0, 0, 1, 0)
  8338. Border_53.Size = UDim2.new(1, 0, 0, 12)
  8339. Border_53.ZIndex = 110
  8340. Border_53.Image = "http://www.roblox.com/asset/?id=238725003"
  8341. Border_53.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  8342. Border_53.ImageRectOffset = Vector2.new(12, 24)
  8343. Border_53.ImageRectSize = Vector2.new(12, 12)
  8344.  
  8345. Border_54.Name = "Border"
  8346. Border_54.Parent = Borders_7
  8347. Border_54.BackgroundColor3 = Color3.new(1, 1, 1)
  8348. Border_54.BackgroundTransparency = 1
  8349. Border_54.BorderSizePixel = 0
  8350. Border_54.Position = UDim2.new(0, 0, 0, -12)
  8351. Border_54.Size = UDim2.new(1, 0, 0, 12)
  8352. Border_54.ZIndex = 110
  8353. Border_54.Image = "http://www.roblox.com/asset/?id=238725003"
  8354. Border_54.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  8355. Border_54.ImageRectOffset = Vector2.new(12, 0)
  8356. Border_54.ImageRectSize = Vector2.new(12, 12)
  8357.  
  8358. Border_55.Name = "Border"
  8359. Border_55.Parent = Borders_7
  8360. Border_55.BackgroundColor3 = Color3.new(1, 1, 1)
  8361. Border_55.BackgroundTransparency = 1
  8362. Border_55.BorderSizePixel = 0
  8363. Border_55.Position = UDim2.new(0, -12, 0, 0)
  8364. Border_55.Size = UDim2.new(0, 12, 1, 0)
  8365. Border_55.ZIndex = 110
  8366. Border_55.Image = "http://www.roblox.com/asset/?id=238725003"
  8367. Border_55.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  8368. Border_55.ImageRectOffset = Vector2.new(0, 12)
  8369. Border_55.ImageRectSize = Vector2.new(12, 12)
  8370.  
  8371. Border_56.Name = "Border"
  8372. Border_56.Parent = Borders_7
  8373. Border_56.BackgroundColor3 = Color3.new(1, 1, 1)
  8374. Border_56.BackgroundTransparency = 1
  8375. Border_56.BorderSizePixel = 0
  8376. Border_56.Position = UDim2.new(1, 0, 0, 0)
  8377. Border_56.Size = UDim2.new(0, 12, 1, 0)
  8378. Border_56.ZIndex = 110
  8379. Border_56.Image = "http://www.roblox.com/asset/?id=238725003"
  8380. Border_56.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  8381. Border_56.ImageRectOffset = Vector2.new(24, 12)
  8382. Border_56.ImageRectSize = Vector2.new(12, 12)
  8383.  
  8384. Goto.Name = "Goto"
  8385. Goto.Parent = MainCommandsFrame
  8386. Goto.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  8387. Goto.BorderSizePixel = 0
  8388. Goto.Position = UDim2.new(0.36328873, 0, 0.53174603, 0)
  8389. Goto.Size = UDim2.new(0, 144, 0, 17)
  8390. Goto.ZIndex = 120
  8391. Goto.Font = Enum.Font.Highway
  8392. Goto.Text = "Goto"
  8393. Goto.TextColor3 = Color3.new(1, 1, 1)
  8394. Goto.TextScaled = true
  8395. Goto.TextSize = 14
  8396. Goto.TextWrapped = true
  8397.  
  8398. Borders_8.Name = "Borders"
  8399. Borders_8.Parent = Goto
  8400. Borders_8.BackgroundColor3 = Color3.new(1, 1, 1)
  8401. Borders_8.BackgroundTransparency = 1
  8402. Borders_8.BorderSizePixel = 0
  8403. Borders_8.Size = UDim2.new(1, 0, 1, 0)
  8404. Borders_8.ZIndex = 120
  8405.  
  8406. Border_57.Name = "Border"
  8407. Border_57.Parent = Borders_8
  8408. Border_57.BackgroundColor3 = Color3.new(1, 1, 1)
  8409. Border_57.BackgroundTransparency = 1
  8410. Border_57.BorderSizePixel = 0
  8411. Border_57.Position = UDim2.new(0, -12, 0, -12)
  8412. Border_57.Size = UDim2.new(0, 12, 0, 12)
  8413. Border_57.ZIndex = 110
  8414. Border_57.Image = "http://www.roblox.com/asset/?id=238725003"
  8415. Border_57.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  8416. Border_57.ImageRectSize = Vector2.new(12, 12)
  8417.  
  8418. Border_58.Name = "Border"
  8419. Border_58.Parent = Borders_8
  8420. Border_58.BackgroundColor3 = Color3.new(1, 1, 1)
  8421. Border_58.BackgroundTransparency = 1
  8422. Border_58.BorderSizePixel = 0
  8423. Border_58.Position = UDim2.new(1, 0, 0, -12)
  8424. Border_58.Size = UDim2.new(0, 12, 0, 12)
  8425. Border_58.ZIndex = 110
  8426. Border_58.Image = "http://www.roblox.com/asset/?id=238725003"
  8427. Border_58.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  8428. Border_58.ImageRectOffset = Vector2.new(24, 0)
  8429. Border_58.ImageRectSize = Vector2.new(12, 12)
  8430.  
  8431. Border_59.Name = "Border"
  8432. Border_59.Parent = Borders_8
  8433. Border_59.BackgroundColor3 = Color3.new(1, 1, 1)
  8434. Border_59.BackgroundTransparency = 1
  8435. Border_59.BorderSizePixel = 0
  8436. Border_59.Position = UDim2.new(0, -12, 1, 0)
  8437. Border_59.Size = UDim2.new(0, 12, 0, 12)
  8438. Border_59.ZIndex = 110
  8439. Border_59.Image = "http://www.roblox.com/asset/?id=238725003"
  8440. Border_59.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  8441. Border_59.ImageRectOffset = Vector2.new(0, 24)
  8442. Border_59.ImageRectSize = Vector2.new(12, 12)
  8443.  
  8444. Border_60.Name = "Border"
  8445. Border_60.Parent = Borders_8
  8446. Border_60.BackgroundColor3 = Color3.new(1, 1, 1)
  8447. Border_60.BackgroundTransparency = 1
  8448. Border_60.BorderSizePixel = 0
  8449. Border_60.Position = UDim2.new(1, 0, 1, 0)
  8450. Border_60.Size = UDim2.new(0, 12, 0, 12)
  8451. Border_60.ZIndex = 110
  8452. Border_60.Image = "http://www.roblox.com/asset/?id=238725003"
  8453. Border_60.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  8454. Border_60.ImageRectOffset = Vector2.new(24, 24)
  8455. Border_60.ImageRectSize = Vector2.new(12, 12)
  8456.  
  8457. Border_61.Name = "Border"
  8458. Border_61.Parent = Borders_8
  8459. Border_61.BackgroundColor3 = Color3.new(1, 1, 1)
  8460. Border_61.BackgroundTransparency = 1
  8461. Border_61.BorderSizePixel = 0
  8462. Border_61.Position = UDim2.new(0, 0, 1, 0)
  8463. Border_61.Size = UDim2.new(1, 0, 0, 12)
  8464. Border_61.ZIndex = 110
  8465. Border_61.Image = "http://www.roblox.com/asset/?id=238725003"
  8466. Border_61.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  8467. Border_61.ImageRectOffset = Vector2.new(12, 24)
  8468. Border_61.ImageRectSize = Vector2.new(12, 12)
  8469.  
  8470. Border_62.Name = "Border"
  8471. Border_62.Parent = Borders_8
  8472. Border_62.BackgroundColor3 = Color3.new(1, 1, 1)
  8473. Border_62.BackgroundTransparency = 1
  8474. Border_62.BorderSizePixel = 0
  8475. Border_62.Position = UDim2.new(0, 0, 0, -12)
  8476. Border_62.Size = UDim2.new(1, 0, 0, 12)
  8477. Border_62.ZIndex = 110
  8478. Border_62.Image = "http://www.roblox.com/asset/?id=238725003"
  8479. Border_62.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  8480. Border_62.ImageRectOffset = Vector2.new(12, 0)
  8481. Border_62.ImageRectSize = Vector2.new(12, 12)
  8482.  
  8483. Border_63.Name = "Border"
  8484. Border_63.Parent = Borders_8
  8485. Border_63.BackgroundColor3 = Color3.new(1, 1, 1)
  8486. Border_63.BackgroundTransparency = 1
  8487. Border_63.BorderSizePixel = 0
  8488. Border_63.Position = UDim2.new(0, -12, 0, 0)
  8489. Border_63.Size = UDim2.new(0, 12, 1, 0)
  8490. Border_63.ZIndex = 110
  8491. Border_63.Image = "http://www.roblox.com/asset/?id=238725003"
  8492. Border_63.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  8493. Border_63.ImageRectOffset = Vector2.new(0, 12)
  8494. Border_63.ImageRectSize = Vector2.new(12, 12)
  8495.  
  8496. Border_64.Name = "Border"
  8497. Border_64.Parent = Borders_8
  8498. Border_64.BackgroundColor3 = Color3.new(1, 1, 1)
  8499. Border_64.BackgroundTransparency = 1
  8500. Border_64.BorderSizePixel = 0
  8501. Border_64.Position = UDim2.new(1, 0, 0, 0)
  8502. Border_64.Size = UDim2.new(0, 12, 1, 0)
  8503. Border_64.ZIndex = 110
  8504. Border_64.Image = "http://www.roblox.com/asset/?id=238725003"
  8505. Border_64.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  8506. Border_64.ImageRectOffset = Vector2.new(24, 12)
  8507. Border_64.ImageRectSize = Vector2.new(12, 12)
  8508.  
  8509. ViewProfile.Name = "ViewProfile"
  8510. ViewProfile.Parent = MainCommandsFrame
  8511. ViewProfile.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  8512. ViewProfile.BorderSizePixel = 0
  8513. ViewProfile.Position = UDim2.new(0.703632891, 0, 0.275793672, 0)
  8514. ViewProfile.Size = UDim2.new(0, 144, 0, 17)
  8515. ViewProfile.ZIndex = 120
  8516. ViewProfile.Font = Enum.Font.Highway
  8517. ViewProfile.Text = "View Profile"
  8518. ViewProfile.TextColor3 = Color3.new(1, 1, 1)
  8519. ViewProfile.TextScaled = true
  8520. ViewProfile.TextSize = 14
  8521. ViewProfile.TextWrapped = true
  8522.  
  8523. Borders_9.Name = "Borders"
  8524. Borders_9.Parent = ViewProfile
  8525. Borders_9.BackgroundColor3 = Color3.new(1, 1, 1)
  8526. Borders_9.BackgroundTransparency = 1
  8527. Borders_9.BorderSizePixel = 0
  8528. Borders_9.Size = UDim2.new(1, 0, 1, 0)
  8529. Borders_9.ZIndex = 120
  8530.  
  8531. Border_65.Name = "Border"
  8532. Border_65.Parent = Borders_9
  8533. Border_65.BackgroundColor3 = Color3.new(1, 1, 1)
  8534. Border_65.BackgroundTransparency = 1
  8535. Border_65.BorderSizePixel = 0
  8536. Border_65.Position = UDim2.new(0, -12, 0, -12)
  8537. Border_65.Size = UDim2.new(0, 12, 0, 12)
  8538. Border_65.ZIndex = 110
  8539. Border_65.Image = "http://www.roblox.com/asset/?id=238725003"
  8540. Border_65.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  8541. Border_65.ImageRectSize = Vector2.new(12, 12)
  8542.  
  8543. Border_66.Name = "Border"
  8544. Border_66.Parent = Borders_9
  8545. Border_66.BackgroundColor3 = Color3.new(1, 1, 1)
  8546. Border_66.BackgroundTransparency = 1
  8547. Border_66.BorderSizePixel = 0
  8548. Border_66.Position = UDim2.new(1, 0, 0, -12)
  8549. Border_66.Size = UDim2.new(0, 12, 0, 12)
  8550. Border_66.ZIndex = 110
  8551. Border_66.Image = "http://www.roblox.com/asset/?id=238725003"
  8552. Border_66.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  8553. Border_66.ImageRectOffset = Vector2.new(24, 0)
  8554. Border_66.ImageRectSize = Vector2.new(12, 12)
  8555.  
  8556. Border_67.Name = "Border"
  8557. Border_67.Parent = Borders_9
  8558. Border_67.BackgroundColor3 = Color3.new(1, 1, 1)
  8559. Border_67.BackgroundTransparency = 1
  8560. Border_67.BorderSizePixel = 0
  8561. Border_67.Position = UDim2.new(0, -12, 1, 0)
  8562. Border_67.Size = UDim2.new(0, 12, 0, 12)
  8563. Border_67.ZIndex = 110
  8564. Border_67.Image = "http://www.roblox.com/asset/?id=238725003"
  8565. Border_67.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  8566. Border_67.ImageRectOffset = Vector2.new(0, 24)
  8567. Border_67.ImageRectSize = Vector2.new(12, 12)
  8568.  
  8569. Border_68.Name = "Border"
  8570. Border_68.Parent = Borders_9
  8571. Border_68.BackgroundColor3 = Color3.new(1, 1, 1)
  8572. Border_68.BackgroundTransparency = 1
  8573. Border_68.BorderSizePixel = 0
  8574. Border_68.Position = UDim2.new(1, 0, 1, 0)
  8575. Border_68.Size = UDim2.new(0, 12, 0, 12)
  8576. Border_68.ZIndex = 110
  8577. Border_68.Image = "http://www.roblox.com/asset/?id=238725003"
  8578. Border_68.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  8579. Border_68.ImageRectOffset = Vector2.new(24, 24)
  8580. Border_68.ImageRectSize = Vector2.new(12, 12)
  8581.  
  8582. Border_69.Name = "Border"
  8583. Border_69.Parent = Borders_9
  8584. Border_69.BackgroundColor3 = Color3.new(1, 1, 1)
  8585. Border_69.BackgroundTransparency = 1
  8586. Border_69.BorderSizePixel = 0
  8587. Border_69.Position = UDim2.new(0, 0, 1, 0)
  8588. Border_69.Size = UDim2.new(1, 0, 0, 12)
  8589. Border_69.ZIndex = 110
  8590. Border_69.Image = "http://www.roblox.com/asset/?id=238725003"
  8591. Border_69.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  8592. Border_69.ImageRectOffset = Vector2.new(12, 24)
  8593. Border_69.ImageRectSize = Vector2.new(12, 12)
  8594.  
  8595. Border_70.Name = "Border"
  8596. Border_70.Parent = Borders_9
  8597. Border_70.BackgroundColor3 = Color3.new(1, 1, 1)
  8598. Border_70.BackgroundTransparency = 1
  8599. Border_70.BorderSizePixel = 0
  8600. Border_70.Position = UDim2.new(0, 0, 0, -12)
  8601. Border_70.Size = UDim2.new(1, 0, 0, 12)
  8602. Border_70.ZIndex = 110
  8603. Border_70.Image = "http://www.roblox.com/asset/?id=238725003"
  8604. Border_70.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  8605. Border_70.ImageRectOffset = Vector2.new(12, 0)
  8606. Border_70.ImageRectSize = Vector2.new(12, 12)
  8607.  
  8608. Border_71.Name = "Border"
  8609. Border_71.Parent = Borders_9
  8610. Border_71.BackgroundColor3 = Color3.new(1, 1, 1)
  8611. Border_71.BackgroundTransparency = 1
  8612. Border_71.BorderSizePixel = 0
  8613. Border_71.Position = UDim2.new(0, -12, 0, 0)
  8614. Border_71.Size = UDim2.new(0, 12, 1, 0)
  8615. Border_71.ZIndex = 110
  8616. Border_71.Image = "http://www.roblox.com/asset/?id=238725003"
  8617. Border_71.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  8618. Border_71.ImageRectOffset = Vector2.new(0, 12)
  8619. Border_71.ImageRectSize = Vector2.new(12, 12)
  8620.  
  8621. Border_72.Name = "Border"
  8622. Border_72.Parent = Borders_9
  8623. Border_72.BackgroundColor3 = Color3.new(1, 1, 1)
  8624. Border_72.BackgroundTransparency = 1
  8625. Border_72.BorderSizePixel = 0
  8626. Border_72.Position = UDim2.new(1, 0, 0, 0)
  8627. Border_72.Size = UDim2.new(0, 12, 1, 0)
  8628. Border_72.ZIndex = 110
  8629. Border_72.Image = "http://www.roblox.com/asset/?id=238725003"
  8630. Border_72.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  8631. Border_72.ImageRectOffset = Vector2.new(24, 12)
  8632. Border_72.ImageRectSize = Vector2.new(12, 12)
  8633.  
  8634. PlayerIcon.Name = "PlayerIcon"
  8635. PlayerIcon.Parent = MainCommandsFrame
  8636. PlayerIcon.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  8637. PlayerIcon.BorderSizePixel = 0
  8638. PlayerIcon.Position = UDim2.new(0, 11, 0, 53)
  8639. PlayerIcon.Size = UDim2.new(0, 50, 0, 50)
  8640. PlayerIcon.ZIndex = 110
  8641. PlayerIcon.Image = "rbxassetid://1677963821"
  8642.  
  8643. Borders_10.Name = "Borders"
  8644. Borders_10.Parent = PlayerIcon
  8645. Borders_10.BackgroundColor3 = Color3.new(1, 1, 1)
  8646. Borders_10.BackgroundTransparency = 1
  8647. Borders_10.BorderSizePixel = 0
  8648. Borders_10.Size = UDim2.new(1, 0, 1, 0)
  8649. Borders_10.ZIndex = 120
  8650.  
  8651. Border_73.Name = "Border"
  8652. Border_73.Parent = Borders_10
  8653. Border_73.BackgroundColor3 = Color3.new(1, 1, 1)
  8654. Border_73.BackgroundTransparency = 1
  8655. Border_73.BorderSizePixel = 0
  8656. Border_73.Position = UDim2.new(0, -12, 0, -12)
  8657. Border_73.Size = UDim2.new(0, 12, 0, 12)
  8658. Border_73.ZIndex = 110
  8659. Border_73.Image = "http://www.roblox.com/asset/?id=238725003"
  8660. Border_73.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  8661. Border_73.ImageRectSize = Vector2.new(12, 12)
  8662.  
  8663. Border_74.Name = "Border"
  8664. Border_74.Parent = Borders_10
  8665. Border_74.BackgroundColor3 = Color3.new(1, 1, 1)
  8666. Border_74.BackgroundTransparency = 1
  8667. Border_74.BorderSizePixel = 0
  8668. Border_74.Position = UDim2.new(1, 0, 0, -12)
  8669. Border_74.Size = UDim2.new(0, 12, 0, 12)
  8670. Border_74.ZIndex = 110
  8671. Border_74.Image = "http://www.roblox.com/asset/?id=238725003"
  8672. Border_74.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  8673. Border_74.ImageRectOffset = Vector2.new(24, 0)
  8674. Border_74.ImageRectSize = Vector2.new(12, 12)
  8675.  
  8676. Border_75.Name = "Border"
  8677. Border_75.Parent = Borders_10
  8678. Border_75.BackgroundColor3 = Color3.new(1, 1, 1)
  8679. Border_75.BackgroundTransparency = 1
  8680. Border_75.BorderSizePixel = 0
  8681. Border_75.Position = UDim2.new(0, -12, 1, 0)
  8682. Border_75.Size = UDim2.new(0, 12, 0, 12)
  8683. Border_75.ZIndex = 110
  8684. Border_75.Image = "http://www.roblox.com/asset/?id=238725003"
  8685. Border_75.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  8686. Border_75.ImageRectOffset = Vector2.new(0, 24)
  8687. Border_75.ImageRectSize = Vector2.new(12, 12)
  8688.  
  8689. Border_76.Name = "Border"
  8690. Border_76.Parent = Borders_10
  8691. Border_76.BackgroundColor3 = Color3.new(1, 1, 1)
  8692. Border_76.BackgroundTransparency = 1
  8693. Border_76.BorderSizePixel = 0
  8694. Border_76.Position = UDim2.new(1, 0, 1, 0)
  8695. Border_76.Size = UDim2.new(0, 12, 0, 12)
  8696. Border_76.ZIndex = 110
  8697. Border_76.Image = "http://www.roblox.com/asset/?id=238725003"
  8698. Border_76.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  8699. Border_76.ImageRectOffset = Vector2.new(24, 24)
  8700. Border_76.ImageRectSize = Vector2.new(12, 12)
  8701.  
  8702. Border_77.Name = "Border"
  8703. Border_77.Parent = Borders_10
  8704. Border_77.BackgroundColor3 = Color3.new(1, 1, 1)
  8705. Border_77.BackgroundTransparency = 1
  8706. Border_77.BorderSizePixel = 0
  8707. Border_77.Position = UDim2.new(0, 0, 1, 0)
  8708. Border_77.Size = UDim2.new(1, 0, 0, 12)
  8709. Border_77.ZIndex = 110
  8710. Border_77.Image = "http://www.roblox.com/asset/?id=238725003"
  8711. Border_77.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  8712. Border_77.ImageRectOffset = Vector2.new(12, 24)
  8713. Border_77.ImageRectSize = Vector2.new(12, 12)
  8714.  
  8715. Border_78.Name = "Border"
  8716. Border_78.Parent = Borders_10
  8717. Border_78.BackgroundColor3 = Color3.new(1, 1, 1)
  8718. Border_78.BackgroundTransparency = 1
  8719. Border_78.BorderSizePixel = 0
  8720. Border_78.Position = UDim2.new(0, 0, 0, -12)
  8721. Border_78.Size = UDim2.new(1, 0, 0, 12)
  8722. Border_78.ZIndex = 110
  8723. Border_78.Image = "http://www.roblox.com/asset/?id=238725003"
  8724. Border_78.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  8725. Border_78.ImageRectOffset = Vector2.new(12, 0)
  8726. Border_78.ImageRectSize = Vector2.new(12, 12)
  8727.  
  8728. Border_79.Name = "Border"
  8729. Border_79.Parent = Borders_10
  8730. Border_79.BackgroundColor3 = Color3.new(1, 1, 1)
  8731. Border_79.BackgroundTransparency = 1
  8732. Border_79.BorderSizePixel = 0
  8733. Border_79.Position = UDim2.new(0, -12, 0, 0)
  8734. Border_79.Size = UDim2.new(0, 12, 1, 0)
  8735. Border_79.ZIndex = 110
  8736. Border_79.Image = "http://www.roblox.com/asset/?id=238725003"
  8737. Border_79.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  8738. Border_79.ImageRectOffset = Vector2.new(0, 12)
  8739. Border_79.ImageRectSize = Vector2.new(12, 12)
  8740.  
  8741. Border_80.Name = "Border"
  8742. Border_80.Parent = Borders_10
  8743. Border_80.BackgroundColor3 = Color3.new(1, 1, 1)
  8744. Border_80.BackgroundTransparency = 1
  8745. Border_80.BorderSizePixel = 0
  8746. Border_80.Position = UDim2.new(1, 0, 0, 0)
  8747. Border_80.Size = UDim2.new(0, 12, 1, 0)
  8748. Border_80.ZIndex = 110
  8749. Border_80.Image = "http://www.roblox.com/asset/?id=238725003"
  8750. Border_80.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  8751. Border_80.ImageRectOffset = Vector2.new(24, 12)
  8752. Border_80.ImageRectSize = Vector2.new(12, 12)
  8753.  
  8754. PlayerNameLabel.Name = "PlayerNameLabel"
  8755. PlayerNameLabel.Parent = MainCommandsFrame
  8756. PlayerNameLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  8757. PlayerNameLabel.BackgroundTransparency = 1
  8758. PlayerNameLabel.BorderSizePixel = 0
  8759. PlayerNameLabel.Position = UDim2.new(0.139579356, 0, 0.242063493, 0)
  8760. PlayerNameLabel.Size = UDim2.new(0.541108966, 0, 0.134920642, 0)
  8761. PlayerNameLabel.ZIndex = 120
  8762. PlayerNameLabel.Font = Enum.Font.Highway
  8763. PlayerNameLabel.Text = "PlayerName"
  8764. PlayerNameLabel.TextColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  8765. PlayerNameLabel.TextScaled = true
  8766. PlayerNameLabel.TextSize = 14
  8767. PlayerNameLabel.TextWrapped = true
  8768. PlayerNameLabel.TextXAlignment = Enum.TextXAlignment.Left
  8769.  
  8770. Notify = Instance.new("BindableEvent",NotificationFrame)
  8771. Notify.Name = "Notify"
  8772. Notify.Event:Connect(function(Txt,Col,TxtCol)
  8773. NotificationFrame.MainText.Text = Txt
  8774. for i, v in pairs(NotificationFrame:GetDescendants()) do
  8775. pcall(function()
  8776. v.ImageColor3 = Col or Color3.fromRGB(255, 85, 0)
  8777. end)
  8778. pcall(function()
  8779. v.BackgroundColor3 = Col or Color3.fromRGB(255, 85, 0)
  8780. end)
  8781. pcall(function()
  8782. v.TextColor3 = TxtCol or Color3.fromRGB(255,255,255)
  8783. end)
  8784. end
  8785. NotificationFrame:TweenPosition(UDim2.new(0,0,0,0),Enum.EasingDirection.Out,Enum.EasingStyle.Sine,1)
  8786. wait(5)
  8787. NotificationFrame:TweenPosition(UDim2.new(0,0,0.2),Enum.EasingDirection.Out,Enum.EasingStyle.Sine,1)
  8788. wait(1)
  8789. end)
  8790.  
  8791.  
  8792. -- Scripts
  8793.  
  8794. Survivor.Parent = Data.Player.PlayerGui
  8795. MainFrame.Parent = Survivor
  8796. ChallengesFrame.Parent = PageFrame
  8797. ExtrasFrame.Parent = PageFrame
  8798. MainCommandsFrame.Parent = PageFrame
  8799. CreditsFrame.Parent = Survivor
  8800.  
  8801. for i, v in pairs(Survivor:GetDescendants())do
  8802. if v:IsA("TextButton") or v:IsA("ImageButton") then
  8803. v.AutoButtonColor = false
  8804. end
  8805. end
  8806.  
  8807. --Startup
  8808. wait(3)
  8809. CircleStart:TweenPosition(UDim2.new(0.427, 0,0.343, 0),Enum.EasingDirection.Out,Enum.EasingStyle.Sine,1)
  8810. wait(1)
  8811. wait(2)
  8812. CircleStart.LoadNotify.Visible = false
  8813. CircleStart.VersionNotify.Visible = false
  8814. CircleStart.Vicon.Visible = false
  8815. CircleStart:TweenSizeAndPosition(UDim2.new(0,6000,0,6000),UDim2.new(0,-1500,0,-1500),Enum.EasingDirection.Out,Enum.EasingStyle.Sine,3)
  8816. wait(3)
  8817. wait(1)
  8818. CircleStart.Visible = false
  8819. AuthFrame.Visible = true
  8820. AuthFrame.DiscordTag:CaptureFocus()
  8821.  
  8822. AuthFrame.CancelButton.MouseButton1Click:Connect(function()
  8823. Survivor:Destroy()
  8824. end)
  8825.  
  8826. AuthFrame.QuitButton.MouseButton1Click:Connect(function()
  8827. Survivor:Destroy()
  8828. end)
  8829.  
  8830. HTBBtn.MouseButton1Click:Connect(function()
  8831. DiscordTag.Text = "Contact VeteranAnime#7468 To Purchase This."
  8832. end)
  8833.  
  8834. RefreshButton.MouseButton1Click:Connect(function()
  8835. local Id = 1690972288
  8836. local Asset = game:GetService("MarketplaceService")
  8837. local HasAsset = true --Asset:PlayerOwnsAsset(Data.Player,Id)
  8838. if HasAsset == true then
  8839. Notify:Fire("Confirmed.",Color3.fromRGB(255, 255, 255),Color3.fromRGB(100,200,100))
  8840. wait(3)
  8841. AuthFrame.Visible = false
  8842. MainButton.Visible = true
  8843. else
  8844. Notify:Fire("Incorrect.")
  8845. end
  8846. end)
  8847.  
  8848. AuthFrame.ProceedButton.MouseButton1Click:Connect(function()
  8849. local wl = {}
  8850. local LinkData = tostring(Data.GetLink(Data.WlLink))
  8851. local rd = Data.StringToArray(LinkData,"\n")
  8852. for i, v in pairs(rd) do
  8853. local Elements = Data.StringToArray(tostring(v),"|")
  8854. wl[tostring(Elements[1])] = {
  8855. Nick = tostring(Elements[2]),
  8856. WIDs = Data.StringToArray(tostring(Elements[3]),"/"),
  8857. Type = tostring(Elements[4]),
  8858. Time = tonumber(Elements[5])
  8859. }
  8860. end
  8861. local Proc = wl
  8862. local Conf = false
  8863. for i, v in pairs(Proc) do
  8864. if tostring(i) == DiscordTag.Text or tostring(v.Nick) == DiscordTag.Text then
  8865. local UserId = Data.Player.UserId
  8866. local wl = false
  8867. for i, c in pairs(v.WIDs) do
  8868. if tonumber(c) == Data.Player.UserId then
  8869. wl = true
  8870. end
  8871. end
  8872. if v.Type == "Permenant" then
  8873.  
  8874. else
  8875. spawn(function()
  8876. while true do
  8877. wait(1)
  8878. if elapsedTime() >= v.Time then
  8879. Notify:Fire("Trial Time Over!")
  8880. wait(5)
  8881. Survivor:Destroy()
  8882. end
  8883. end
  8884. end)
  8885. end
  8886. if wl == true then
  8887. Notify:Fire("Confirmed.",Color3.fromRGB(255, 255, 255),Color3.fromRGB(100,200,100))
  8888. Conf = true
  8889. wait(3)
  8890. AuthFrame.Visible = false
  8891. MainButton.Visible = true
  8892. else
  8893. Notify:Fire("Incorrect.")
  8894. end
  8895. end
  8896. end
  8897. if Conf == false then
  8898. Notify:Fire("Incorrect.")
  8899. end
  8900. end)
  8901.  
  8902. MainButton.MouseButton1Click:Connect(function()
  8903. if MainFrame.Visible == false then
  8904. MainFrame.Visible = true
  8905. else
  8906. MainFrame.Visible = false
  8907. end
  8908. end)
  8909.  
  8910. MainCmds.MouseButton1Click:Connect(function()
  8911. ChallengesFrame.Visible = false
  8912. ExtrasFrame.Visible = false
  8913. MainCommandsFrame.Visible = true
  8914. local Btns = {MainCmds,Extras,Challenges}
  8915. for i, v in pairs(Btns) do
  8916. for e, c in pairs(v:GetDescendants())do
  8917. pcall(function()
  8918. c.BackgroundColor3 = Color3.fromRGB(255,255,255)
  8919. end)
  8920. pcall(function()
  8921. c.ImageColor3 = Color3.fromRGB(255,255,255)
  8922. end)
  8923. pcall(function()
  8924. c.TextColor3 = Color3.fromRGB(200,200,200)
  8925. end)
  8926. end
  8927. pcall(function()
  8928. v.BackgroundColor3 = Color3.fromRGB(255,255,255)
  8929. end)
  8930. pcall(function()
  8931. v.ImageColor3 = Color3.fromRGB(255,255,255)
  8932. end)
  8933. pcall(function()
  8934. v.TextColor3 = Color3.fromRGB(200,200,200)
  8935. end)
  8936. end
  8937. pcall(function()
  8938. MainCmds.BackgroundColor3 = Color3.fromRGB(0, 170, 255)
  8939. end)
  8940. pcall(function()
  8941. MainCmds.ImageColor3 = Color3.fromRGB(0, 170, 255)
  8942. end)
  8943. pcall(function()
  8944. MainCmds.TextColor3 = Color3.fromRGB(255,255,255)
  8945. end)
  8946. for i, v in pairs(MainCmds:GetDescendants()) do
  8947. pcall(function()
  8948. v.BackgroundColor3 = Color3.fromRGB(0, 170, 255)
  8949. end)
  8950. pcall(function()
  8951. v.ImageColor3 = Color3.fromRGB(0, 170, 255)
  8952. end)
  8953. pcall(function()
  8954. v.TextColor3 = Color3.fromRGB(255,255,255)
  8955. end)
  8956. end
  8957. end)
  8958.  
  8959. Extras.MouseButton1Click:Connect(function()
  8960. ChallengesFrame.Visible = false
  8961. ExtrasFrame.Visible = true
  8962. MainCommandsFrame.Visible = false
  8963. local Btns = {MainCmds,Extras,Challenges}
  8964. for i, v in pairs(Btns) do
  8965. for e, c in pairs(v:GetDescendants())do
  8966. pcall(function()
  8967. c.BackgroundColor3 = Color3.fromRGB(255,255,255)
  8968. end)
  8969. pcall(function()
  8970. c.ImageColor3 = Color3.fromRGB(255,255,255)
  8971. end)
  8972. pcall(function()
  8973. c.TextColor3 = Color3.fromRGB(200,200,200)
  8974. end)
  8975. end
  8976. pcall(function()
  8977. v.BackgroundColor3 = Color3.fromRGB(255,255,255)
  8978. end)
  8979. pcall(function()
  8980. v.ImageColor3 = Color3.fromRGB(255,255,255)
  8981. end)
  8982. pcall(function()
  8983. v.TextColor3 = Color3.fromRGB(200,200,200)
  8984. end)
  8985. end
  8986. pcall(function()
  8987. Extras.BackgroundColor3 = Color3.fromRGB(0, 170, 255)
  8988. end)
  8989. pcall(function()
  8990. Extras.ImageColor3 = Color3.fromRGB(0, 170, 255)
  8991. end)
  8992. pcall(function()
  8993. Extras.TextColor3 = Color3.fromRGB(255,255,255)
  8994. end)
  8995. for i, v in pairs(Extras:GetDescendants()) do
  8996. pcall(function()
  8997. v.BackgroundColor3 = Color3.fromRGB(0, 170, 255)
  8998. end)
  8999. pcall(function()
  9000. v.ImageColor3 = Color3.fromRGB(0, 170, 255)
  9001. end)
  9002. pcall(function()
  9003. v.TextColor3 = Color3.fromRGB(255,255,255)
  9004. end)
  9005. end
  9006. end)
  9007.  
  9008. Challenges.MouseButton1Click:Connect(function()
  9009. ChallengesFrame.Visible = true
  9010. ExtrasFrame.Visible = false
  9011. MainCommandsFrame.Visible = false
  9012. local Btns = {MainCmds,Extras,Challenges}
  9013. for i, v in pairs(Btns) do
  9014. for e, c in pairs(v:GetDescendants())do
  9015. pcall(function()
  9016. c.BackgroundColor3 = Color3.fromRGB(255,255,255)
  9017. end)
  9018. pcall(function()
  9019. c.ImageColor3 = Color3.fromRGB(255,255,255)
  9020. end)
  9021. pcall(function()
  9022. c.TextColor3 = Color3.fromRGB(200,200,200)
  9023. end)
  9024. end
  9025. pcall(function()
  9026. v.BackgroundColor3 = Color3.fromRGB(255,255,255)
  9027. end)
  9028. pcall(function()
  9029. v.ImageColor3 = Color3.fromRGB(255,255,255)
  9030. end)
  9031. pcall(function()
  9032. v.TextColor3 = Color3.fromRGB(200,200,200)
  9033. end)
  9034. end
  9035. pcall(function()
  9036. Challenges.BackgroundColor3 = Color3.fromRGB(0, 170, 255)
  9037. end)
  9038. pcall(function()
  9039. Challenges.ImageColor3 = Color3.fromRGB(0, 170, 255)
  9040. end)
  9041. pcall(function()
  9042. Challenges.TextColor3 = Color3.fromRGB(255,255,255)
  9043. end)
  9044. for i, v in pairs(Challenges:GetDescendants()) do
  9045. pcall(function()
  9046. v.BackgroundColor3 = Color3.fromRGB(0, 170, 255)
  9047. end)
  9048. pcall(function()
  9049. v.ImageColor3 = Color3.fromRGB(0, 170, 255)
  9050. end)
  9051. pcall(function()
  9052. v.TextColor3 = Color3.fromRGB(255,255,255)
  9053. end)
  9054. end
  9055. end)
  9056.  
  9057. ExtrasFrame.Goto.MouseButton1Click:Connect(function()
  9058. if CreditsFrame.Visible == true then
  9059. CreditsFrame.Visible = false
  9060. else
  9061. CreditsFrame.Visible = true
  9062. end
  9063. end)
  9064.  
  9065. CreditsFrame.QuitButton.MouseButton1Click:Connect(function()
  9066. CreditsFrame.Visible = false
  9067. end)
  9068.  
  9069. CreditsFrame.CloseBtn.MouseButton1Click:Connect(function()
  9070. CreditsFrame.Visible = false
  9071. end)
  9072.  
  9073. MainFrame.QuitButton.MouseButton1Click:Connect(function()
  9074. MainFrame.Visible = false
  9075. end)
  9076.  
  9077. BeatToThePunchFrame.BotWin.MouseButton1Click:Connect(function()
  9078. Data.Challenges.BeatToThePuch()
  9079. end)
  9080.  
  9081. BywayBustleFrame.BotWin.MouseButton1Click:Connect(function()
  9082. Data.Challenges.BywayBustel()
  9083. end)
  9084.  
  9085. CrypticComboFrame.BotWin.MouseButton1Click:Connect(function()
  9086.  
  9087. end)
  9088.  
  9089. DiveDwellingFrame.BotWin.MouseButton1Click:Connect(function()
  9090. Data.Challenges.DiveDwelling()
  9091. end)
  9092.  
  9093. GetAGripFrame.Immunity.MouseButton1Click:Connect(function()
  9094. Data.Challenges.GetAGrip()
  9095. end)
  9096.  
  9097. GetAGripFrame.ForceLose.MouseButton1Click:Connect(function()
  9098. Notify:Fire("This Command Isn't Implemented Yet!")
  9099. end)
  9100.  
  9101. KeysToVictoryFrame.BotWin.MouseButton1Click:Connect(function()
  9102.  
  9103. end)
  9104.  
  9105. TidepoolFrame.InsWin.MouseButton1Click:Connect(function()
  9106. Data.Challenges.Tidepool()
  9107. end)
  9108.  
  9109. Goto.MouseButton1Click:Connect(function()
  9110. local Target = Data.GetPlayerFromShortName(MainCommandsFrame.Playername.Text)
  9111. if Target ~= nil then
  9112. Data.Player.Character.HumanoidRootPart.CFrame = Target.Character.HumanoidRootPart.CFrame
  9113. end
  9114. end)
  9115.  
  9116. MainCommandsFrame.Playername.Changed:Connect(function()
  9117. local Target = Data.GetPlayerFromShortName(MainCommandsFrame.Playername.Text)
  9118. if Target ~= nil then
  9119. PlayerIcon.Image = game.Players:GetUserThumbnailAsync(Target.UserId,Enum.ThumbnailType.HeadShot,Enum.ThumbnailSize.Size100x100)
  9120. PlayerNameLabel.Text = Target.Name
  9121. end
  9122. end)
  9123.  
  9124. Pickups.MouseButton1Click:Connect(function()
  9125. Data.Funcs.GetPickups()
  9126. end)
  9127.  
  9128. ViewProfile.MouseButton1Click:Connect(function()
  9129.  
  9130. -- Objects
  9131.  
  9132. local Profile = Instance.new("Frame")
  9133. local Borders = Instance.new("Frame")
  9134. local Border = Instance.new("ImageLabel")
  9135. local Border_2 = Instance.new("ImageLabel")
  9136. local Border_3 = Instance.new("ImageLabel")
  9137. local Border_4 = Instance.new("ImageLabel")
  9138. local Border_5 = Instance.new("ImageLabel")
  9139. local Border_6 = Instance.new("ImageLabel")
  9140. local Border_7 = Instance.new("ImageLabel")
  9141. local Border_8 = Instance.new("ImageLabel")
  9142. local Coins = Instance.new("TextLabel")
  9143. local Wins = Instance.new("TextLabel")
  9144. local Idolsfound = Instance.new("TextLabel")
  9145. local Idolsused = Instance.new("TextLabel")
  9146. local Tribalwins = Instance.new("TextLabel")
  9147. local Individualwins = Instance.new("TextLabel")
  9148. local TimesinJury = Instance.new("TextLabel")
  9149. local Torchessnuffed = Instance.new("TextLabel")
  9150. local Rockedout = Instance.new("TextLabel")
  9151. local Nullifiedvotes = Instance.new("TextLabel")
  9152. local pqb = Instance.new("ImageButton")
  9153.  
  9154. -- Properties
  9155.  
  9156. pqb.Name = "pqb"
  9157. pqb.Parent = Profile
  9158. pqb.BackgroundColor3 = Color3.new(1, 1, 1)
  9159. pqb.BorderSizePixel = 0
  9160. pqb.Position = UDim2.new(0.985358715, 0, 0, 0)
  9161. pqb.Size = UDim2.new(0, 20, 0, 20)
  9162. pqb.ZIndex = 1001
  9163. pqb.Image = "rbxassetid://1828839274"
  9164. pqb.MouseButton1Click:Connect(function()
  9165. Profile:Destroy()
  9166. end)
  9167.  
  9168.  
  9169. Profile.Name = "Profile"
  9170. Profile.Parent = Survivor
  9171. Profile.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  9172. Profile.BorderSizePixel = 0
  9173. Profile.Position = UDim2.new(0.0571010225, 0, 0.188216045, 0)
  9174. Profile.Size = UDim2.new(0, 242, 0, 363)
  9175. Profile.ZIndex = 1000
  9176.  
  9177. Borders.Name = "Borders"
  9178. Borders.Parent = Profile
  9179. Borders.BackgroundColor3 = Color3.new(1, 1, 1)
  9180. Borders.BackgroundTransparency = 1
  9181. Borders.BorderSizePixel = 0
  9182. Borders.Size = UDim2.new(1, 0, 1, 0)
  9183. Borders.ZIndex = 120
  9184.  
  9185. Border.Name = "Border"
  9186. Border.Parent = Borders
  9187. Border.BackgroundColor3 = Color3.new(1, 1, 1)
  9188. Border.BackgroundTransparency = 1
  9189. Border.BorderSizePixel = 0
  9190. Border.Position = UDim2.new(0, -12, 0, -12)
  9191. Border.Size = UDim2.new(0, 12, 0, 12)
  9192. Border.ZIndex = 110
  9193. Border.Image = "http://www.roblox.com/asset/?id=238725003"
  9194. Border.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  9195. Border.ImageRectSize = Vector2.new(12, 12)
  9196.  
  9197. Border_2.Name = "Border"
  9198. Border_2.Parent = Borders
  9199. Border_2.BackgroundColor3 = Color3.new(1, 1, 1)
  9200. Border_2.BackgroundTransparency = 1
  9201. Border_2.BorderSizePixel = 0
  9202. Border_2.Position = UDim2.new(1, 0, 0, -12)
  9203. Border_2.Size = UDim2.new(0, 12, 0, 12)
  9204. Border_2.ZIndex = 110
  9205. Border_2.Image = "http://www.roblox.com/asset/?id=238725003"
  9206. Border_2.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  9207. Border_2.ImageRectOffset = Vector2.new(24, 0)
  9208. Border_2.ImageRectSize = Vector2.new(12, 12)
  9209.  
  9210. Border_3.Name = "Border"
  9211. Border_3.Parent = Borders
  9212. Border_3.BackgroundColor3 = Color3.new(1, 1, 1)
  9213. Border_3.BackgroundTransparency = 1
  9214. Border_3.BorderSizePixel = 0
  9215. Border_3.Position = UDim2.new(0, -12, 1, 0)
  9216. Border_3.Size = UDim2.new(0, 12, 0, 12)
  9217. Border_3.ZIndex = 110
  9218. Border_3.Image = "http://www.roblox.com/asset/?id=238725003"
  9219. Border_3.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  9220. Border_3.ImageRectOffset = Vector2.new(0, 24)
  9221. Border_3.ImageRectSize = Vector2.new(12, 12)
  9222.  
  9223. Border_4.Name = "Border"
  9224. Border_4.Parent = Borders
  9225. Border_4.BackgroundColor3 = Color3.new(1, 1, 1)
  9226. Border_4.BackgroundTransparency = 1
  9227. Border_4.BorderSizePixel = 0
  9228. Border_4.Position = UDim2.new(1, 0, 1, 0)
  9229. Border_4.Size = UDim2.new(0, 12, 0, 12)
  9230. Border_4.ZIndex = 110
  9231. Border_4.Image = "http://www.roblox.com/asset/?id=238725003"
  9232. Border_4.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  9233. Border_4.ImageRectOffset = Vector2.new(24, 24)
  9234. Border_4.ImageRectSize = Vector2.new(12, 12)
  9235.  
  9236. Border_5.Name = "Border"
  9237. Border_5.Parent = Borders
  9238. Border_5.BackgroundColor3 = Color3.new(1, 1, 1)
  9239. Border_5.BackgroundTransparency = 1
  9240. Border_5.BorderSizePixel = 0
  9241. Border_5.Position = UDim2.new(0, 0, 1, 0)
  9242. Border_5.Size = UDim2.new(1, 0, 0, 12)
  9243. Border_5.ZIndex = 110
  9244. Border_5.Image = "http://www.roblox.com/asset/?id=238725003"
  9245. Border_5.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  9246. Border_5.ImageRectOffset = Vector2.new(12, 24)
  9247. Border_5.ImageRectSize = Vector2.new(12, 12)
  9248.  
  9249. Border_6.Name = "Border"
  9250. Border_6.Parent = Borders
  9251. Border_6.BackgroundColor3 = Color3.new(1, 1, 1)
  9252. Border_6.BackgroundTransparency = 1
  9253. Border_6.BorderSizePixel = 0
  9254. Border_6.Position = UDim2.new(0, 0, 0, -12)
  9255. Border_6.Size = UDim2.new(1, 0, 0, 12)
  9256. Border_6.ZIndex = 110
  9257. Border_6.Image = "http://www.roblox.com/asset/?id=238725003"
  9258. Border_6.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  9259. Border_6.ImageRectOffset = Vector2.new(12, 0)
  9260. Border_6.ImageRectSize = Vector2.new(12, 12)
  9261.  
  9262. Border_7.Name = "Border"
  9263. Border_7.Parent = Borders
  9264. Border_7.BackgroundColor3 = Color3.new(1, 1, 1)
  9265. Border_7.BackgroundTransparency = 1
  9266. Border_7.BorderSizePixel = 0
  9267. Border_7.Position = UDim2.new(0, -12, 0, 0)
  9268. Border_7.Size = UDim2.new(0, 12, 1, 0)
  9269. Border_7.ZIndex = 110
  9270. Border_7.Image = "http://www.roblox.com/asset/?id=238725003"
  9271. Border_7.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  9272. Border_7.ImageRectOffset = Vector2.new(0, 12)
  9273. Border_7.ImageRectSize = Vector2.new(12, 12)
  9274.  
  9275. Border_8.Name = "Border"
  9276. Border_8.Parent = Borders
  9277. Border_8.BackgroundColor3 = Color3.new(1, 1, 1)
  9278. Border_8.BackgroundTransparency = 1
  9279. Border_8.BorderSizePixel = 0
  9280. Border_8.Position = UDim2.new(1, 0, 0, 0)
  9281. Border_8.Size = UDim2.new(0, 12, 1, 0)
  9282. Border_8.ZIndex = 110
  9283. Border_8.Image = "http://www.roblox.com/asset/?id=238725003"
  9284. Border_8.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  9285. Border_8.ImageRectOffset = Vector2.new(24, 12)
  9286. Border_8.ImageRectSize = Vector2.new(12, 12)
  9287.  
  9288. Coins.Name = "Coins"
  9289. Coins.Parent = Profile
  9290. Coins.BackgroundColor3 = Color3.new(1, 1, 1)
  9291. Coins.BackgroundTransparency = 1
  9292. Coins.Size = UDim2.new(1, 0, 0.0991735533, 0)
  9293. Coins.ZIndex = 1001
  9294. Coins.Font = Enum.Font.Highway
  9295. Coins.Text = "Coins : 0"
  9296. Coins.TextColor3 = Color3.new(1, 1, 1)
  9297. Coins.TextScaled = true
  9298. Coins.TextSize = 14
  9299. Coins.TextWrapped = true
  9300. Coins.TextXAlignment = Enum.TextXAlignment.Left
  9301.  
  9302. Wins.Name = "Wins"
  9303. Wins.Parent = Profile
  9304. Wins.BackgroundColor3 = Color3.new(1, 1, 1)
  9305. Wins.BackgroundTransparency = 1
  9306. Wins.Position = UDim2.new(0, 0, 0.0991735533, 0)
  9307. Wins.Size = UDim2.new(1, 0, 0.0991735533, 0)
  9308. Wins.ZIndex = 1001
  9309. Wins.Font = Enum.Font.Highway
  9310. Wins.Text = "Wins : "
  9311. Wins.TextColor3 = Color3.new(1, 1, 1)
  9312. Wins.TextScaled = true
  9313. Wins.TextSize = 14
  9314. Wins.TextWrapped = true
  9315. Wins.TextXAlignment = Enum.TextXAlignment.Left
  9316.  
  9317. Idolsfound.Name = "Idols found"
  9318. Idolsfound.Parent = Profile
  9319. Idolsfound.BackgroundColor3 = Color3.new(1, 1, 1)
  9320. Idolsfound.BackgroundTransparency = 1
  9321. Idolsfound.Position = UDim2.new(0, 0, 0.198347107, 0)
  9322. Idolsfound.Size = UDim2.new(1, 0, 0.0991735533, 0)
  9323. Idolsfound.ZIndex = 1001
  9324. Idolsfound.Font = Enum.Font.Highway
  9325. Idolsfound.Text = "Idols Found : "
  9326. Idolsfound.TextColor3 = Color3.new(1, 1, 1)
  9327. Idolsfound.TextScaled = true
  9328. Idolsfound.TextSize = 14
  9329. Idolsfound.TextWrapped = true
  9330. Idolsfound.TextXAlignment = Enum.TextXAlignment.Left
  9331.  
  9332. Idolsused.Name = "Idols used"
  9333. Idolsused.Parent = Profile
  9334. Idolsused.BackgroundColor3 = Color3.new(1, 1, 1)
  9335. Idolsused.BackgroundTransparency = 1
  9336. Idolsused.Position = UDim2.new(0, 0, 0.297520667, 0)
  9337. Idolsused.Size = UDim2.new(1, 0, 0.0991735533, 0)
  9338. Idolsused.ZIndex = 1001
  9339. Idolsused.Font = Enum.Font.Highway
  9340. Idolsused.Text = "Idols Used"
  9341. Idolsused.TextColor3 = Color3.new(1, 1, 1)
  9342. Idolsused.TextScaled = true
  9343. Idolsused.TextSize = 14
  9344. Idolsused.TextWrapped = true
  9345. Idolsused.TextXAlignment = Enum.TextXAlignment.Left
  9346.  
  9347. Tribalwins.Name = "Tribal wins"
  9348. Tribalwins.Parent = Profile
  9349. Tribalwins.BackgroundColor3 = Color3.new(1, 1, 1)
  9350. Tribalwins.BackgroundTransparency = 1
  9351. Tribalwins.Position = UDim2.new(0, 0, 0.396694213, 0)
  9352. Tribalwins.Size = UDim2.new(1, 0, 0.0991735533, 0)
  9353. Tribalwins.ZIndex = 1001
  9354. Tribalwins.Font = Enum.Font.Highway
  9355. Tribalwins.Text = "Tribal Wins : "
  9356. Tribalwins.TextColor3 = Color3.new(1, 1, 1)
  9357. Tribalwins.TextScaled = true
  9358. Tribalwins.TextSize = 14
  9359. Tribalwins.TextWrapped = true
  9360. Tribalwins.TextXAlignment = Enum.TextXAlignment.Left
  9361.  
  9362. Individualwins.Name = "Individual wins"
  9363. Individualwins.Parent = Profile
  9364. Individualwins.BackgroundColor3 = Color3.new(1, 1, 1)
  9365. Individualwins.BackgroundTransparency = 1
  9366. Individualwins.Position = UDim2.new(0, 0, 0.495867759, 0)
  9367. Individualwins.Size = UDim2.new(1, 0, 0.0991735533, 0)
  9368. Individualwins.ZIndex = 1001
  9369. Individualwins.Font = Enum.Font.Highway
  9370. Individualwins.Text = "Individual Wins : "
  9371. Individualwins.TextColor3 = Color3.new(1, 1, 1)
  9372. Individualwins.TextScaled = true
  9373. Individualwins.TextSize = 14
  9374. Individualwins.TextWrapped = true
  9375. Individualwins.TextXAlignment = Enum.TextXAlignment.Left
  9376.  
  9377. TimesinJury.Name = "Times in Jury"
  9378. TimesinJury.Parent = Profile
  9379. TimesinJury.BackgroundColor3 = Color3.new(1, 1, 1)
  9380. TimesinJury.BackgroundTransparency = 1
  9381. TimesinJury.Position = UDim2.new(0, 0, 0.595041335, 0)
  9382. TimesinJury.Size = UDim2.new(1, 0, 0.0991735533, 0)
  9383. TimesinJury.ZIndex = 1001
  9384. TimesinJury.Font = Enum.Font.Highway
  9385. TimesinJury.Text = "Times In Jury : "
  9386. TimesinJury.TextColor3 = Color3.new(1, 1, 1)
  9387. TimesinJury.TextScaled = true
  9388. TimesinJury.TextSize = 14
  9389. TimesinJury.TextWrapped = true
  9390. TimesinJury.TextXAlignment = Enum.TextXAlignment.Left
  9391.  
  9392. Torchessnuffed.Name = "Torches snuffed"
  9393. Torchessnuffed.Parent = Profile
  9394. Torchessnuffed.BackgroundColor3 = Color3.new(1, 1, 1)
  9395. Torchessnuffed.BackgroundTransparency = 1
  9396. Torchessnuffed.Position = UDim2.new(0, 0, 0.69421488, 0)
  9397. Torchessnuffed.Size = UDim2.new(1, 0, 0.0991735533, 0)
  9398. Torchessnuffed.ZIndex = 1001
  9399. Torchessnuffed.Font = Enum.Font.Highway
  9400. Torchessnuffed.Text = "Torches Snuffed : "
  9401. Torchessnuffed.TextColor3 = Color3.new(1, 1, 1)
  9402. Torchessnuffed.TextScaled = true
  9403. Torchessnuffed.TextSize = 14
  9404. Torchessnuffed.TextWrapped = true
  9405. Torchessnuffed.TextXAlignment = Enum.TextXAlignment.Left
  9406.  
  9407. Rockedout.Name = "Rocked out"
  9408. Rockedout.Parent = Profile
  9409. Rockedout.BackgroundColor3 = Color3.new(1, 1, 1)
  9410. Rockedout.BackgroundTransparency = 1
  9411. Rockedout.Position = UDim2.new(0, 0, 0.793388426, 0)
  9412. Rockedout.Size = UDim2.new(1, 0, 0.0991735533, 0)
  9413. Rockedout.ZIndex = 1001
  9414. Rockedout.Font = Enum.Font.Highway
  9415. Rockedout.Text = "Rocked Out : "
  9416. Rockedout.TextColor3 = Color3.new(1, 1, 1)
  9417. Rockedout.TextScaled = true
  9418. Rockedout.TextSize = 14
  9419. Rockedout.TextWrapped = true
  9420. Rockedout.TextXAlignment = Enum.TextXAlignment.Left
  9421.  
  9422. Nullifiedvotes.Name = "Nullified votes"
  9423. Nullifiedvotes.Parent = Profile
  9424. Nullifiedvotes.BackgroundColor3 = Color3.new(1, 1, 1)
  9425. Nullifiedvotes.BackgroundTransparency = 1
  9426. Nullifiedvotes.Position = UDim2.new(0, 0, 0.892561972, 0)
  9427. Nullifiedvotes.Size = UDim2.new(1, 0, 0.0991735533, 0)
  9428. Nullifiedvotes.ZIndex = 1001
  9429. Nullifiedvotes.Font = Enum.Font.Highway
  9430. Nullifiedvotes.Text = "Nullified Votes : "
  9431. Nullifiedvotes.TextColor3 = Color3.new(1, 1, 1)
  9432. Nullifiedvotes.TextScaled = true
  9433. Nullifiedvotes.TextSize = 14
  9434. Nullifiedvotes.TextWrapped = true
  9435. Nullifiedvotes.TextXAlignment = Enum.TextXAlignment.Left
  9436.  
  9437. local Target = Data.GetPlayerFromShortName(Playername.Text)
  9438.  
  9439. -- Scripts
  9440. for i, v in pairs(Data.ProfileData.Values) do
  9441. local MyLabel = Profile:FindFirstChild(v)
  9442. local MyStat = Target.Stats:FindFirstChild(v)
  9443. if MyLabel ~= nil and MyStat ~= nil and MyLabel:IsA("TextLabel") then
  9444. MyLabel.Text = v.." : "..tostring(MyStat.Value)
  9445. end
  9446. end
  9447. end)
  9448.  
  9449. VerifyProfile.MouseButton1Click:Connect(function()
  9450. wait(1)
  9451. Notify:Fire("Unverified.")
  9452. end)
  9453.  
  9454. Data.Mouse.KeyDown:Connect(function(Key)
  9455. Data.SwitchData.KeysDown[Key] = true
  9456. if Key == "p" then
  9457. -- Objects
  9458.  
  9459. local CmdBar = Instance.new("TextBox")
  9460. local Borders = Instance.new("Frame")
  9461. local Border = Instance.new("ImageLabel")
  9462. local Border_2 = Instance.new("ImageLabel")
  9463. local Border_3 = Instance.new("ImageLabel")
  9464. local Border_4 = Instance.new("ImageLabel")
  9465. local Border_5 = Instance.new("ImageLabel")
  9466. local Border_6 = Instance.new("ImageLabel")
  9467. local Border_7 = Instance.new("ImageLabel")
  9468. local Border_8 = Instance.new("ImageLabel")
  9469.  
  9470. -- Properties
  9471.  
  9472. CmdBar.Name = "CmdBar"
  9473. CmdBar.Parent = Survivor
  9474. CmdBar.BackgroundColor3 = Color3.new(1, 1, 1)
  9475. CmdBar.BorderSizePixel = 0
  9476. CmdBar.Position = UDim2.new(0.22709924, 0, 0.909313679, 0)
  9477. CmdBar.Size = UDim2.new(0.54580152, 0, 0.0490196086, 0)
  9478. CmdBar.ZIndex = 99e99-1
  9479. CmdBar.Font = Enum.Font.Highway
  9480. CmdBar.PlaceholderColor3 = Color3.new(1, 1, 1)
  9481. CmdBar.Text = "Insert Command"
  9482. CmdBar.TextColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  9483. CmdBar.TextScaled = true
  9484. CmdBar.TextSize = 14
  9485. CmdBar.TextWrapped = true
  9486. CmdBar.TextXAlignment = Enum.TextXAlignment.Left
  9487.  
  9488. Borders.Name = "Borders"
  9489. Borders.Parent = CmdBar
  9490. Borders.BackgroundColor3 = Color3.new(1, 1, 1)
  9491. Borders.BackgroundTransparency = 1
  9492. Borders.BorderSizePixel = 0
  9493. Borders.Size = UDim2.new(1, 0, 1, 0)
  9494. Borders.ZIndex = 99e99-1
  9495.  
  9496. Border.Name = "Border"
  9497. Border.Parent = Borders
  9498. Border.BackgroundColor3 = Color3.new(1, 1, 1)
  9499. Border.BackgroundTransparency = 1
  9500. Border.BorderSizePixel = 0
  9501. Border.Position = UDim2.new(0, -12, 0, -12)
  9502. Border.Size = UDim2.new(0, 12, 0, 12)
  9503. Border.ZIndex = 99e99
  9504. Border.Image = "http://www.roblox.com/asset/?id=238725003"
  9505. Border.ImageRectSize = Vector2.new(12, 12)
  9506.  
  9507. Border_2.Name = "Border"
  9508. Border_2.Parent = Borders
  9509. Border_2.BackgroundColor3 = Color3.new(1, 1, 1)
  9510. Border_2.BackgroundTransparency = 1
  9511. Border_2.BorderSizePixel = 0
  9512. Border_2.Position = UDim2.new(1, 0, 0, -12)
  9513. Border_2.Size = UDim2.new(0, 12, 0, 12)
  9514. Border_2.ZIndex = 99e99
  9515. Border_2.Image = "http://www.roblox.com/asset/?id=238725003"
  9516. Border_2.ImageRectOffset = Vector2.new(24, 0)
  9517. Border_2.ImageRectSize = Vector2.new(12, 12)
  9518.  
  9519. Border_3.Name = "Border"
  9520. Border_3.Parent = Borders
  9521. Border_3.BackgroundColor3 = Color3.new(1, 1, 1)
  9522. Border_3.BackgroundTransparency = 1
  9523. Border_3.BorderSizePixel = 0
  9524. Border_3.Position = UDim2.new(0, -12, 1, 0)
  9525. Border_3.Size = UDim2.new(0, 12, 0, 12)
  9526. Border_3.ZIndex = 99e99
  9527. Border_3.Image = "http://www.roblox.com/asset/?id=238725003"
  9528. Border_3.ImageRectOffset = Vector2.new(0, 24)
  9529. Border_3.ImageRectSize = Vector2.new(12, 12)
  9530.  
  9531. Border_4.Name = "Border"
  9532. Border_4.Parent = Borders
  9533. Border_4.BackgroundColor3 = Color3.new(1, 1, 1)
  9534. Border_4.BackgroundTransparency = 1
  9535. Border_4.BorderSizePixel = 0
  9536. Border_4.Position = UDim2.new(1, 0, 1, 0)
  9537. Border_4.Size = UDim2.new(0, 12, 0, 12)
  9538. Border_4.ZIndex = 99e99
  9539. Border_4.Image = "http://www.roblox.com/asset/?id=238725003"
  9540. Border_4.ImageRectOffset = Vector2.new(24, 24)
  9541. Border_4.ImageRectSize = Vector2.new(12, 12)
  9542.  
  9543. Border_5.Name = "Border"
  9544. Border_5.Parent = Borders
  9545. Border_5.BackgroundColor3 = Color3.new(1, 1, 1)
  9546. Border_5.BackgroundTransparency = 1
  9547. Border_5.BorderSizePixel = 0
  9548. Border_5.Position = UDim2.new(0, 0, 1, 0)
  9549. Border_5.Size = UDim2.new(1, 0, 0, 12)
  9550. Border_5.ZIndex = 99e99
  9551. Border_5.Image = "http://www.roblox.com/asset/?id=238725003"
  9552. Border_5.ImageRectOffset = Vector2.new(12, 24)
  9553. Border_5.ImageRectSize = Vector2.new(12, 12)
  9554.  
  9555. Border_6.Name = "Border"
  9556. Border_6.Parent = Borders
  9557. Border_6.BackgroundColor3 = Color3.new(1, 1, 1)
  9558. Border_6.BackgroundTransparency = 1
  9559. Border_6.BorderSizePixel = 0
  9560. Border_6.Position = UDim2.new(0, 0, 0, -12)
  9561. Border_6.Size = UDim2.new(1, 0, 0, 12)
  9562. Border_6.ZIndex = 99e99
  9563. Border_6.Image = "http://www.roblox.com/asset/?id=238725003"
  9564. Border_6.ImageRectOffset = Vector2.new(12, 0)
  9565. Border_6.ImageRectSize = Vector2.new(12, 12)
  9566.  
  9567. Border_7.Name = "Border"
  9568. Border_7.Parent = Borders
  9569. Border_7.BackgroundColor3 = Color3.new(1, 1, 1)
  9570. Border_7.BackgroundTransparency = 1
  9571. Border_7.BorderSizePixel = 0
  9572. Border_7.Position = UDim2.new(0, -12, 0, 0)
  9573. Border_7.Size = UDim2.new(0, 12, 1, 0)
  9574. Border_7.ZIndex = 99e99
  9575. Border_7.Image = "http://www.roblox.com/asset/?id=238725003"
  9576. Border_7.ImageRectOffset = Vector2.new(0, 12)
  9577. Border_7.ImageRectSize = Vector2.new(12, 12)
  9578.  
  9579. Border_8.Name = "Border"
  9580. Border_8.Parent = Borders
  9581. Border_8.BackgroundColor3 = Color3.new(1, 1, 1)
  9582. Border_8.BackgroundTransparency = 1
  9583. Border_8.BorderSizePixel = 0
  9584. Border_8.Position = UDim2.new(1, 0, 0, 0)
  9585. Border_8.Size = UDim2.new(0, 12, 1, 0)
  9586. Border_8.ZIndex = 99e99
  9587. Border_8.Image = "http://www.roblox.com/asset/?id=238725003"
  9588. Border_8.ImageRectOffset = Vector2.new(24, 12)
  9589. Border_8.ImageRectSize = Vector2.new(12, 12)
  9590.  
  9591. -- Scripts
  9592. CmdBar:CaptureFocus()
  9593. CmdBar.FocusLost:Connect(function()
  9594. local txt = CmdBar.Text
  9595. CmdBar:Destroy()
  9596. txt = string.lower(txt)
  9597. local args = Data.StringToArray(txt," ")
  9598.  
  9599. if txt == "noclip" then
  9600. Data.SwitchData.Noclipping = true
  9601. elseif txt == "ccoins" then
  9602. local Coins = {}
  9603. for i, v in pairs(Data.Misc.Coins:GetDescendants())do
  9604. if v.Name == "Coin" and v.Transparency < 0.9 then
  9605. table.insert(Coins,v)
  9606. end
  9607. end
  9608. for i, v in pairs(Coins) do
  9609. v.CFrame = Coins[1].CFrame
  9610. end
  9611. elseif args[1] == "caim" then
  9612. Data.Funcs.GetCoins(tonumber(args[2]))
  9613. elseif args[1] == "goto" then
  9614. local tar = Data.GetPlayerFromShortName(args[2])
  9615. if tar ~= nil then
  9616. Data.Player.Character.HumanoidRootPart.CFrame = tar.Character.HumanoidRootPart.CFrame
  9617. end
  9618. elseif txt == "pickups" then
  9619. Data.Funcs.GetPickups()
  9620. elseif txt == "spec" then
  9621. Data.Player.PlayerGui.GUIs.Left.Spectate.Visible = true
  9622. elseif txt == "chall" then
  9623. print("Challenge")
  9624. for i, v in pairs(Data.ChallengesData) do
  9625. local Ch = nil
  9626. for e, c in pairs(game.Workspace:GetChildren()) do
  9627. if string.lower(c.Name) == string.lower(v.Name) then
  9628. Ch = c
  9629. end
  9630. end
  9631. if Ch ~= nil then
  9632. local func = Data.Challenges[v.FuncName]
  9633. if func ~= nil then
  9634. func()
  9635. end
  9636. end
  9637. end
  9638. elseif txt == "move" then
  9639. local Movement = Data.Player.CanMove
  9640. if Movement.Value == true then
  9641. Movement.Value = false
  9642. else
  9643. Movement.Value = true
  9644. end
  9645. Data.Player.Character.Humanoid.WalkSpeed = 16
  9646. Data.Player.Character.Humanoid.JumpPower = 50
  9647. elseif txt == "chat" then
  9648. local Chat = Data.Player.Muted
  9649. if Chat.Value == true then
  9650. Chat.Value = false
  9651. else
  9652. Chat.Value = true
  9653. end
  9654. elseif txt == "xplr" then
  9655. Explore()
  9656. elseif args[1] == "save" then
  9657. local ins = game.Workspace
  9658. local Obj = Instance.new("ObjectValue",game.Workspace)
  9659. Obj.Name = "TheSaveinsObj"
  9660. loadstring("game.Workspace.TheSaveinsObj.Value = "..args[2])
  9661. SaveInstance(Obj.Value)
  9662. elseif args[1] == "loadstring" then
  9663. local Script = ""
  9664. for i, v in pairs(args) do
  9665. if i == 1 then
  9666.  
  9667. else
  9668. Script = Script.." "..tostring(v)
  9669. end
  9670. end
  9671. loadstring(Script)
  9672. end
  9673. end)
  9674. end
  9675. end)
  9676.  
  9677. Data.Mouse.KeyUp:Connect(function(Key)
  9678. Data.SwitchData.KeysDown[Key] = false
  9679. end)
  9680.  
  9681. Data.Mouse.Button1Down:Connect(function()
  9682. if Data.SwitchData.KeysDown["e"] == true then
  9683. if Data.SwitchData.ClickMethods.Teleport == true then
  9684. Data.Player.Character.HumanoidRootPart.CFrame = Data.Mouse.Hit + Vector3.new(0,3,0)
  9685. end
  9686. if Data.SwitchData.ClickMethods.Destroy == true then
  9687. pcall(function()
  9688. Data.Mouse.Target:Destroy()
  9689. end)
  9690. end
  9691. if Data.SwitchData.ClickMethods.Debug == true then
  9692. local Tar = Data.Mouse.Target
  9693. print("----------------------Debug No : ".. Data.SwitchData.TotalDebugs..".------------------------------------------")
  9694. print("Debug Location : ".. tostring(Data.Mouse.Hit.p))
  9695. if Tar ~= nil then
  9696. print("Target Data : \n Name : ".. Tar.Name.."\nFull Name : ".. Tar:GetFullName().."\nClass Name : "..Tar.ClassName.."\nPointer ".. tostring(Tar:GetChildren()))
  9697. else
  9698. print("There Was No Target.")
  9699. end
  9700. Data.SwitchData.TotalDebugs = Data.SwitchData.TotalDebugs + 1
  9701. end
  9702. if Data.SwitchData.ClickMethods.Toggle == true then
  9703. local Tar = Data.Mouse.Target
  9704. if Tar ~= nil then
  9705. local TglData = Tar:FindFirstChild("TglData")
  9706. if TglData ~= nil then
  9707. Tar.Transparency = TglData.Trans.Value
  9708. Tar.CanCollide = TglData.Collision.Value
  9709. TglData:Destroy()
  9710. else
  9711. local Tgl = Instance.new("Folder",Tar)
  9712. Tgl.Name = "TglData"
  9713. local Trans = Instance.new("NumberValue",Tgl)
  9714. local Collision = Instance.new("BoolValue",Tgl)
  9715. Trans.Value = Tar.Transparency
  9716. Collision.Value = Tar.CanCollide
  9717. Trans.Name = "Trans"
  9718. Collision.Name = "Collision"
  9719. Tar.Transparency = 0.5
  9720. Tar.CanCollide = false
  9721. end
  9722. end
  9723. end
  9724. end
  9725. end)
  9726.  
  9727. CDbgSwitch.MouseButton1Click:Connect(function()
  9728. local CMeth = Data.SwitchData.ClickMethods
  9729. if CMeth.Debug == true then
  9730. CMeth.Debug = false
  9731. for i, v in pairs(CDbgSwitch:GetDescendants()) do
  9732. pcall(function()
  9733. v.ImageColor3 = Color3.fromRGB(200,200,200)
  9734. end)
  9735. end
  9736. CDbgSwitch.BackgroundColor3 = Color3.fromRGB(200,200,200)
  9737. else
  9738. CMeth.Debug = true
  9739. for i, v in pairs(CDbgSwitch:GetDescendants()) do
  9740. pcall(function()
  9741. v.ImageColor3 = Color3.fromRGB(100,200,100)
  9742. end)
  9743. end
  9744. CDbgSwitch.BackgroundColor3 = Color3.fromRGB(100,200,100)
  9745. end
  9746. end)
  9747.  
  9748. CDstSwitch.MouseButton1Click:Connect(function()
  9749. local CMeth = Data.SwitchData.ClickMethods
  9750. if CMeth.Destroy == true then
  9751. CMeth.Destroy = false
  9752. for i, v in pairs(CDstSwitch:GetDescendants()) do
  9753. pcall(function()
  9754. v.ImageColor3 = Color3.fromRGB(200,200,200)
  9755. end)
  9756. end
  9757. CDstSwitch.BackgroundColor3 = Color3.fromRGB(200,200,200)
  9758. else
  9759. CMeth.Destroy = true
  9760. for i, v in pairs(CDstSwitch:GetDescendants()) do
  9761. pcall(function()
  9762. v.ImageColor3 = Color3.fromRGB(100,200,100)
  9763. end)
  9764. end
  9765. CDstSwitch.BackgroundColor3 = Color3.fromRGB(100,200,100)
  9766. end
  9767. end)
  9768.  
  9769. CTpSwitch.MouseButton1Click:Connect(function()
  9770. local CMeth = Data.SwitchData.ClickMethods
  9771. if CMeth.Teleport == true then
  9772. CMeth.Teleport = false
  9773. for i, v in pairs(CTpSwitch:GetDescendants()) do
  9774. pcall(function()
  9775. v.ImageColor3 = Color3.fromRGB(200,200,200)
  9776. end)
  9777. end
  9778. CTpSwitch.BackgroundColor3 = Color3.fromRGB(200,200,200)
  9779. else
  9780. CMeth.Teleport = true
  9781. for i, v in pairs(CTpSwitch:GetDescendants()) do
  9782. pcall(function()
  9783. v.ImageColor3 = Color3.fromRGB(100,200,100)
  9784. end)
  9785. end
  9786. CTpSwitch.BackgroundColor3 = Color3.fromRGB(100,200,100)
  9787. end
  9788. end)
  9789.  
  9790. CTglSwitch.MouseButton1Click:Connect(function()
  9791. local CMeth = Data.SwitchData.ClickMethods
  9792. if CMeth.Toggle == true then
  9793. CMeth.Toggle = false
  9794. for i, v in pairs(CTglSwitch:GetDescendants()) do
  9795. pcall(function()
  9796. v.ImageColor3 = Color3.fromRGB(200,200,200)
  9797. end)
  9798. end
  9799. CTglSwitch.BackgroundColor3 = Color3.fromRGB(200,200,200)
  9800. else
  9801. CMeth.Toggle = true
  9802. for i, v in pairs(CTglSwitch:GetDescendants()) do
  9803. pcall(function()
  9804. v.ImageColor3 = Color3.fromRGB(100,200,100)
  9805. end)
  9806. end
  9807. CTglSwitch.BackgroundColor3 = Color3.fromRGB(100,200,100)
  9808. end
  9809. end)
  9810.  
  9811. FlyingSwitch.MouseButton1Click:Connect(function()
  9812. local CMeth = Data.SwitchData
  9813. if CMeth.Flying == true then
  9814. CMeth.Flying = false
  9815. for i, v in pairs(FlyingSwitch:GetDescendants()) do
  9816. pcall(function()
  9817. v.ImageColor3 = Color3.fromRGB(200,200,200)
  9818. end)
  9819. end
  9820. FlyingSwitch.BackgroundColor3 = Color3.fromRGB(200,200,200)
  9821. else
  9822. CMeth.Flying = true
  9823. for i, v in pairs(FlyingSwitch:GetDescendants()) do
  9824. pcall(function()
  9825. v.ImageColor3 = Color3.fromRGB(100,200,100)
  9826. end)
  9827. end
  9828. FlyingSwitch.BackgroundColor3 = Color3.fromRGB(100,200,100)
  9829. ReFly()
  9830. Fly()
  9831. end
  9832. end)
  9833.  
  9834. ChathookSwitch.MouseButton1Click:Connect(function()
  9835. local CMeth = Data.SwitchData
  9836. if CMeth.Chathook == true then
  9837. CMeth.Chathook = false
  9838. for i, v in pairs(ChathookSwitch:GetDescendants()) do
  9839. pcall(function()
  9840. v.ImageColor3 = Color3.fromRGB(200,200,200)
  9841. end)
  9842. end
  9843. ChathookSwitch.BackgroundColor3 = Color3.fromRGB(200,200,200)
  9844. else
  9845. CMeth.Chathook = true
  9846. for i, v in pairs(ChathookSwitch:GetDescendants()) do
  9847. pcall(function()
  9848. v.ImageColor3 = Color3.fromRGB(100,200,100)
  9849. end)
  9850. end
  9851. ChathookSwitch.BackgroundColor3 = Color3.fromRGB(100,200,100)
  9852. end
  9853. end)
  9854.  
  9855. CAimbotSwitch.MouseButton1Click:Connect(function()
  9856. local CMeth = Data.SwitchData
  9857. if CMeth.CAim == true then
  9858. CMeth.CAim = false
  9859. for i, v in pairs(CAimbotSwitch:GetDescendants()) do
  9860. pcall(function()
  9861. v.ImageColor3 = Color3.fromRGB(200,200,200)
  9862. end)
  9863. end
  9864. CAimbotSwitch.BackgroundColor3 = Color3.fromRGB(200,200,200)
  9865. else
  9866. CMeth.CAim = true
  9867. for i, v in pairs(CAimbotSwitch:GetDescendants()) do
  9868. pcall(function()
  9869. v.ImageColor3 = Color3.fromRGB(100,200,100)
  9870. end)
  9871. end
  9872. CAimbotSwitch.BackgroundColor3 = Color3.fromRGB(100,200,100)
  9873. repeat
  9874. wait()
  9875. Data.Funcs.GetCoins(1)
  9876. wait()
  9877. until CMeth.CAim == false
  9878. end
  9879. end)
  9880.  
  9881. game.Workspace.ChildAdded:Connect(function(Child)
  9882. wait()
  9883. if Child.Name == "Beat to the Punch" then
  9884. NoChallengeFrame.Visible = false
  9885. BeatToThePunchFrame.Visible = true
  9886. elseif Child.Name == "Tidepool" then
  9887. NoChallengeFrame.Visible = false
  9888. TidepoolFrame.Visible = true
  9889. elseif string.lower(Child.Name )== "keys to victory" then
  9890. NoChallengeFrame.Visible = false
  9891. KeysToVictoryFrame.Visible = true
  9892. elseif Child.Name == "Byway Bustle" then
  9893. NoChallengeFrame.Visible = false
  9894. BywayBustleFrame.Visible = true
  9895. elseif Child.Name == "Cryptic Combo" then
  9896. NoChallengeFrame.Visible = false
  9897. CrypticComboFrame.Visible = true
  9898. elseif Child.Name == "Dive Dwelling" then
  9899. NoChallengeFrame.Visible = false
  9900. DiveDwellingFrame.Visible = true
  9901. elseif string.lower(Child.Name) == "get a grip" then
  9902. NoChallengeFrame.Visible = false
  9903. GetAGripFrame.Visible = true
  9904. end
  9905. end)
  9906.  
  9907. game.Workspace.ChildRemoved:Connect(function(Child)
  9908. local Challenges = {"tidepool","beat to the puch","byway bustle","cryptic combo","dive dwelling","get a grip","kys to victory"}
  9909. local Found = false
  9910. wait(1)
  9911. for i, v in pairs(game.Workspace:GetChildren()) do
  9912. for e, c in pairs(Challenges) do
  9913. if v.Name == c then
  9914. Found = true
  9915. end
  9916. end
  9917. end
  9918. if Found == false then
  9919. for i, v in pairs(ChallengesFrame:GetChildren()) do
  9920. v.Visible = false
  9921. end
  9922. NoChallengeFrame.Visible = true
  9923. end
  9924. end)
  9925.  
  9926. ShowInventory.MouseButton1Click:Connect(function()
  9927. Notify:Fire("This Command Is Still Not Done, Don't Belive The Results.")
  9928.  
  9929. -- Objects
  9930.  
  9931. local Inventory = Instance.new("Frame")
  9932. local SFrame = Instance.new("ScrollingFrame")
  9933. local Borders = Instance.new("Frame")
  9934. local Border = Instance.new("ImageLabel")
  9935. local Border_2 = Instance.new("ImageLabel")
  9936. local Border_3 = Instance.new("ImageLabel")
  9937. local Border_4 = Instance.new("ImageLabel")
  9938. local Border_5 = Instance.new("ImageLabel")
  9939. local Border_6 = Instance.new("ImageLabel")
  9940. local Border_7 = Instance.new("ImageLabel")
  9941. local Border_8 = Instance.new("ImageLabel")
  9942. local Background = Instance.new("Frame")
  9943. local Down = Instance.new("TextButton")
  9944. local Borders_2 = Instance.new("Frame")
  9945. local Border_9 = Instance.new("ImageLabel")
  9946. local Border_10 = Instance.new("ImageLabel")
  9947. local Border_11 = Instance.new("ImageLabel")
  9948. local Border_12 = Instance.new("ImageLabel")
  9949. local Border_13 = Instance.new("ImageLabel")
  9950. local Border_14 = Instance.new("ImageLabel")
  9951. local Border_15 = Instance.new("ImageLabel")
  9952. local Border_16 = Instance.new("ImageLabel")
  9953. local Up = Instance.new("TextButton")
  9954. local Borders_3 = Instance.new("Frame")
  9955. local Border_17 = Instance.new("ImageLabel")
  9956. local Border_18 = Instance.new("ImageLabel")
  9957. local Border_19 = Instance.new("ImageLabel")
  9958. local Border_20 = Instance.new("ImageLabel")
  9959. local Border_21 = Instance.new("ImageLabel")
  9960. local Border_22 = Instance.new("ImageLabel")
  9961. local Border_23 = Instance.new("ImageLabel")
  9962. local Border_24 = Instance.new("ImageLabel")
  9963. local pqb = Instance.new("ImageButton")
  9964.  
  9965. -- Properties
  9966.  
  9967. pqb.Name = "pqb"
  9968. pqb.Parent = Inventory
  9969. pqb.BackgroundColor3 = Color3.new(1, 1, 1)
  9970. pqb.BorderSizePixel = 0
  9971. pqb.Position = UDim2.new(0.0146412887, 425, 0.254500836, 0)
  9972. pqb.Size = UDim2.new(0, 20, 0, 20)
  9973. pqb.ZIndex = 1001
  9974. pqb.Image = "rbxassetid://1828839274"
  9975. pqb.MouseButton1Click:Connect(function()
  9976. Inventory:Destroy()
  9977. end)
  9978.  
  9979. Inventory.Name = "Inventory"
  9980. Inventory.Parent = Survivor
  9981. Inventory.BackgroundColor3 = Color3.new(1, 1, 1)
  9982. Inventory.BackgroundTransparency = 1
  9983. Inventory.BorderSizePixel = 0
  9984. Inventory.Size = UDim2.new(1, 0, 1, 0)
  9985.  
  9986. SFrame.Name = "SFrame"
  9987. SFrame.Parent = Inventory
  9988. SFrame.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  9989. SFrame.BackgroundTransparency = 1
  9990. SFrame.BorderSizePixel = 0
  9991. SFrame.Position = UDim2.new(0.0146412887, 0, 0.254500836, 0)
  9992. SFrame.Size = UDim2.new(0, 400, 0, 300)
  9993. SFrame.CanvasSize = UDim2.new(0, 0, 0, 1200)
  9994. SFrame.VerticalScrollBarPosition = Enum.VerticalScrollBarPosition.Left
  9995.  
  9996. Borders.Name = "Borders"
  9997. Borders.Parent = SFrame
  9998. Borders.BackgroundColor3 = Color3.new(1, 1, 1)
  9999. Borders.BackgroundTransparency = 1
  10000. Borders.BorderSizePixel = 0
  10001. Borders.Position = UDim2.new(0, 12, 0, 12)
  10002. Borders.Size = UDim2.new(0, 364, 0, 276)
  10003. Borders.ZIndex = 120
  10004.  
  10005. Border.Name = "Border"
  10006. Border.Parent = Borders
  10007. Border.BackgroundColor3 = Color3.new(1, 1, 1)
  10008. Border.BackgroundTransparency = 1
  10009. Border.BorderSizePixel = 0
  10010. Border.Position = UDim2.new(0, -12, 0, -12)
  10011. Border.Size = UDim2.new(0, 12, 0, 12)
  10012. Border.ZIndex = 110
  10013. Border.Image = "http://www.roblox.com/asset/?id=238725003"
  10014. Border.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  10015. Border.ImageRectSize = Vector2.new(12, 12)
  10016.  
  10017. Border_2.Name = "Border"
  10018. Border_2.Parent = Borders
  10019. Border_2.BackgroundColor3 = Color3.new(1, 1, 1)
  10020. Border_2.BackgroundTransparency = 1
  10021. Border_2.BorderSizePixel = 0
  10022. Border_2.Position = UDim2.new(1, 0, 0, -12)
  10023. Border_2.Size = UDim2.new(0, 12, 0, 12)
  10024. Border_2.ZIndex = 110
  10025. Border_2.Image = "http://www.roblox.com/asset/?id=238725003"
  10026. Border_2.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  10027. Border_2.ImageRectOffset = Vector2.new(24, 0)
  10028. Border_2.ImageRectSize = Vector2.new(12, 12)
  10029.  
  10030. Border_3.Name = "Border"
  10031. Border_3.Parent = Borders
  10032. Border_3.BackgroundColor3 = Color3.new(1, 1, 1)
  10033. Border_3.BackgroundTransparency = 1
  10034. Border_3.BorderSizePixel = 0
  10035. Border_3.Position = UDim2.new(0, -12, 1, 0)
  10036. Border_3.Size = UDim2.new(0, 12, 0, 12)
  10037. Border_3.ZIndex = 110
  10038. Border_3.Image = "http://www.roblox.com/asset/?id=238725003"
  10039. Border_3.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  10040. Border_3.ImageRectOffset = Vector2.new(0, 24)
  10041. Border_3.ImageRectSize = Vector2.new(12, 12)
  10042.  
  10043. Border_4.Name = "Border"
  10044. Border_4.Parent = Borders
  10045. Border_4.BackgroundColor3 = Color3.new(1, 1, 1)
  10046. Border_4.BackgroundTransparency = 1
  10047. Border_4.BorderSizePixel = 0
  10048. Border_4.Position = UDim2.new(1, 0, 1, 0)
  10049. Border_4.Size = UDim2.new(0, 12, 0, 12)
  10050. Border_4.ZIndex = 110
  10051. Border_4.Image = "http://www.roblox.com/asset/?id=238725003"
  10052. Border_4.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  10053. Border_4.ImageRectOffset = Vector2.new(24, 24)
  10054. Border_4.ImageRectSize = Vector2.new(12, 12)
  10055.  
  10056. Border_5.Name = "Border"
  10057. Border_5.Parent = Borders
  10058. Border_5.BackgroundColor3 = Color3.new(1, 1, 1)
  10059. Border_5.BackgroundTransparency = 1
  10060. Border_5.BorderSizePixel = 0
  10061. Border_5.Position = UDim2.new(0, 0, 1, 0)
  10062. Border_5.Size = UDim2.new(1, 0, 0, 12)
  10063. Border_5.ZIndex = 110
  10064. Border_5.Image = "http://www.roblox.com/asset/?id=238725003"
  10065. Border_5.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  10066. Border_5.ImageRectOffset = Vector2.new(12, 24)
  10067. Border_5.ImageRectSize = Vector2.new(12, 12)
  10068.  
  10069. Border_6.Name = "Border"
  10070. Border_6.Parent = Borders
  10071. Border_6.BackgroundColor3 = Color3.new(1, 1, 1)
  10072. Border_6.BackgroundTransparency = 1
  10073. Border_6.BorderSizePixel = 0
  10074. Border_6.Position = UDim2.new(0, 0, 0, -12)
  10075. Border_6.Size = UDim2.new(1, 0, 0, 12)
  10076. Border_6.ZIndex = 110
  10077. Border_6.Image = "http://www.roblox.com/asset/?id=238725003"
  10078. Border_6.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  10079. Border_6.ImageRectOffset = Vector2.new(12, 0)
  10080. Border_6.ImageRectSize = Vector2.new(12, 12)
  10081.  
  10082. Border_7.Name = "Border"
  10083. Border_7.Parent = Borders
  10084. Border_7.BackgroundColor3 = Color3.new(1, 1, 1)
  10085. Border_7.BackgroundTransparency = 1
  10086. Border_7.BorderSizePixel = 0
  10087. Border_7.Position = UDim2.new(0, -12, 0, 0)
  10088. Border_7.Size = UDim2.new(0, 12, 1, 0)
  10089. Border_7.ZIndex = 110
  10090. Border_7.Image = "http://www.roblox.com/asset/?id=238725003"
  10091. Border_7.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  10092. Border_7.ImageRectOffset = Vector2.new(0, 12)
  10093. Border_7.ImageRectSize = Vector2.new(12, 12)
  10094.  
  10095. Border_8.Name = "Border"
  10096. Border_8.Parent = Borders
  10097. Border_8.BackgroundColor3 = Color3.new(1, 1, 1)
  10098. Border_8.BackgroundTransparency = 1
  10099. Border_8.BorderSizePixel = 0
  10100. Border_8.Position = UDim2.new(1, 0, 0, 0)
  10101. Border_8.Size = UDim2.new(0, 12, 1, 0)
  10102. Border_8.ZIndex = 110
  10103. Border_8.Image = "http://www.roblox.com/asset/?id=238725003"
  10104. Border_8.ImageColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  10105. Border_8.ImageRectOffset = Vector2.new(24, 12)
  10106. Border_8.ImageRectSize = Vector2.new(12, 12)
  10107.  
  10108. Background.Name = "Background"
  10109. Background.Parent = Borders
  10110. Background.BackgroundColor3 = Color3.new(0.392157, 0.784314, 0.392157)
  10111. Background.Size = UDim2.new(1, 0, 1, 0)
  10112.  
  10113. Down.Name = "Down"
  10114. Down.Parent = Inventory
  10115. Down.BackgroundColor3 = Color3.new(1, 1, 1)
  10116. Down.BorderSizePixel = 0
  10117. Down.Position = UDim2.new(0.308931172, 0, 0.693944335, 0)
  10118. Down.Size = UDim2.new(0, 20, 0, 20)
  10119. Down.Font = Enum.Font.SourceSans
  10120. Down.Text = "V"
  10121. Down.TextColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  10122. Down.TextScaled = true
  10123. Down.TextSize = 14
  10124. Down.TextWrapped = true
  10125.  
  10126. Borders_2.Name = "Borders"
  10127. Borders_2.Parent = Down
  10128. Borders_2.BackgroundColor3 = Color3.new(1, 1, 1)
  10129. Borders_2.BackgroundTransparency = 1
  10130. Borders_2.BorderSizePixel = 0
  10131. Borders_2.Size = UDim2.new(1, 0, 1, 0)
  10132. Borders_2.ZIndex = 120
  10133.  
  10134. Border_9.Name = "Border"
  10135. Border_9.Parent = Borders_2
  10136. Border_9.BackgroundColor3 = Color3.new(1, 1, 1)
  10137. Border_9.BackgroundTransparency = 1
  10138. Border_9.BorderSizePixel = 0
  10139. Border_9.Position = UDim2.new(0, -12, 0, -12)
  10140. Border_9.Size = UDim2.new(0, 12, 0, 12)
  10141. Border_9.ZIndex = 110
  10142. Border_9.Image = "http://www.roblox.com/asset/?id=238725003"
  10143. Border_9.ImageRectSize = Vector2.new(12, 12)
  10144.  
  10145. Border_10.Name = "Border"
  10146. Border_10.Parent = Borders_2
  10147. Border_10.BackgroundColor3 = Color3.new(1, 1, 1)
  10148. Border_10.BackgroundTransparency = 1
  10149. Border_10.BorderSizePixel = 0
  10150. Border_10.Position = UDim2.new(1, 0, 0, -12)
  10151. Border_10.Size = UDim2.new(0, 12, 0, 12)
  10152. Border_10.ZIndex = 110
  10153. Border_10.Image = "http://www.roblox.com/asset/?id=238725003"
  10154. Border_10.ImageRectOffset = Vector2.new(24, 0)
  10155. Border_10.ImageRectSize = Vector2.new(12, 12)
  10156.  
  10157. Border_11.Name = "Border"
  10158. Border_11.Parent = Borders_2
  10159. Border_11.BackgroundColor3 = Color3.new(1, 1, 1)
  10160. Border_11.BackgroundTransparency = 1
  10161. Border_11.BorderSizePixel = 0
  10162. Border_11.Position = UDim2.new(0, -12, 1, 0)
  10163. Border_11.Size = UDim2.new(0, 12, 0, 12)
  10164. Border_11.ZIndex = 110
  10165. Border_11.Image = "http://www.roblox.com/asset/?id=238725003"
  10166. Border_11.ImageRectOffset = Vector2.new(0, 24)
  10167. Border_11.ImageRectSize = Vector2.new(12, 12)
  10168.  
  10169. Border_12.Name = "Border"
  10170. Border_12.Parent = Borders_2
  10171. Border_12.BackgroundColor3 = Color3.new(1, 1, 1)
  10172. Border_12.BackgroundTransparency = 1
  10173. Border_12.BorderSizePixel = 0
  10174. Border_12.Position = UDim2.new(1, 0, 1, 0)
  10175. Border_12.Size = UDim2.new(0, 12, 0, 12)
  10176. Border_12.ZIndex = 110
  10177. Border_12.Image = "http://www.roblox.com/asset/?id=238725003"
  10178. Border_12.ImageRectOffset = Vector2.new(24, 24)
  10179. Border_12.ImageRectSize = Vector2.new(12, 12)
  10180.  
  10181. Border_13.Name = "Border"
  10182. Border_13.Parent = Borders_2
  10183. Border_13.BackgroundColor3 = Color3.new(1, 1, 1)
  10184. Border_13.BackgroundTransparency = 1
  10185. Border_13.BorderSizePixel = 0
  10186. Border_13.Position = UDim2.new(0, 0, 1, 0)
  10187. Border_13.Size = UDim2.new(1, 0, 0, 12)
  10188. Border_13.ZIndex = 110
  10189. Border_13.Image = "http://www.roblox.com/asset/?id=238725003"
  10190. Border_13.ImageRectOffset = Vector2.new(12, 24)
  10191. Border_13.ImageRectSize = Vector2.new(12, 12)
  10192.  
  10193. Border_14.Name = "Border"
  10194. Border_14.Parent = Borders_2
  10195. Border_14.BackgroundColor3 = Color3.new(1, 1, 1)
  10196. Border_14.BackgroundTransparency = 1
  10197. Border_14.BorderSizePixel = 0
  10198. Border_14.Position = UDim2.new(0, 0, 0, -12)
  10199. Border_14.Size = UDim2.new(1, 0, 0, 12)
  10200. Border_14.ZIndex = 110
  10201. Border_14.Image = "http://www.roblox.com/asset/?id=238725003"
  10202. Border_14.ImageRectOffset = Vector2.new(12, 0)
  10203. Border_14.ImageRectSize = Vector2.new(12, 12)
  10204.  
  10205. Border_15.Name = "Border"
  10206. Border_15.Parent = Borders_2
  10207. Border_15.BackgroundColor3 = Color3.new(1, 1, 1)
  10208. Border_15.BackgroundTransparency = 1
  10209. Border_15.BorderSizePixel = 0
  10210. Border_15.Position = UDim2.new(0, -12, 0, 0)
  10211. Border_15.Size = UDim2.new(0, 12, 1, 0)
  10212. Border_15.ZIndex = 110
  10213. Border_15.Image = "http://www.roblox.com/asset/?id=238725003"
  10214. Border_15.ImageRectOffset = Vector2.new(0, 12)
  10215. Border_15.ImageRectSize = Vector2.new(12, 12)
  10216.  
  10217. Border_16.Name = "Border"
  10218. Border_16.Parent = Borders_2
  10219. Border_16.BackgroundColor3 = Color3.new(1, 1, 1)
  10220. Border_16.BackgroundTransparency = 1
  10221. Border_16.BorderSizePixel = 0
  10222. Border_16.Position = UDim2.new(1, 0, 0, 0)
  10223. Border_16.Size = UDim2.new(0, 12, 1, 0)
  10224. Border_16.ZIndex = 110
  10225. Border_16.Image = "http://www.roblox.com/asset/?id=238725003"
  10226. Border_16.ImageRectOffset = Vector2.new(24, 12)
  10227. Border_16.ImageRectSize = Vector2.new(12, 12)
  10228.  
  10229. Up.Name = "Up"
  10230. Up.Parent = Inventory
  10231. Up.BackgroundColor3 = Color3.new(1, 1, 1)
  10232. Up.BorderSizePixel = 0
  10233. Up.Position = UDim2.new(0.308931172, 0, 0.274959058, 0)
  10234. Up.Size = UDim2.new(0, 20, 0, 20)
  10235. Up.Font = Enum.Font.SourceSans
  10236. Up.Text = "^"
  10237. Up.TextColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  10238. Up.TextScaled = true
  10239. Up.TextSize = 14
  10240. Up.TextWrapped = true
  10241.  
  10242. Borders_3.Name = "Borders"
  10243. Borders_3.Parent = Up
  10244. Borders_3.BackgroundColor3 = Color3.new(1, 1, 1)
  10245. Borders_3.BackgroundTransparency = 1
  10246. Borders_3.BorderSizePixel = 0
  10247. Borders_3.Size = UDim2.new(1, 0, 1, 0)
  10248. Borders_3.ZIndex = 120
  10249.  
  10250. Border_17.Name = "Border"
  10251. Border_17.Parent = Borders_3
  10252. Border_17.BackgroundColor3 = Color3.new(1, 1, 1)
  10253. Border_17.BackgroundTransparency = 1
  10254. Border_17.BorderSizePixel = 0
  10255. Border_17.Position = UDim2.new(0, -12, 0, -12)
  10256. Border_17.Size = UDim2.new(0, 12, 0, 12)
  10257. Border_17.ZIndex = 110
  10258. Border_17.Image = "http://www.roblox.com/asset/?id=238725003"
  10259. Border_17.ImageRectSize = Vector2.new(12, 12)
  10260.  
  10261. Border_18.Name = "Border"
  10262. Border_18.Parent = Borders_3
  10263. Border_18.BackgroundColor3 = Color3.new(1, 1, 1)
  10264. Border_18.BackgroundTransparency = 1
  10265. Border_18.BorderSizePixel = 0
  10266. Border_18.Position = UDim2.new(1, 0, 0, -12)
  10267. Border_18.Size = UDim2.new(0, 12, 0, 12)
  10268. Border_18.ZIndex = 110
  10269. Border_18.Image = "http://www.roblox.com/asset/?id=238725003"
  10270. Border_18.ImageRectOffset = Vector2.new(24, 0)
  10271. Border_18.ImageRectSize = Vector2.new(12, 12)
  10272.  
  10273. Border_19.Name = "Border"
  10274. Border_19.Parent = Borders_3
  10275. Border_19.BackgroundColor3 = Color3.new(1, 1, 1)
  10276. Border_19.BackgroundTransparency = 1
  10277. Border_19.BorderSizePixel = 0
  10278. Border_19.Position = UDim2.new(0, -12, 1, 0)
  10279. Border_19.Size = UDim2.new(0, 12, 0, 12)
  10280. Border_19.ZIndex = 110
  10281. Border_19.Image = "http://www.roblox.com/asset/?id=238725003"
  10282. Border_19.ImageRectOffset = Vector2.new(0, 24)
  10283. Border_19.ImageRectSize = Vector2.new(12, 12)
  10284.  
  10285. Border_20.Name = "Border"
  10286. Border_20.Parent = Borders_3
  10287. Border_20.BackgroundColor3 = Color3.new(1, 1, 1)
  10288. Border_20.BackgroundTransparency = 1
  10289. Border_20.BorderSizePixel = 0
  10290. Border_20.Position = UDim2.new(1, 0, 1, 0)
  10291. Border_20.Size = UDim2.new(0, 12, 0, 12)
  10292. Border_20.ZIndex = 110
  10293. Border_20.Image = "http://www.roblox.com/asset/?id=238725003"
  10294. Border_20.ImageRectOffset = Vector2.new(24, 24)
  10295. Border_20.ImageRectSize = Vector2.new(12, 12)
  10296.  
  10297. Border_21.Name = "Border"
  10298. Border_21.Parent = Borders_3
  10299. Border_21.BackgroundColor3 = Color3.new(1, 1, 1)
  10300. Border_21.BackgroundTransparency = 1
  10301. Border_21.BorderSizePixel = 0
  10302. Border_21.Position = UDim2.new(0, 0, 1, 0)
  10303. Border_21.Size = UDim2.new(1, 0, 0, 12)
  10304. Border_21.ZIndex = 110
  10305. Border_21.Image = "http://www.roblox.com/asset/?id=238725003"
  10306. Border_21.ImageRectOffset = Vector2.new(12, 24)
  10307. Border_21.ImageRectSize = Vector2.new(12, 12)
  10308.  
  10309. Border_22.Name = "Border"
  10310. Border_22.Parent = Borders_3
  10311. Border_22.BackgroundColor3 = Color3.new(1, 1, 1)
  10312. Border_22.BackgroundTransparency = 1
  10313. Border_22.BorderSizePixel = 0
  10314. Border_22.Position = UDim2.new(0, 0, 0, -12)
  10315. Border_22.Size = UDim2.new(1, 0, 0, 12)
  10316. Border_22.ZIndex = 110
  10317. Border_22.Image = "http://www.roblox.com/asset/?id=238725003"
  10318. Border_22.ImageRectOffset = Vector2.new(12, 0)
  10319. Border_22.ImageRectSize = Vector2.new(12, 12)
  10320.  
  10321. Border_23.Name = "Border"
  10322. Border_23.Parent = Borders_3
  10323. Border_23.BackgroundColor3 = Color3.new(1, 1, 1)
  10324. Border_23.BackgroundTransparency = 1
  10325. Border_23.BorderSizePixel = 0
  10326. Border_23.Position = UDim2.new(0, -12, 0, 0)
  10327. Border_23.Size = UDim2.new(0, 12, 1, 0)
  10328. Border_23.ZIndex = 110
  10329. Border_23.Image = "http://www.roblox.com/asset/?id=238725003"
  10330. Border_23.ImageRectOffset = Vector2.new(0, 12)
  10331. Border_23.ImageRectSize = Vector2.new(12, 12)
  10332.  
  10333. Border_24.Name = "Border"
  10334. Border_24.Parent = Borders_3
  10335. Border_24.BackgroundColor3 = Color3.new(1, 1, 1)
  10336. Border_24.BackgroundTransparency = 1
  10337. Border_24.BorderSizePixel = 0
  10338. Border_24.Position = UDim2.new(1, 0, 0, 0)
  10339. Border_24.Size = UDim2.new(0, 12, 1, 0)
  10340. Border_24.ZIndex = 110
  10341. Border_24.Image = "http://www.roblox.com/asset/?id=238725003"
  10342. Border_24.ImageRectOffset = Vector2.new(24, 12)
  10343. Border_24.ImageRectSize = Vector2.new(12, 12)
  10344.  
  10345. -- Scripts
  10346.  
  10347. local Target = Data.GetPlayerFromShortName(Playername.Text)
  10348. local Pos = Vector2.new(12, 12)
  10349. if Target ~= nil then
  10350. local Stats = Target.Stats
  10351. for i, v in pairs(Stats:GetChildren())do
  10352. local bl = false
  10353. for e, c in pairs(Data.ProfileData.Values) do
  10354. if v.Name == c.Name then
  10355. bl = true
  10356. end
  10357. end
  10358. if bl == false then
  10359. -- Objects
  10360.  
  10361. local Item = Instance.new("ImageLabel")
  10362. local Borders = Instance.new("Frame")
  10363. local Border = Instance.new("ImageLabel")
  10364. local Border_2 = Instance.new("ImageLabel")
  10365. local Border_3 = Instance.new("ImageLabel")
  10366. local Border_4 = Instance.new("ImageLabel")
  10367. local Border_5 = Instance.new("ImageLabel")
  10368. local Border_6 = Instance.new("ImageLabel")
  10369. local Border_7 = Instance.new("ImageLabel")
  10370. local Border_8 = Instance.new("ImageLabel")
  10371.  
  10372. -- Properties
  10373.  
  10374. Item.Name = "Item"
  10375. Item.Parent = SFrame
  10376. Item.BackgroundColor3 = Color3.new(1, 1, 1)
  10377. Item.BorderSizePixel = 0
  10378. Item.Position = UDim2.new(0.142752558, 0, 0.489361703, 0)
  10379. Item.Size = UDim2.new(0, 50, 0, 50)
  10380. Item.ZIndex = 101
  10381.  
  10382. Borders.Name = "Borders"
  10383. Borders.Parent = Item
  10384. Borders.BackgroundColor3 = Color3.new(1, 1, 1)
  10385. Borders.BackgroundTransparency = 1
  10386. Borders.BorderSizePixel = 0
  10387. Borders.Size = UDim2.new(1, 0, 1, 0)
  10388. Borders.ZIndex = 120
  10389.  
  10390. Border.Name = "Border"
  10391. Border.Parent = Borders
  10392. Border.BackgroundColor3 = Color3.new(1, 1, 1)
  10393. Border.BackgroundTransparency = 1
  10394. Border.BorderSizePixel = 0
  10395. Border.Position = UDim2.new(0, -12, 0, -12)
  10396. Border.Size = UDim2.new(0, 12, 0, 12)
  10397. Border.ZIndex = 110
  10398. Border.Image = "http://www.roblox.com/asset/?id=238725003"
  10399. Border.ImageRectSize = Vector2.new(12, 12)
  10400.  
  10401. Border_2.Name = "Border"
  10402. Border_2.Parent = Borders
  10403. Border_2.BackgroundColor3 = Color3.new(1, 1, 1)
  10404. Border_2.BackgroundTransparency = 1
  10405. Border_2.BorderSizePixel = 0
  10406. Border_2.Position = UDim2.new(1, 0, 0, -12)
  10407. Border_2.Size = UDim2.new(0, 12, 0, 12)
  10408. Border_2.ZIndex = 110
  10409. Border_2.Image = "http://www.roblox.com/asset/?id=238725003"
  10410. Border_2.ImageRectOffset = Vector2.new(24, 0)
  10411. Border_2.ImageRectSize = Vector2.new(12, 12)
  10412.  
  10413. Border_3.Name = "Border"
  10414. Border_3.Parent = Borders
  10415. Border_3.BackgroundColor3 = Color3.new(1, 1, 1)
  10416. Border_3.BackgroundTransparency = 1
  10417. Border_3.BorderSizePixel = 0
  10418. Border_3.Position = UDim2.new(0, -12, 1, 0)
  10419. Border_3.Size = UDim2.new(0, 12, 0, 12)
  10420. Border_3.ZIndex = 110
  10421. Border_3.Image = "http://www.roblox.com/asset/?id=238725003"
  10422. Border_3.ImageRectOffset = Vector2.new(0, 24)
  10423. Border_3.ImageRectSize = Vector2.new(12, 12)
  10424.  
  10425. Border_4.Name = "Border"
  10426. Border_4.Parent = Borders
  10427. Border_4.BackgroundColor3 = Color3.new(1, 1, 1)
  10428. Border_4.BackgroundTransparency = 1
  10429. Border_4.BorderSizePixel = 0
  10430. Border_4.Position = UDim2.new(1, 0, 1, 0)
  10431. Border_4.Size = UDim2.new(0, 12, 0, 12)
  10432. Border_4.ZIndex = 110
  10433. Border_4.Image = "http://www.roblox.com/asset/?id=238725003"
  10434. Border_4.ImageRectOffset = Vector2.new(24, 24)
  10435. Border_4.ImageRectSize = Vector2.new(12, 12)
  10436.  
  10437. Border_5.Name = "Border"
  10438. Border_5.Parent = Borders
  10439. Border_5.BackgroundColor3 = Color3.new(1, 1, 1)
  10440. Border_5.BackgroundTransparency = 1
  10441. Border_5.BorderSizePixel = 0
  10442. Border_5.Position = UDim2.new(0, 0, 1, 0)
  10443. Border_5.Size = UDim2.new(1, 0, 0, 12)
  10444. Border_5.ZIndex = 110
  10445. Border_5.Image = "http://www.roblox.com/asset/?id=238725003"
  10446. Border_5.ImageRectOffset = Vector2.new(12, 24)
  10447. Border_5.ImageRectSize = Vector2.new(12, 12)
  10448.  
  10449. Border_6.Name = "Border"
  10450. Border_6.Parent = Borders
  10451. Border_6.BackgroundColor3 = Color3.new(1, 1, 1)
  10452. Border_6.BackgroundTransparency = 1
  10453. Border_6.BorderSizePixel = 0
  10454. Border_6.Position = UDim2.new(0, 0, 0, -12)
  10455. Border_6.Size = UDim2.new(1, 0, 0, 12)
  10456. Border_6.ZIndex = 110
  10457. Border_6.Image = "http://www.roblox.com/asset/?id=238725003"
  10458. Border_6.ImageRectOffset = Vector2.new(12, 0)
  10459. Border_6.ImageRectSize = Vector2.new(12, 12)
  10460.  
  10461. Border_7.Name = "Border"
  10462. Border_7.Parent = Borders
  10463. Border_7.BackgroundColor3 = Color3.new(1, 1, 1)
  10464. Border_7.BackgroundTransparency = 1
  10465. Border_7.BorderSizePixel = 0
  10466. Border_7.Position = UDim2.new(0, -12, 0, 0)
  10467. Border_7.Size = UDim2.new(0, 12, 1, 0)
  10468. Border_7.ZIndex = 110
  10469. Border_7.Image = "http://www.roblox.com/asset/?id=238725003"
  10470. Border_7.ImageRectOffset = Vector2.new(0, 12)
  10471. Border_7.ImageRectSize = Vector2.new(12, 12)
  10472.  
  10473. Border_8.Name = "Border"
  10474. Border_8.Parent = Borders
  10475. Border_8.BackgroundColor3 = Color3.new(1, 1, 1)
  10476. Border_8.BackgroundTransparency = 1
  10477. Border_8.BorderSizePixel = 0
  10478. Border_8.Position = UDim2.new(1, 0, 0, 0)
  10479. Border_8.Size = UDim2.new(0, 12, 1, 0)
  10480. Border_8.ZIndex = 110
  10481. Border_8.Image = "http://www.roblox.com/asset/?id=238725003"
  10482. Border_8.ImageRectOffset = Vector2.new(24, 12)
  10483. Border_8.ImageRectSize = Vector2.new(12, 12)
  10484.  
  10485. -- Scripts
  10486.  
  10487. local IImage = nil
  10488. for e, c in pairs(game.ReplicatedStorage.ShopData:GetDescendants())do
  10489. if c.Name == v.Name then
  10490. IImage = "rbxassetid://"..c.Value
  10491. end
  10492. end
  10493. if IImage == nil and v.Value == 0 then
  10494. Item:Destroy()
  10495. else
  10496. Item.Image = IImage
  10497. Item.Position = UDim2.new(0,Pos.X,0,Pos.Y)
  10498. if Pos.X >= 350 then
  10499. Pos = Pos + Vector2.new(0,75)
  10500. Pos = Vector2.new(0,Pos.Y)
  10501. else
  10502. Pos = Pos + Vector2.new(75,0)
  10503. end
  10504. end
  10505. end
  10506. Up.MouseButton1Click:Connect(function()
  10507. SFrame.CanvasPosition = SFrame.CanvasPosition + Vector2.new(0,10)
  10508. end)
  10509. Down.MouseButton1Click:Connect(function()
  10510. SFrame.CanvasPosition = SFrame.CanvasPosition - Vector2.new(0,10)
  10511. end)
  10512. end
  10513. end
  10514. end)
  10515.  
  10516. Data.Player.Chatted:Connect(function(Msg)
  10517. if Data.SwitchData.Chathook == true then
  10518. local Args = Data.StringToArray(Msg," ")
  10519. if string.lower(Args[1]) == "/noclip" then
  10520. print("Noclip")
  10521. if Data.SwitchData.Noclipping == true then
  10522. Data.SwitchData.Noclipping = false
  10523. else
  10524. Data.SwitchData.Noclipping = true
  10525. end
  10526. elseif string.lower(Args[1]) == "/goto" then
  10527. local Target = Data.GetPlayerFromShortName(Args[2])
  10528. if Target ~= nil then
  10529. Data.Player.Character.HumanoidRootPart.CFrame = Target.Character.HumanoidRootPart.CFrame
  10530. end
  10531. elseif string.lower(Args[1]) == "/mute" then
  10532. local muted = Data.Player.Muted
  10533. if muted.Value == true then
  10534. muted.Value = false
  10535. else
  10536. muted.Value = true
  10537. end
  10538. elseif string.lower(Args[1]) == "/move" then
  10539. local muted = Data.Player.CanMove
  10540. if muted.Value == true then
  10541. muted.Value = false
  10542. else
  10543. muted.Value = true
  10544. end
  10545. elseif string.lower(Args[1]) == "/caim" then
  10546. Data.Funcs.GetCoins(tonumber(Args[2]))
  10547. end
  10548. end
  10549. end)
  10550.  
  10551. local RS = game:GetService("RunService")
  10552.  
  10553. RS.Heartbeat:Connect(function(Step)
  10554. if Data.SwitchData.Noclipping == true then
  10555. while true do
  10556. if Data.SwitchData.Noclipping == true then
  10557. for _,v in pairs(Data.Player.Character:children()) do
  10558. pcall(function()
  10559. if v.className == "Part" then
  10560. v.CanCollide = false
  10561. elseif v.ClassName == "Model" then
  10562. v.Head.CanCollide = false
  10563. end
  10564. end)
  10565. end
  10566. end
  10567. game:service("RunService").Stepped:wait()
  10568. end
  10569. end
  10570. end)
  10571.  
  10572. --[[
  10573. local Players = game.Players
  10574. local Player = Players.LocalPlayer
  10575. local Mouse = Player:GetMouse()
  10576. Mouse.KeyDown:Connect(function(Key)
  10577. if Key == "t" then
  10578. for i, v in pairs(Players:GetChildren())do
  10579. print(v.Name)
  10580. v.Character.HumanoidRootPart.CFrame = Player.Character.HumanoidRootPart.CFrame
  10581. print("Done")
  10582. end
  10583. end
  10584. end)
  10585. --]]
Add Comment
Please, Sign In to add comment