Guest User

Untitled

a guest
Apr 24th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 120.24 KB | None | 0 0
  1. local plr = game:GetService("Players").LocalPlayer
  2.  
  3. local TpMethod = 1
  4.  
  5. function JailbreakTp(...)
  6. getfenv()["TpMethod" .. TpMethod](...)
  7. end
  8.  
  9. function TpMethod1(...)
  10. local char = plr.Character
  11. local root = char.HumanoidRootPart
  12. local args = {...}
  13. for i=0,1,0.05 do
  14. wait()
  15. root.CFrame = root.CFrame:lerp(CFrame.new(unpack(args,1,3)), i)
  16. end
  17. end
  18.  
  19. function TpMethod2(...)
  20. local args = {...}
  21. local char = plr.Character
  22. local target = Vector3.new(unpack(args,1,3))
  23. local dist = (char:WaitForChild"HumanoidRootPart".Position - target).magnitude
  24. dist = math.floor(dist / 100) + 1
  25. for i=0,dist * 4 do
  26. wait()
  27. char:MoveTo(Vector3.new(...))
  28. end
  29. if args[#args] == true then
  30. wait()
  31. char:WaitForChild'HumanoidRootPart'.CFrame = CFrame.new(unpack(args,1,#args - 1))
  32. end
  33. end
  34.  
  35. function Tween(obj, t, properties)
  36. local TweenService = game:GetService("TweenService")
  37. local tweenInfo = TweenInfo.new(t,Enum.EasingStyle.Linear,Enum.EasingDirection.In,0,false,0)
  38. local tween = TweenService:Create(obj,tweenInfo,properties)
  39. tween:Play()
  40. return tween
  41. end
  42.  
  43. local Tracers = {}
  44.  
  45. local function AddLasso(p,team)
  46. if not Tracers[team.Name] then return end
  47. if p == plr then return end
  48. spawn(function()
  49. if p.Character then
  50. local l = Instance.new("SelectionPartLasso")
  51. l.Parent = p.Character
  52. l.Humanoid = p.Character:FindFirstChildOfClass"Humanoid"
  53. l.Part = plr.Character:WaitForChild"HumanoidRootPart"
  54. l.Visible = true
  55. l.Color3 = team.TeamColor.Color
  56. for i=0,5 do
  57. local sg = Instance.new("SurfaceGui")
  58. sg.Face = i
  59. sg.Parent = p.Character
  60. sg.Adornee = p.Character:FindFirstChild"HumanoidRootPart"
  61. sg.AlwaysOnTop = true
  62. local f = Instance.new("Frame", sg)
  63. f.Size = UDim2.new(1,0,1,0)
  64. f.BorderSizePixel = 0
  65. f.BackgroundColor3 = team.TeamColor.Color
  66. f.BackgroundTransparency = 0.5
  67. end
  68. end
  69. end)
  70. end
  71.  
  72. local function RemoveLasso(p)
  73. if not p.Character then return end
  74. for i,v in pairs(p.Character:GetDescendants()) do
  75. if v.ClassName:find("Selection") or v.ClassName == "SurfaceGui" then
  76. v:Destroy()
  77. end
  78. end
  79. end
  80.  
  81. for _,team in pairs(game:GetService("Teams"):GetChildren()) do
  82. team.PlayerAdded:connect(function(p)
  83. AddLasso(p,team)
  84. end)
  85.  
  86. team.PlayerRemoved:connect(function(p)
  87. RemoveLasso(p)
  88. end)
  89. end
  90.  
  91. function ToggleTracers(team, bool)
  92. Tracers[team] = bool
  93. local t = game:GetService("Teams"):FindFirstChild(team)
  94. if not t then return end
  95. for i,v in pairs(t:GetPlayers()) do
  96. if bool then
  97. AddLasso(v,t)
  98. else
  99. RemoveLasso(v)
  100. end
  101. end
  102. end
  103.  
  104. local function CharAdded(plr, char)
  105. if Tracers[tostring(plr.Team)] then
  106. AddLasso(plr,plr.Team)
  107. end
  108. end
  109.  
  110. local function PlrAdded(plr)
  111. plr.CharacterAdded:connect(function(char)
  112. CharAdded(plr, char)
  113. end)
  114. if plr.Character then
  115. CharAdded(plr, plr.Character)
  116. end
  117. end
  118.  
  119. game:GetService("Players").PlayerAdded:connect(PlrAdded)
  120. for _,v in pairs(game:GetService("Players"):GetPlayers()) do
  121. PlrAdded(v)
  122. end
  123.  
  124. --Creating Gui--
  125.  
  126. local function Create(classname)
  127. return function(t)
  128. local ins = Instance.new(classname)
  129. for i,v in pairs(t) do
  130. ins[i] = v
  131. end
  132. return ins
  133. end
  134. end
  135.  
  136. --local parent = game:GetService("CoreGui"):WaitForChild("RobloxGui")
  137. local main = Create "Frame" {
  138. Active = true,
  139. ClipsDescendants = true,
  140. Draggable = true,
  141. BackgroundColor3 = Color3.new(0,1,1),
  142. BorderSizePixel = 0,
  143. Size = UDim2.new(0,400,0,300),
  144. Position = UDim2.new(0.5,-200,0,-300),
  145. BackgroundTransparency = 1,
  146. Parent = Instance.new("ScreenGui", plr.PlayerGui)--parent
  147. }
  148. do
  149. local effect = Create "Frame" {
  150. Parent = main,
  151. Size = UDim2.new(1,0,0,50),
  152. BackgroundColor3 = Color3.fromRGB(255,0,0),
  153. BorderSizePixel = 0,
  154. ClipsDescendants = true,
  155. }
  156. local lb = Create "TextLabel" {
  157. Parent = effect,
  158. Size = UDim2.new(1,0,1,0),
  159. BackgroundTransparency = 1,
  160. BorderSizePixel = 0,
  161. TextSize = 30,
  162. TextColor3 = Color3.new(0,0,1),
  163. TextXAlignment = "Left",
  164. Font = "SourceSansBold",
  165. Text = "Jailbreak GUI Remastered by ArMaNi#4431",
  166. ZIndex = 2,
  167. }
  168.  
  169. local function GTween()
  170. lb:TweenPosition(UDim2.new(1,10,0,0), nil,nil,3,true,function(ts)
  171. if ts == Enum.TweenStatus.Completed then
  172. lb.Position = UDim2.new(0,0 - lb.TextBounds.X - 2,0,0)
  173. GTween()
  174. end
  175. end)
  176. end
  177. GTween()
  178. end
  179.  
  180. local Menu = Create "Frame" {
  181. BackgroundColor3 = Color3.new(0,0,1),
  182. BorderSizePixel = 0,
  183. Position = UDim2.new(0,0,0,50),
  184. Size = UDim2.new(1,0,1,-50),
  185. Parent = main,
  186. }
  187.  
  188. local MenuLabel = Create "TextLabel" {
  189. BackgroundTransparency = 1,
  190. BorderSizePixel = 0,
  191. TextColor3 = Color3.new(0,1,0),
  192. TextSize = 22,
  193. Font = "SourceSans",
  194. Text = "Made by ArMaNi#4431(credit to refrfgrtgef on v3rm)",
  195. TextWrapped = true,
  196. Size = UDim2.new(1,0,0,50),
  197. Parent = Menu
  198. }
  199.  
  200. local function CreateButton(text,parent)
  201. return Create "TextButton" {
  202. Active = true,
  203. AutoButtonColor = true,
  204. BackgroundColor3 = Color3.fromRGB(0,155,232),
  205. BorderSizePixel = 1,
  206. Size = UDim2.new(0,100,0,30),
  207. Font = "SourceSansBold",
  208. TextColor3 = Color3.new(1,1,0),
  209. TextSize = 20,
  210. Text = text,
  211. Parent = parent
  212. }
  213. end
  214.  
  215. local function CreateFrame(name)
  216. local f = Create "Frame" {
  217. BackgroundColor3 = Color3.new(0,1,1),
  218. BorderSizePixel = 0,
  219. Position = UDim2.new(0,0,0,50),
  220. Size = UDim2.new(1,0,1,-50),
  221. Visible = false,
  222. }
  223. local lb = Create "TextLabel" {
  224. BackgroundTransparency = 1,
  225. BorderSizePixel = 0,
  226. TextSize = 20,
  227. TextColor3 = Color3.new(0,1,1),
  228. Position = UDim2.new(0,0,0,5),
  229. Text = name,
  230. Parent = f,
  231. TextXAlignment = "Center",
  232. TextYAlignment = "Center",
  233. Size = UDim2.new(1,0,0,30),
  234. }
  235. local exit = CreateButton("Back", f)
  236. exit.Position = UDim2.new(0.5,-50,1,-45)
  237. exit.MouseButton1Click:connect(function()
  238. Menu.Visible = true
  239. f.Visible = false
  240. ActiveFrame = Menu
  241. end)
  242. return f
  243. end
  244.  
  245. ActiveFrame = Menu
  246.  
  247. local TeleportsFrame = CreateFrame("Teleports")
  248. TeleportsFrame.Parent = main
  249.  
  250. local BankIn = CreateButton("Bank (In)", TeleportsFrame)
  251. BankIn.Position = UDim2.new(0,15,0,40)
  252. BankIn.Size = UDim2.new(0,80,0,30)
  253. BankIn.MouseButton1Click:connect(function()
  254. JailbreakTp(32,0.715,814, true)
  255. end)
  256.  
  257. local BankOut = CreateButton("Bank (Out)", TeleportsFrame)
  258. BankOut.Position = UDim2.new(0,105,0,40)
  259. BankOut.MouseButton1Click:connect(function()
  260. JailbreakTp(10, 18, 784)
  261. end)
  262.  
  263. local JailIn = CreateButton("Jail (In)", TeleportsFrame)
  264. JailIn.Position = UDim2.new(0,215,0,40)
  265. JailIn.Size = UDim2.new(0,80,0,30)
  266. JailIn.MouseButton1Click:connect(function()
  267. JailbreakTp(-1310, 18, -1658)
  268. end)
  269.  
  270. local JailOut = CreateButton("Jail (Out)", TeleportsFrame)
  271. JailOut.Position = UDim2.new(0,305,0,40)
  272. JailOut.Size = UDim2.new(0,80,0,30)
  273. JailOut.MouseButton1Click:connect(function()
  274. JailbreakTp(-1133, 18, -1355)
  275. end)
  276.  
  277. local Garage = CreateButton("Garage", TeleportsFrame)
  278. Garage.Position = UDim2.new(0,335,0,120)--UDim2.new(0,10,0,80)
  279. Garage.Size = UDim2.new(0,60,0,30)
  280. Garage.MouseButton1Click:connect(function()
  281. JailbreakTp(-352, 23, 1175)
  282. end)
  283.  
  284. local JewelIn = CreateButton("Jewelry (In)", TeleportsFrame)
  285. JewelIn.Position = UDim2.new(0,25,0,80)
  286. JewelIn.MouseButton1Click:connect(function()
  287. JailbreakTp(133, 18, 1320, true)
  288. end)
  289.  
  290. local JewelOut = CreateButton("Jewelry (Out)", TeleportsFrame)
  291. JewelOut.Position = UDim2.new(0,135,0,80)
  292. JewelOut.Size = UDim2.new(0,115,0,30)
  293. JewelOut.MouseButton1Click:connect(function()
  294. JailbreakTp(142, 18, 1365)
  295. end)
  296.  
  297. local Crim1 = CreateButton("Crim base 1", TeleportsFrame)
  298. Crim1.Position = UDim2.new(0,5,0,120)
  299. Crim1.MouseButton1Click:connect(function()
  300. JailbreakTp(-226, 18, 1590, true)
  301. end)
  302.  
  303. local Crim2 = CreateButton("Crim base 2", TeleportsFrame)
  304. Crim2.Position = UDim2.new(0,115,0,120)
  305. Crim2.MouseButton1Click:connect(function()
  306. JailbreakTp(true, 1637, 50, -1768, true)
  307. end)
  308.  
  309. local Donut = CreateButton("Donut Shop", TeleportsFrame)
  310. Donut.Position = UDim2.new(0,225,0,120)
  311. Donut.MouseButton1Click:connect(function()
  312. JailbreakTp(268, 18, -1760, true)
  313. end)
  314.  
  315. local Gas = CreateButton("Gas Station", TeleportsFrame)
  316. Gas.Position = UDim2.new(0,260,0,80)
  317. Gas.MouseButton1Click:connect(function()
  318. JailbreakTp(-1583, 18, 724, true)
  319. end)
  320.  
  321. local TeleportsBtn = CreateButton("Teleports", MenuLabel)
  322. TeleportsBtn.Position = UDim2.new(0.5,-50,0,60)
  323. TeleportsBtn.MouseButton1Click:connect(function()
  324. TeleportsFrame.Visible = true
  325. Menu.Visible = false
  326. ActiveFrame = TeleportsFrame
  327. end)
  328.  
  329. local StuffFrame = CreateFrame("Stuff")
  330. StuffFrame.Parent = main
  331.  
  332. local StuffBtn = CreateButton("Stuff", MenuLabel)
  333. StuffBtn.Position = TeleportsBtn.Position + UDim2.new(0,0,0,40)
  334. StuffBtn.MouseButton1Click:connect(function()
  335. StuffFrame.Visible = true
  336. Menu.Visible = false
  337. ActiveFrame = StuffFrame
  338. end)
  339.  
  340. local RemoveDoors = CreateButton("Remove Doors", StuffFrame)
  341. RemoveDoors.Size = UDim2.new(0,120,0,30)
  342. RemoveDoors.Position = UDim2.new(0,10,0,50)
  343. RemoveDoors.MouseButton1Click:connect(function()
  344. local doors = workspace:FindFirstChild("Doors")
  345. if not doors then return end
  346. for i,v in pairs(doors:GetChildren()) do
  347. v:Destroy()
  348. end
  349. end)
  350.  
  351. local Platform = CreateButton("Platform", StuffFrame)
  352. Platform.Position = UDim2.new(0.5,-60,0,50)
  353. Platform.MouseButton1Click:connect(function()
  354. local p = Instance.new("Part", workspace)
  355. p.Size = Vector3.new(30,0.5,30)
  356. p.Anchored = true
  357. p.Position = plr.Character.HumanoidRootPart.Position + Vector3.new(0,15,0)
  358. plr.Character:MoveTo(p.Position + Vector3.new(0,1,0))
  359. spawn(function()
  360. while p.Parent do
  361. wait(1)
  362. if (plr.Character.HumanoidRootPart.Position - p.Position).magnitude > 20 then
  363. p:Destroy()
  364. end
  365. end
  366. end)
  367. end)
  368.  
  369. local Tracers = CreateButton("ESP: None", StuffFrame)
  370. Tracers.Size = UDim2.new(0,140,0,30)
  371. Tracers.Position = UDim2.new(1,-150,0,50)
  372. Tracers.MouseButton1Click:connect(function()
  373. local curr = Tracers.Text:sub(10)
  374. if curr ~= "None" then
  375. ToggleTracers(curr, false)
  376. end
  377. local teams = {"None", "Police", "Criminal", "Prisoner"}
  378. local new = ""
  379. for i,v in pairs(teams) do
  380. if v == curr then
  381. new = teams[i + 1] or teams[1]
  382. end
  383. end
  384. if new ~= "None" then
  385. ToggleTracers(new, true)
  386. end
  387. Tracers.Text = "Tracers: " .. new
  388. end)
  389.  
  390. local BtoolActive = false
  391. local m = plr:GetMouse()
  392.  
  393. local Btool = CreateButton("Btool: Off", StuffFrame)
  394. Btool.Position = UDim2.new(0,10,0,90)
  395. Btool.MouseButton1Click:connect(function()
  396. spawn(function()
  397. local status = Btool.Text:sub(8)
  398. local newstatus = status == "On" and "Off" or status == "Off" and "On"
  399. Btool.Text = "Btool: " .. newstatus
  400. BtoolActive = newstatus == "On" and true or newstatus == "Off" and false
  401. if BtoolActive then
  402. local sb = Instance.new("SelectionBox", workspace.CurrentCamera)
  403. local ev = m.Button1Down:connect(function()
  404. if m.Target then
  405. m.Target:Destroy()
  406. end
  407. end)
  408. while BtoolActive do
  409. wait()
  410. if m.Target then
  411. sb.Adornee = m.Target
  412. end
  413. end
  414. ev:Disconnect()
  415. else
  416. local sb = workspace.CurrentCamera:FindFirstChildOfClass("SelectionBox")
  417. if sb then sb:Destroy() end
  418. end
  419. end)
  420. end)
  421.  
  422. local ClickTpEnabled = false
  423. m.Button1Down:connect(function()
  424. if ClickTpEnabled and m.Target then
  425. plr.Character:MoveTo(m.Hit.p)
  426. end
  427. end)
  428.  
  429. local ClickTp = CreateButton("ClickTp: Off", StuffFrame)
  430. ClickTp.Position = UDim2.new(0,120,0,90)
  431. ClickTp.MouseButton1Click:connect(function()
  432. spawn(function()
  433. local status = ClickTp.Text:sub(10)
  434. local newstatus = status == "Off" and "On" or status == "On" and "Off"
  435. ClickTpEnabled = newstatus == "On" and true or newstatus == "Off" and false
  436. ClickTp.Text = "ClickTp: " .. newstatus
  437. local ind = Create "Part" {
  438. Anchored = true,
  439. CanCollide = false,
  440. Transparency = 0.3,
  441. Size = Vector3.new(1.2,0.3,1.2),
  442. BrickColor = BrickColor.Green(),
  443. Parent = workspace
  444. }
  445. Instance.new("CylinderMesh", ind)
  446. m.TargetFilter = ind
  447. local beam = Create "Part" {
  448. Anchored = true,
  449. CanCollide = false,
  450. Transparency = 0.3,
  451. BrickColor = BrickColor.Green(),
  452. TopSurface = "Smooth",
  453. BottomSurface = "Smooth",
  454. Size = Vector3.new(0.3,0.3,1),
  455. Parent = workspace
  456.  
  457. }
  458. while ClickTpEnabled do
  459. wait()
  460. ind.CFrame = CFrame.new(m.Hit.p)
  461. local humrootpos = plr.Character:WaitForChild'HumanoidRootPart'.Position
  462. local dist = (Vector3.new(m.Hit.p.X,0,m.Hit.p.Z) - Vector3.new(humrootpos.X,0,humrootpos.Z)).magnitude
  463. if dist > 150 then
  464. ind.BrickColor,beam.BrickColor = BrickColor.Red(),BrickColor.Red()
  465. else
  466. ind.BrickColor,beam.BrickColor = BrickColor.Green(),BrickColor.Green()
  467. end
  468. beam.Size = Vector3.new(0.3,0.3,dist - 0.5)
  469. beam.CFrame = CFrame.new(plr.Character:WaitForChild'HumanoidRootPart'.Position, m.Hit.p) * CFrame.new(0,0,-dist/2 + 0.5)
  470. end
  471. ind:Destroy()
  472. beam:Destroy()
  473. end)
  474. end)
  475.  
  476. local Gravity = CreateButton("Low Gravity", StuffFrame)
  477. Gravity.Position = UDim2.new(0,230,0,90)
  478. Gravity.Size = UDim2.new(0,130,0,30)
  479. Gravity.MouseButton1Click:connect(function()
  480. local t = Gravity.Text == "Low Gravity" and true or false
  481. workspace.Gravity = t and 50 or 196.2
  482. Gravity.Text = t and "Normal Gravity" or "Low Gravity"
  483. end)
  484.  
  485. local InfiniteJumpEnabled = false
  486. game:GetService("UserInputService").JumpRequest:connect(function()
  487. if InfiniteJumpEnabled then
  488. game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
  489. end
  490. end)
  491. local InfiniteJump = CreateButton("Infinite Jump: Off", StuffFrame)
  492. InfiniteJump.Position = UDim2.new(0,10,0,130)
  493. InfiniteJump.Size = UDim2.new(0,150,0,30)
  494. InfiniteJump.MouseButton1Click:connect(function()
  495. local state = InfiniteJump.Text:sub(string.len("Infinite Jump: ") + 1) --too lazy to count lol
  496. local new = state == "Off" and "On" or state == "On" and "Off"
  497. InfiniteJumpEnabled = new == "On"
  498. InfiniteJump.Text = "Infinite Jump: " .. new
  499. end)
  500.  
  501. local Auto = nil
  502. local Autoarrest = CreateButton("Auto arrest", StuffFrame)
  503. Autoarrest.Position = UDim2.new(0,170,0,130)
  504. Autoarrest.MouseButton1Click:connect(function()
  505. wait(0.5)
  506. for i,v in pairs(game.Teams.Criminal:GetPlayers()) do
  507. repeat
  508. wait()
  509. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame * CFrame.new(0, 0, 1)
  510. until v.Team.Name ~= "Criminal"
  511. end
  512. end)
  513.  
  514. local BankAutoRobBtn = CreateButton("Bank AutoRob", StuffFrame)
  515. BankAutoRobBtn.Position = UDim2.new(0,280,0,130)
  516. BankAutoRobBtn.Size = UDim2.new(0,115,0,30)
  517. BankAutoRobBtn.BackgroundColor3 = Color3.new(1,0,0)
  518. BankAutoRobBtn.MouseButton1Click:connect(function()
  519. local Bank = workspace:FindFirstChild("Banks"):GetChildren()[1]
  520. local Info = Bank.Extra.Sign
  521. if Info.Decal.Transparency == 0 then
  522. game:GetService("StarterGui"):SetCore("SendNotification",{
  523. Title = "Bank is closed!",
  524. Text = "You need to wait for the bank to open!",
  525. Duration = 7,
  526. Button1 = "Dismiss",
  527. })
  528. return
  529. end
  530. local bankpos = Vector3.new(Info.Position.X,0,Info.Position.Z)
  531. local root = plr.Character.HumanoidRootPart
  532. local plrpos = Vector3.new(root.Position.X,0,root.Position.Z)
  533.  
  534. if (bankpos - plrpos).magnitude > 150 then
  535. local cb = Instance.new"BindableFunction"
  536.  
  537. cb.OnInvoke = function(arg)
  538. if arg == "Teleport" then
  539. JailbreakTp(10, 18, 784)
  540. end
  541. end
  542.  
  543. game:GetService("StarterGui"):SetCore("SendNotification",{
  544. Title = "You are too far!",
  545. Text = "You need to get closer to the bank (use tp)",
  546. Duration = 7,
  547. Button1 = "Dismiss",
  548. Button2 = "Teleport",
  549. Callback = cb
  550. })
  551. else
  552. RobTheBank()
  553. end
  554. end)
  555.  
  556. local GuiFrame = CreateFrame("Guis")
  557. GuiFrame.Parent = main
  558.  
  559. local Guibtn = CreateButton("Gui's", MenuLabel)
  560. Guibtn.Position = StuffBtn.Position + UDim2.new(0,0,0,40)
  561. Guibtn.MouseButton1Click:connect(function()
  562. GuiFrame.Visible = true
  563. Menu.Visible = false
  564. ActiveFrame = GuiFrame
  565. end)
  566.  
  567. local JailbrokenBtn = CreateButton("Jailbroken", GuiFrame)
  568. JailbrokenBtn.Position = UDim2.new(0,15,0,40)
  569. JailbrokenBtn.Size = UDim2.new(0,160,0,30)
  570. JailbrokenBtn.MouseButton1Click:connect(function()
  571.  
  572. --Leaked by Bloxsploiter - Icey#0010
  573.  
  574.  
  575. -- Objects
  576.  
  577. local JailbreakBasic = Instance.new("ScreenGui")
  578. local Login = Instance.new("Frame")
  579. local Login_BorderFrame1 = Instance.new("Frame")
  580. local Login_BorderFrame2 = Instance.new("Frame")
  581. local Login_BorderFrame3 = Instance.new("Frame")
  582. local Login_BorderFrame4 = Instance.new("Frame")
  583. local Login_BorderFrame5 = Instance.new("Frame")
  584. local Login_RotBorderFrame1 = Instance.new("Frame")
  585. local Login_RotBorderFrame2 = Instance.new("Frame")
  586. local Login_RotBorderFrame3 = Instance.new("Frame")
  587. local Login_RotBorderFrame4 = Instance.new("Frame")
  588. local Login_JailbreakerText = Instance.new("TextLabel")
  589. local Login_Discord = Instance.new("TextLabel")
  590. local Login_Credits = Instance.new("TextLabel")
  591. local Login_WhitelistCheck = Instance.new("TextButton")
  592. local Login_WhitelistText = Instance.new("TextLabel")
  593. local Login_VersionText = Instance.new("TextLabel")
  594. local Open = Instance.new("Frame")
  595. local Open_Open = Instance.new("TextButton")
  596. local Motherboard = Instance.new("Frame")
  597. local Motherboard_BorderFrame1 = Instance.new("Frame")
  598. local Motherboard_BorderFrame2 = Instance.new("Frame")
  599. local Motherboard_BorderFrame3 = Instance.new("Frame")
  600. local Motherboard_BorderFrame4 = Instance.new("Frame")
  601. local Motherboard_BorderFrame5 = Instance.new("Frame")
  602. local Motherboard_RotBorderFrame1 = Instance.new("Frame")
  603. local Motherboard_RotBorderFrame2 = Instance.new("Frame")
  604. local Motherboard_RotBorderFrame3 = Instance.new("Frame")
  605. local Motherboard_RotBorderFrame4 = Instance.new("Frame")
  606. local Motherboard_JailbreakerText = Instance.new("TextLabel")
  607. local Motherboard_Close = Instance.new("TextButton")
  608. local Motherboard_JailbreakerText_Credits = Instance.new("TextLabel")
  609. local Motherboard_DisplaySide = Instance.new("TextLabel")
  610. local Motherboard_VersionText = Instance.new("TextLabel")
  611. local Side1 = Instance.new("Frame")
  612. local Side1_CarsTeleportsText = Instance.new("TextLabel")
  613. local Teleports_PoliceCamaro = Instance.new("TextButton")
  614. local Teleports_SWATCar = Instance.new("TextButton")
  615. local Teleports_PickupTruck = Instance.new("TextButton")
  616. local Teleports_Camaro = Instance.new("TextButton")
  617. local Teleports_MiniCooper = Instance.new("TextButton")
  618. local Teleports_Model3 = Instance.new("TextButton")
  619. local Teleports_Mustang = Instance.new("TextButton")
  620. local Teleports_DuneBuggy = Instance.new("TextButton")
  621. local Teleports_Lamborghini = Instance.new("TextButton")
  622. local Teleports_Porsche = Instance.new("TextButton")
  623. local Teleports_Ferrari = Instance.new("TextButton")
  624. local Teleports_Bugatti = Instance.new("TextButton")
  625. local Teleports_Dirtbike = Instance.new("TextButton")
  626. local Teleports_MonsterTruck = Instance.new("TextButton")
  627. local Teleports_ATV = Instance.new("TextButton")
  628. local Teleports_McLaren = Instance.new("TextButton")
  629. local Side2 = Instance.new("Frame")
  630. local Side2_TeleportsText = Instance.new("TextLabel")
  631. local Teleports_PrisonCells = Instance.new("TextButton")
  632. local Teleports_PrisonParking = Instance.new("TextButton")
  633. local Teleports_PrisonCanteen = Instance.new("TextButton")
  634. local Teleports_PrisonYard = Instance.new("TextButton")
  635. local Teleports_PoliceHQ2 = Instance.new("TextButton")
  636. local Teleports_PoliceHQ1 = Instance.new("TextButton")
  637. local Teleports_CriminalsHQ1 = Instance.new("TextButton")
  638. local Teleports_CriminalsHQ2 = Instance.new("TextButton")
  639. local Teleports_Helipad2 = Instance.new("TextButton")
  640. local Teleports_Helipad1 = Instance.new("TextButton")
  641. local Teleports_Garage = Instance.new("TextButton")
  642. local Teleports_BankVault = Instance.new("TextButton")
  643. local Teleports_GasStation = Instance.new("TextButton")
  644. local Teleports_Jewelry = Instance.new("TextButton")
  645. local Teleports_DonutShop = Instance.new("TextButton")
  646. local Teleports_Apartment = Instance.new("TextButton")
  647. local Side3 = Instance.new("Frame")
  648. local Side3_GameText = Instance.new("TextLabel")
  649. local Game_InfAmmo = Instance.new("TextButton")
  650. local Game_InfHealth = Instance.new("TextButton")
  651. local Game_Keycard = Instance.new("TextButton")
  652. local Game_InfNitro = Instance.new("TextButton")
  653. local Game_SpawnAK47 = Instance.new("TextButton")
  654. local Game_SpawnM4A4 = Instance.new("TextButton")
  655. local Game_SpawnPistol = Instance.new("TextButton")
  656. local Game_SpawnShotgun = Instance.new("TextButton")
  657. local Game_Walkspeed = Instance.new("TextButton")
  658. local Game_Noclip = Instance.new("TextButton")
  659. local Game_LowGrav = Instance.new("TextButton")
  660. local Game_CarSpeed = Instance.new("TextButton")
  661. local Game_SpawnSword = Instance.new("TextButton")
  662. local Game_SpawnShield = Instance.new("TextButton")
  663. local Game_SpawnKeycard = Instance.new("TextButton")
  664. local Game_BTools = Instance.new("TextButton")
  665. local Side5 = Instance.new("Frame")
  666. local Side5_PlayerTeleportText = Instance.new("TextLabel")
  667. local PlayerTP_Input = Instance.new("TextBox")
  668. local PlayerTP_Teleport = Instance.new("TextButton")
  669. local Side4 = Instance.new("Frame")
  670. local Side4_Game2 = Instance.new("TextLabel")
  671. local Extras_RemoveJewelLasers = Instance.new("TextButton")
  672. local Extras_RemoveVaultDoor = Instance.new("TextButton")
  673. local Extras_RemoveDoors = Instance.new("TextButton")
  674. local Extras_RemoveBankLasers = Instance.new("TextButton")
  675. local Extras_BuildingsNoclip = Instance.new("TextButton")
  676. local Extras_RemoveBuildings = Instance.new("TextButton")
  677. local Extras_AutoRob = Instance.new("TextButton")
  678. local x = Instance.new("TextButton")
  679. local x_2 = Instance.new("TextButton")
  680. local x_3 = Instance.new("TextButton")
  681. local x_4 = Instance.new("TextButton")
  682. local x_5 = Instance.new("TextButton")
  683. local x_6 = Instance.new("TextButton")
  684. local x_7 = Instance.new("TextButton")
  685. local x_8 = Instance.new("TextButton")
  686. local x_9 = Instance.new("TextButton")
  687. local NextSide = Instance.new("TextButton")
  688. local PrevSide = Instance.new("TextButton")
  689. local AutoRob = Instance.new("Frame")
  690. local Frame = Instance.new("Frame")
  691. local Frame_2 = Instance.new("Frame")
  692. local Frame_3 = Instance.new("Frame")
  693. local TextLabel = Instance.new("TextLabel")
  694. local AutoRob_Close = Instance.new("TextButton")
  695. local AutoRob_On = Instance.new("TextButton")
  696. local AutoRob_Off = Instance.new("TextButton")
  697. local AutoRob_Status = Instance.new("TextLabel")
  698.  
  699. -- Properties
  700.  
  701. JailbreakBasic.Name = "JailbreakBasic"
  702. JailbreakBasic.Parent = game.CoreGui
  703.  
  704. Login.Name = "Login"
  705. Login.Parent = JailbreakBasic
  706. Login.Active = true
  707. Login.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  708. Login.BorderSizePixel = 0
  709. Login.Draggable = true
  710. Login.Position = UDim2.new(0.384385228, 0, 0.280898869, 0)
  711. Login.Selectable = true
  712. Login.Size = UDim2.new(0, 425, 0, 273)
  713. Login.Visible = false
  714.  
  715. Login_BorderFrame1.Name = "Login_BorderFrame1"
  716. Login_BorderFrame1.Parent = Login
  717. Login_BorderFrame1.BackgroundColor3 = Color3.new(1, 0.54902, 0)
  718. Login_BorderFrame1.BorderSizePixel = 0
  719. Login_BorderFrame1.Size = UDim2.new(0, 425, 0, 27)
  720.  
  721. Login_BorderFrame2.Name = "Login_BorderFrame2"
  722. Login_BorderFrame2.Parent = Login
  723. Login_BorderFrame2.BackgroundColor3 = Color3.new(0.862745, 0.392157, 0)
  724. Login_BorderFrame2.BorderSizePixel = 0
  725. Login_BorderFrame2.Position = UDim2.new(0, 0, 0.0989011005, 0)
  726. Login_BorderFrame2.Size = UDim2.new(0, 425, 0, 14)
  727.  
  728. Login_BorderFrame3.Name = "Login_BorderFrame3"
  729. Login_BorderFrame3.Parent = Login
  730. Login_BorderFrame3.BackgroundColor3 = Color3.new(1, 0.54902, 0)
  731. Login_BorderFrame3.BorderSizePixel = 0
  732. Login_BorderFrame3.Position = UDim2.new(0, 0, 0.901098907, 0)
  733. Login_BorderFrame3.Size = UDim2.new(0, 425, 0, 27)
  734.  
  735. Login_BorderFrame4.Name = "Login_BorderFrame4"
  736. Login_BorderFrame4.Parent = Login
  737. Login_BorderFrame4.BackgroundColor3 = Color3.new(1, 0.54902, 0)
  738. Login_BorderFrame4.BorderSizePixel = 0
  739. Login_BorderFrame4.Position = UDim2.new(0.207058817, 0, -0.0586080626, 0)
  740. Login_BorderFrame4.Size = UDim2.new(0, 250, 0, 43)
  741.  
  742. Login_BorderFrame5.Name = "Login_BorderFrame5"
  743. Login_BorderFrame5.Parent = Login
  744. Login_BorderFrame5.BackgroundColor3 = Color3.new(1, 0.54902, 0)
  745. Login_BorderFrame5.BorderSizePixel = 0
  746. Login_BorderFrame5.Position = UDim2.new(0.207058817, 0, 0.901098907, 0)
  747. Login_BorderFrame5.Size = UDim2.new(0, 250, 0, 43)
  748.  
  749. Login_RotBorderFrame1.Name = "Login_RotBorderFrame1"
  750. Login_RotBorderFrame1.Parent = Login
  751. Login_RotBorderFrame1.BackgroundColor3 = Color3.new(1, 0.54902, 0)
  752. Login_RotBorderFrame1.BorderSizePixel = 0
  753. Login_RotBorderFrame1.Position = UDim2.new(0.152941182, 0, 0.970696032, 0)
  754. Login_RotBorderFrame1.Rotation = 30
  755. Login_RotBorderFrame1.Size = UDim2.new(0, 36, 0, 18)
  756.  
  757. Login_RotBorderFrame2.Name = "Login_RotBorderFrame2"
  758. Login_RotBorderFrame2.Parent = Login
  759. Login_RotBorderFrame2.BackgroundColor3 = Color3.new(1, 0.54902, 0)
  760. Login_RotBorderFrame2.BorderSizePixel = 0
  761. Login_RotBorderFrame2.Position = UDim2.new(0.781176448, 0, -0.0366299748, 0)
  762. Login_RotBorderFrame2.Rotation = 30
  763. Login_RotBorderFrame2.Size = UDim2.new(0, 36, 0, 18)
  764.  
  765. Login_RotBorderFrame3.Name = "Login_RotBorderFrame3"
  766. Login_RotBorderFrame3.Parent = Login
  767. Login_RotBorderFrame3.BackgroundColor3 = Color3.new(1, 0.54902, 0)
  768. Login_RotBorderFrame3.BorderSizePixel = 0
  769. Login_RotBorderFrame3.Position = UDim2.new(0.781176448, 0, 0.970696092, 0)
  770. Login_RotBorderFrame3.Rotation = 330
  771. Login_RotBorderFrame3.Size = UDim2.new(0, 36, 0, 18)
  772.  
  773. Login_RotBorderFrame4.Name = "Login_RotBorderFrame4"
  774. Login_RotBorderFrame4.Parent = Login
  775. Login_RotBorderFrame4.BackgroundColor3 = Color3.new(1, 0.54902, 0)
  776. Login_RotBorderFrame4.BorderSizePixel = 0
  777. Login_RotBorderFrame4.Position = UDim2.new(0.152941167, 0, -0.0366299152, 0)
  778. Login_RotBorderFrame4.Rotation = 330
  779. Login_RotBorderFrame4.Size = UDim2.new(0, 36, 0, 18)
  780.  
  781. Login_JailbreakerText.Name = "Login_JailbreakerText"
  782. Login_JailbreakerText.Parent = Login
  783. Login_JailbreakerText.BackgroundColor3 = Color3.new(0, 0, 0)
  784. Login_JailbreakerText.BackgroundTransparency = 1
  785. Login_JailbreakerText.BorderColor3 = Color3.new(0, 0.392157, 1)
  786. Login_JailbreakerText.Position = UDim2.new(0.26352942, 0, -0.0842490867, 0)
  787. Login_JailbreakerText.Size = UDim2.new(0, 200, 0, 50)
  788. Login_JailbreakerText.Font = Enum.Font.SciFi
  789. Login_JailbreakerText.FontSize = Enum.FontSize.Size14
  790. Login_JailbreakerText.Text = "Jailbreaker"
  791. Login_JailbreakerText.TextColor3 = Color3.new(0, 0, 0)
  792. Login_JailbreakerText.TextScaled = true
  793. Login_JailbreakerText.TextSize = 14
  794. Login_JailbreakerText.TextStrokeColor3 = Color3.new(1, 0.470588, 0)
  795. Login_JailbreakerText.TextStrokeTransparency = 0
  796. Login_JailbreakerText.TextWrapped = true
  797.  
  798. Login_Discord.Name = "Login_Discord"
  799. Login_Discord.Parent = Login
  800. Login_Discord.BackgroundColor3 = Color3.new(1, 1, 1)
  801. Login_Discord.BackgroundTransparency = 1
  802. Login_Discord.Position = UDim2.new(0.0188235287, 0, 0.120879114, 0)
  803. Login_Discord.Size = UDim2.new(0, 408, 0, 31)
  804. Login_Discord.Font = Enum.Font.SourceSans
  805. Login_Discord.FontSize = Enum.FontSize.Size14
  806. Login_Discord.Text = "yeet"
  807. Login_Discord.TextColor3 = Color3.new(1, 0.470588, 0)
  808. Login_Discord.TextScaled = true
  809. Login_Discord.TextSize = 14
  810. Login_Discord.TextWrapped = true
  811.  
  812. Login_Credits.Name = "Login_Credits"
  813. Login_Credits.Parent = Login
  814. Login_Credits.BackgroundColor3 = Color3.new(1, 1, 1)
  815. Login_Credits.BackgroundTransparency = 1
  816. Login_Credits.Position = UDim2.new(0.0882353038, 0, 0.926739991, 0)
  817. Login_Credits.Size = UDim2.new(0, 349, 0, 20)
  818. Login_Credits.Font = Enum.Font.SourceSans
  819. Login_Credits.FontSize = Enum.FontSize.Size14
  820. Login_Credits.Text = "Leaked by icey#0010"
  821. Login_Credits.TextColor3 = Color3.new(0, 0, 0)
  822. Login_Credits.TextScaled = true
  823. Login_Credits.TextSize = 14
  824. Login_Credits.TextWrapped = true
  825.  
  826. Login_WhitelistCheck.Name = "Login_WhitelistCheck"
  827. Login_WhitelistCheck.Parent = Login
  828. Login_WhitelistCheck.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  829. Login_WhitelistCheck.BorderColor3 = Color3.new(0, 0, 0)
  830. Login_WhitelistCheck.BorderSizePixel = 5
  831. Login_WhitelistCheck.Position = UDim2.new(0.265882373, 0, 0.406593412, 0)
  832. Login_WhitelistCheck.Size = UDim2.new(0, 200, 0, 50)
  833. Login_WhitelistCheck.Font = Enum.Font.SourceSans
  834. Login_WhitelistCheck.FontSize = Enum.FontSize.Size14
  835. Login_WhitelistCheck.Text = "Connect"
  836. Login_WhitelistCheck.TextColor3 = Color3.new(1, 0.470588, 0)
  837. Login_WhitelistCheck.TextScaled = true
  838. Login_WhitelistCheck.TextSize = 14
  839. Login_WhitelistCheck.TextWrapped = true
  840.  
  841. Login_WhitelistText.Name = "Login_WhitelistText"
  842. Login_WhitelistText.Parent = Login
  843. Login_WhitelistText.BackgroundColor3 = Color3.new(1, 1, 1)
  844. Login_WhitelistText.BackgroundTransparency = 1
  845. Login_WhitelistText.Position = UDim2.new(0.26352942, 0, 0.589743614, 0)
  846. Login_WhitelistText.Size = UDim2.new(0, 200, 0, 50)
  847. Login_WhitelistText.Font = Enum.Font.SourceSans
  848. Login_WhitelistText.FontSize = Enum.FontSize.Size14
  849. Login_WhitelistText.Text = "This was leaked by Icey#0010, thank god bruh"
  850. Login_WhitelistText.TextColor3 = Color3.new(1, 0.470588, 0)
  851. Login_WhitelistText.TextScaled = true
  852. Login_WhitelistText.TextSize = 14
  853. Login_WhitelistText.TextWrapped = true
  854.  
  855. Login_VersionText.Name = "Login_VersionText"
  856. Login_VersionText.Parent = Login
  857. Login_VersionText.BackgroundColor3 = Color3.new(0, 0, 0)
  858. Login_VersionText.BackgroundTransparency = 1
  859. Login_VersionText.BorderColor3 = Color3.new(0, 0.392157, 1)
  860. Login_VersionText.Position = UDim2.new(0.73647064, 0, 0.032967031, 0)
  861. Login_VersionText.Size = UDim2.new(0, 200, 0, 50)
  862. Login_VersionText.Font = Enum.Font.SciFi
  863. Login_VersionText.FontSize = Enum.FontSize.Size18
  864. Login_VersionText.Text = "v1.0"
  865. Login_VersionText.TextColor3 = Color3.new(0, 0, 0)
  866. Login_VersionText.TextSize = 16
  867. Login_VersionText.TextStrokeColor3 = Color3.new(1, 0.470588, 0)
  868. Login_VersionText.TextStrokeTransparency = 0
  869. Login_VersionText.TextWrapped = true
  870.  
  871. Open.Name = "Open"
  872. Open.Parent = JailbreakBasic
  873. Open.Active = true
  874. Open.BackgroundColor3 = Color3.new(1, 1, 1)
  875. Open.Draggable = true
  876. Open.Position = UDim2.new(-0.00454803882, 0, 0.486358911, 0)
  877. Open.Selectable = true
  878. Open.Size = UDim2.new(0, 152, 0, 54)
  879. Open.Style = Enum.FrameStyle.DropShadow
  880.  
  881. Open_Open.Name = "Open_Open"
  882. Open_Open.Parent = Open
  883. Open_Open.BackgroundColor3 = Color3.new(1, 1, 1)
  884. Open_Open.BackgroundTransparency = 1
  885. Open_Open.Position = UDim2.new(0.0394736826, 0, 0.0740740746, 0)
  886. Open_Open.Size = UDim2.new(0, 126, 0, 32)
  887. Open_Open.Font = Enum.Font.SourceSans
  888. Open_Open.FontSize = Enum.FontSize.Size14
  889. Open_Open.Text = "Open Jailbroken"
  890. Open_Open.TextColor3 = Color3.new(1, 1, 1)
  891. Open_Open.TextScaled = true
  892. Open_Open.TextSize = 14
  893. Open_Open.TextWrapped = true
  894.  
  895. Motherboard.Name = "Motherboard"
  896. Motherboard.Parent = JailbreakBasic
  897. Motherboard.Active = true
  898. Motherboard.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  899. Motherboard.BorderSizePixel = 0
  900. Motherboard.Draggable = true
  901. Motherboard.Position = UDim2.new(0.344396085, 0, 0.246388435, 0)
  902. Motherboard.Selectable = true
  903. Motherboard.Size = UDim2.new(0, 572, 0, 316)
  904.  
  905. Motherboard_BorderFrame1.Name = "Motherboard_BorderFrame1"
  906. Motherboard_BorderFrame1.Parent = Motherboard
  907. Motherboard_BorderFrame1.BackgroundColor3 = Color3.new(1, 0.54902, 0)
  908. Motherboard_BorderFrame1.BorderSizePixel = 0
  909. Motherboard_BorderFrame1.Size = UDim2.new(0, 572, 0, 25)
  910.  
  911. Motherboard_BorderFrame2.Name = "Motherboard_BorderFrame2"
  912. Motherboard_BorderFrame2.Parent = Motherboard
  913. Motherboard_BorderFrame2.BackgroundColor3 = Color3.new(0.862745, 0.392157, 0)
  914. Motherboard_BorderFrame2.BorderSizePixel = 0
  915. Motherboard_BorderFrame2.Position = UDim2.new(0, 0, 0.079113923, 0)
  916. Motherboard_BorderFrame2.Size = UDim2.new(0, 572, 0, 13)
  917.  
  918. Motherboard_BorderFrame3.Name = "Motherboard_BorderFrame3"
  919. Motherboard_BorderFrame3.Parent = Motherboard
  920. Motherboard_BorderFrame3.BackgroundColor3 = Color3.new(1, 0.54902, 0)
  921. Motherboard_BorderFrame3.BorderSizePixel = 0
  922. Motherboard_BorderFrame3.Position = UDim2.new(0, 0, 0.92088604, 0)
  923. Motherboard_BorderFrame3.Size = UDim2.new(0, 572, 0, 25)
  924.  
  925. Motherboard_BorderFrame4.Name = "Motherboard_BorderFrame4"
  926. Motherboard_BorderFrame4.Parent = Motherboard
  927. Motherboard_BorderFrame4.BackgroundColor3 = Color3.new(1, 0.54902, 0)
  928. Motherboard_BorderFrame4.BorderSizePixel = 0
  929. Motherboard_BorderFrame4.Position = UDim2.new(0.148601398, 0, -0.0443037972, 0)
  930. Motherboard_BorderFrame4.Size = UDim2.new(0, 401, 0, 39)
  931.  
  932. Motherboard_BorderFrame5.Name = "Motherboard_BorderFrame5"
  933. Motherboard_BorderFrame5.Parent = Motherboard
  934. Motherboard_BorderFrame5.BackgroundColor3 = Color3.new(1, 0.54902, 0)
  935. Motherboard_BorderFrame5.BorderSizePixel = 0
  936. Motherboard_BorderFrame5.Position = UDim2.new(0.148601383, 0, 0.920886099, 0)
  937. Motherboard_BorderFrame5.Size = UDim2.new(0, 401, 0, 39)
  938.  
  939. Motherboard_RotBorderFrame1.Name = "Motherboard_RotBorderFrame1"
  940. Motherboard_RotBorderFrame1.Parent = Motherboard
  941. Motherboard_RotBorderFrame1.BackgroundColor3 = Color3.new(1, 0.54902, 0)
  942. Motherboard_RotBorderFrame1.BorderSizePixel = 0
  943. Motherboard_RotBorderFrame1.Position = UDim2.new(0.0961538553, 0, 0.952531695, 0)
  944. Motherboard_RotBorderFrame1.Rotation = 30
  945. Motherboard_RotBorderFrame1.Size = UDim2.new(0, 43, 0, 21)
  946.  
  947. Motherboard_RotBorderFrame2.Name = "Motherboard_RotBorderFrame2"
  948. Motherboard_RotBorderFrame2.Parent = Motherboard
  949. Motherboard_RotBorderFrame2.BackgroundColor3 = Color3.new(1, 0.54902, 0)
  950. Motherboard_RotBorderFrame2.BorderSizePixel = 0
  951. Motherboard_RotBorderFrame2.Position = UDim2.new(0.837412596, 0, -0.018987298, 0)
  952. Motherboard_RotBorderFrame2.Rotation = 30
  953. Motherboard_RotBorderFrame2.Size = UDim2.new(0, 43, 0, 21)
  954.  
  955. Motherboard_RotBorderFrame3.Name = "Motherboard_RotBorderFrame3"
  956. Motherboard_RotBorderFrame3.Parent = Motherboard
  957. Motherboard_RotBorderFrame3.BackgroundColor3 = Color3.new(1, 0.54902, 0)
  958. Motherboard_RotBorderFrame3.BorderSizePixel = 0
  959. Motherboard_RotBorderFrame3.Position = UDim2.new(0.837412477, 0, 0.952531695, 0)
  960. Motherboard_RotBorderFrame3.Rotation = 330
  961. Motherboard_RotBorderFrame3.Size = UDim2.new(0, 43, 0, 21)
  962.  
  963. Motherboard_RotBorderFrame4.Name = "Motherboard_RotBorderFrame4"
  964. Motherboard_RotBorderFrame4.Parent = Motherboard
  965. Motherboard_RotBorderFrame4.BackgroundColor3 = Color3.new(1, 0.54902, 0)
  966. Motherboard_RotBorderFrame4.BorderSizePixel = 0
  967. Motherboard_RotBorderFrame4.Position = UDim2.new(0.0961538404, 0, -0.0189873427, 0)
  968. Motherboard_RotBorderFrame4.Rotation = 330
  969. Motherboard_RotBorderFrame4.Size = UDim2.new(0, 43, 0, 19)
  970.  
  971. Motherboard_JailbreakerText.Name = "Motherboard_JailbreakerText"
  972. Motherboard_JailbreakerText.Parent = Motherboard
  973. Motherboard_JailbreakerText.BackgroundColor3 = Color3.new(0, 0, 0)
  974. Motherboard_JailbreakerText.BackgroundTransparency = 1
  975. Motherboard_JailbreakerText.Position = UDim2.new(0.347902119, 0, -0.041139245, 0)
  976. Motherboard_JailbreakerText.Size = UDim2.new(0, 175, 0, 36)
  977. Motherboard_JailbreakerText.Font = Enum.Font.SciFi
  978. Motherboard_JailbreakerText.FontSize = Enum.FontSize.Size14
  979. Motherboard_JailbreakerText.Text = "Jailbreaker"
  980. Motherboard_JailbreakerText.TextColor3 = Color3.new(0, 0, 0)
  981. Motherboard_JailbreakerText.TextScaled = true
  982. Motherboard_JailbreakerText.TextSize = 14
  983. Motherboard_JailbreakerText.TextStrokeColor3 = Color3.new(1, 0.470588, 0)
  984. Motherboard_JailbreakerText.TextStrokeTransparency = 0
  985. Motherboard_JailbreakerText.TextWrapped = true
  986.  
  987. Motherboard_Close.Name = "Motherboard_Close"
  988. Motherboard_Close.Parent = Motherboard
  989. Motherboard_Close.BackgroundColor3 = Color3.new(1, 1, 1)
  990. Motherboard_Close.BackgroundTransparency = 1
  991. Motherboard_Close.Position = UDim2.new(0.949300706, 0, -0.012658244, 0)
  992. Motherboard_Close.Size = UDim2.new(0, 29, 0, 31)
  993. Motherboard_Close.Font = Enum.Font.SourceSans
  994. Motherboard_Close.FontSize = Enum.FontSize.Size14
  995. Motherboard_Close.Text = "X"
  996. Motherboard_Close.TextColor3 = Color3.new(0, 0, 0)
  997. Motherboard_Close.TextScaled = true
  998. Motherboard_Close.TextSize = 14
  999. Motherboard_Close.TextWrapped = true
  1000.  
  1001. Motherboard_JailbreakerText_Credits.Name = "Motherboard_JailbreakerText_Credits"
  1002. Motherboard_JailbreakerText_Credits.Parent = Motherboard
  1003. Motherboard_JailbreakerText_Credits.BackgroundColor3 = Color3.new(0, 0, 0)
  1004. Motherboard_JailbreakerText_Credits.BackgroundTransparency = 1
  1005. Motherboard_JailbreakerText_Credits.Position = UDim2.new(0.611888111, 0, 0.0126582272, 0)
  1006. Motherboard_JailbreakerText_Credits.Size = UDim2.new(0, 159, 0, 15)
  1007. Motherboard_JailbreakerText_Credits.Font = Enum.Font.SciFi
  1008. Motherboard_JailbreakerText_Credits.FontSize = Enum.FontSize.Size14
  1009. Motherboard_JailbreakerText_Credits.Text = "This is leaked lmao"
  1010. Motherboard_JailbreakerText_Credits.TextColor3 = Color3.new(0, 0, 0)
  1011. Motherboard_JailbreakerText_Credits.TextScaled = true
  1012. Motherboard_JailbreakerText_Credits.TextSize = 14
  1013. Motherboard_JailbreakerText_Credits.TextStrokeColor3 = Color3.new(1, 0.470588, 0)
  1014. Motherboard_JailbreakerText_Credits.TextStrokeTransparency = 0
  1015. Motherboard_JailbreakerText_Credits.TextWrapped = true
  1016.  
  1017. Motherboard_DisplaySide.Name = "Motherboard_DisplaySide"
  1018. Motherboard_DisplaySide.Parent = Motherboard
  1019. Motherboard_DisplaySide.BackgroundColor3 = Color3.new(1, 1, 1)
  1020. Motherboard_DisplaySide.BackgroundTransparency = 1
  1021. Motherboard_DisplaySide.Position = UDim2.new(0.332167834, 0, 0.916139245, 0)
  1022. Motherboard_DisplaySide.Size = UDim2.new(0, 191, 0, 42)
  1023. Motherboard_DisplaySide.Font = Enum.Font.SourceSans
  1024. Motherboard_DisplaySide.FontSize = Enum.FontSize.Size14
  1025. Motherboard_DisplaySide.Text = "1"
  1026. Motherboard_DisplaySide.TextColor3 = Color3.new(0, 0, 0)
  1027. Motherboard_DisplaySide.TextScaled = true
  1028. Motherboard_DisplaySide.TextSize = 14
  1029. Motherboard_DisplaySide.TextWrapped = true
  1030.  
  1031. Motherboard_VersionText.Name = "Motherboard_VersionText"
  1032. Motherboard_VersionText.Parent = Motherboard
  1033. Motherboard_VersionText.BackgroundColor3 = Color3.new(0, 0, 0)
  1034. Motherboard_VersionText.BackgroundTransparency = 1
  1035. Motherboard_VersionText.Position = UDim2.new(0.802085102, 0, 0.0411392339, 0)
  1036. Motherboard_VersionText.Size = UDim2.new(0, 175, 0, 36)
  1037. Motherboard_VersionText.Font = Enum.Font.SciFi
  1038. Motherboard_VersionText.FontSize = Enum.FontSize.Size18
  1039. Motherboard_VersionText.Text = "v1.0.3"
  1040. Motherboard_VersionText.TextColor3 = Color3.new(0, 0, 0)
  1041. Motherboard_VersionText.TextSize = 16
  1042. Motherboard_VersionText.TextStrokeColor3 = Color3.new(1, 0.470588, 0)
  1043. Motherboard_VersionText.TextStrokeTransparency = 0
  1044. Motherboard_VersionText.TextWrapped = true
  1045.  
  1046. Side1.Name = "Side1"
  1047. Side1.Parent = Motherboard
  1048. Side1.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  1049. Side1.BorderSizePixel = 0
  1050. Side1.Position = UDim2.new(0, 0, 0.133000001, 0)
  1051. Side1.Size = UDim2.new(0, 572, 0, 249)
  1052. Side1.Visible = false
  1053.  
  1054. Side1_CarsTeleportsText.Name = "Side1_CarsTeleportsText"
  1055. Side1_CarsTeleportsText.Parent = Side1
  1056. Side1_CarsTeleportsText.BackgroundColor3 = Color3.new(1, 1, 1)
  1057. Side1_CarsTeleportsText.BackgroundTransparency = 1
  1058. Side1_CarsTeleportsText.Position = UDim2.new(0.325174838, 0, -0.0162930116, 0)
  1059. Side1_CarsTeleportsText.Size = UDim2.new(0, 200, 0, 39)
  1060. Side1_CarsTeleportsText.Font = Enum.Font.SciFi
  1061. Side1_CarsTeleportsText.FontSize = Enum.FontSize.Size14
  1062. Side1_CarsTeleportsText.Text = "Cars Teleports"
  1063. Side1_CarsTeleportsText.TextColor3 = Color3.new(1, 0.470588, 0)
  1064. Side1_CarsTeleportsText.TextScaled = true
  1065. Side1_CarsTeleportsText.TextSize = 14
  1066. Side1_CarsTeleportsText.TextWrapped = true
  1067.  
  1068. Teleports_PoliceCamaro.Name = "Teleports_PoliceCamaro"
  1069. Teleports_PoliceCamaro.Parent = Side1
  1070. Teleports_PoliceCamaro.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1071. Teleports_PoliceCamaro.BorderColor3 = Color3.new(0, 0, 0)
  1072. Teleports_PoliceCamaro.BorderSizePixel = 3
  1073. Teleports_PoliceCamaro.Position = UDim2.new(0.0280069932, 0, 0.363803208, 0)
  1074. Teleports_PoliceCamaro.Size = UDim2.new(0, 135, 0, 50)
  1075. Teleports_PoliceCamaro.Font = Enum.Font.SourceSans
  1076. Teleports_PoliceCamaro.FontSize = Enum.FontSize.Size28
  1077. Teleports_PoliceCamaro.Text = "Police Camaro"
  1078. Teleports_PoliceCamaro.TextColor3 = Color3.new(1, 0.470588, 0)
  1079. Teleports_PoliceCamaro.TextSize = 26
  1080.  
  1081. Teleports_SWATCar.Name = "Teleports_SWATCar"
  1082. Teleports_SWATCar.Parent = Side1
  1083. Teleports_SWATCar.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1084. Teleports_SWATCar.BorderColor3 = Color3.new(0, 0, 0)
  1085. Teleports_SWATCar.BorderSizePixel = 3
  1086. Teleports_SWATCar.Position = UDim2.new(0.0280069932, 0, 0.564606428, 0)
  1087. Teleports_SWATCar.Size = UDim2.new(0, 135, 0, 50)
  1088. Teleports_SWATCar.Font = Enum.Font.SourceSans
  1089. Teleports_SWATCar.FontSize = Enum.FontSize.Size28
  1090. Teleports_SWATCar.Text = "SWAT Car"
  1091. Teleports_SWATCar.TextColor3 = Color3.new(1, 0.470588, 0)
  1092. Teleports_SWATCar.TextSize = 26
  1093.  
  1094. Teleports_PickupTruck.Name = "Teleports_PickupTruck"
  1095. Teleports_PickupTruck.Parent = Side1
  1096. Teleports_PickupTruck.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1097. Teleports_PickupTruck.BorderColor3 = Color3.new(0, 0, 0)
  1098. Teleports_PickupTruck.BorderSizePixel = 3
  1099. Teleports_PickupTruck.Position = UDim2.new(0.0280069932, 0, 0.765409648, 0)
  1100. Teleports_PickupTruck.Size = UDim2.new(0, 135, 0, 50)
  1101. Teleports_PickupTruck.Font = Enum.Font.SourceSans
  1102. Teleports_PickupTruck.FontSize = Enum.FontSize.Size28
  1103. Teleports_PickupTruck.Text = "Pickup Truck"
  1104. Teleports_PickupTruck.TextColor3 = Color3.new(1, 0.470588, 0)
  1105. Teleports_PickupTruck.TextSize = 26
  1106.  
  1107. Teleports_Camaro.Name = "Teleports_Camaro"
  1108. Teleports_Camaro.Parent = Side1
  1109. Teleports_Camaro.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1110. Teleports_Camaro.BorderColor3 = Color3.new(0, 0, 0)
  1111. Teleports_Camaro.BorderSizePixel = 3
  1112. Teleports_Camaro.Position = UDim2.new(0.0280000009, 0, 0.163000003, 0)
  1113. Teleports_Camaro.Size = UDim2.new(0, 135, 0, 50)
  1114. Teleports_Camaro.Font = Enum.Font.SourceSans
  1115. Teleports_Camaro.FontSize = Enum.FontSize.Size28
  1116. Teleports_Camaro.Text = "Camaro"
  1117. Teleports_Camaro.TextColor3 = Color3.new(1, 0.470588, 0)
  1118. Teleports_Camaro.TextSize = 26
  1119.  
  1120. Teleports_MiniCooper.Name = "Teleports_MiniCooper"
  1121. Teleports_MiniCooper.Parent = Side1
  1122. Teleports_MiniCooper.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1123. Teleports_MiniCooper.BorderColor3 = Color3.new(0, 0, 0)
  1124. Teleports_MiniCooper.BorderSizePixel = 3
  1125. Teleports_MiniCooper.Position = UDim2.new(0.264020979, 0, 0.363803208, 0)
  1126. Teleports_MiniCooper.Size = UDim2.new(0, 135, 0, 50)
  1127. Teleports_MiniCooper.Font = Enum.Font.SourceSans
  1128. Teleports_MiniCooper.FontSize = Enum.FontSize.Size28
  1129. Teleports_MiniCooper.Text = "Mini Cooper"
  1130. Teleports_MiniCooper.TextColor3 = Color3.new(1, 0.470588, 0)
  1131. Teleports_MiniCooper.TextSize = 26
  1132.  
  1133. Teleports_Model3.Name = "Teleports_Model3"
  1134. Teleports_Model3.Parent = Side1
  1135. Teleports_Model3.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1136. Teleports_Model3.BorderColor3 = Color3.new(0, 0, 0)
  1137. Teleports_Model3.BorderSizePixel = 3
  1138. Teleports_Model3.Position = UDim2.new(0.264020979, 0, 0.162999988, 0)
  1139. Teleports_Model3.Size = UDim2.new(0, 135, 0, 50)
  1140. Teleports_Model3.Font = Enum.Font.SourceSans
  1141. Teleports_Model3.FontSize = Enum.FontSize.Size28
  1142. Teleports_Model3.Text = "Model3"
  1143. Teleports_Model3.TextColor3 = Color3.new(1, 0.470588, 0)
  1144. Teleports_Model3.TextSize = 26
  1145.  
  1146. Teleports_Mustang.Name = "Teleports_Mustang"
  1147. Teleports_Mustang.Parent = Side1
  1148. Teleports_Mustang.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1149. Teleports_Mustang.BorderColor3 = Color3.new(0, 0, 0)
  1150. Teleports_Mustang.BorderSizePixel = 3
  1151. Teleports_Mustang.Position = UDim2.new(0.264020979, 0, 0.564606428, 0)
  1152. Teleports_Mustang.Size = UDim2.new(0, 135, 0, 50)
  1153. Teleports_Mustang.Font = Enum.Font.SourceSans
  1154. Teleports_Mustang.FontSize = Enum.FontSize.Size28
  1155. Teleports_Mustang.Text = "Mustang"
  1156. Teleports_Mustang.TextColor3 = Color3.new(1, 0.470588, 0)
  1157. Teleports_Mustang.TextSize = 26
  1158.  
  1159. Teleports_DuneBuggy.Name = "Teleports_DuneBuggy"
  1160. Teleports_DuneBuggy.Parent = Side1
  1161. Teleports_DuneBuggy.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1162. Teleports_DuneBuggy.BorderColor3 = Color3.new(0, 0, 0)
  1163. Teleports_DuneBuggy.BorderSizePixel = 3
  1164. Teleports_DuneBuggy.Position = UDim2.new(0.264020979, 0, 0.765409648, 0)
  1165. Teleports_DuneBuggy.Size = UDim2.new(0, 135, 0, 50)
  1166. Teleports_DuneBuggy.Font = Enum.Font.SourceSans
  1167. Teleports_DuneBuggy.FontSize = Enum.FontSize.Size28
  1168. Teleports_DuneBuggy.Text = "Dune Buggy"
  1169. Teleports_DuneBuggy.TextColor3 = Color3.new(1, 0.470588, 0)
  1170. Teleports_DuneBuggy.TextSize = 26
  1171.  
  1172. Teleports_Lamborghini.Name = "Teleports_Lamborghini"
  1173. Teleports_Lamborghini.Parent = Side1
  1174. Teleports_Lamborghini.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1175. Teleports_Lamborghini.BorderColor3 = Color3.new(0, 0, 0)
  1176. Teleports_Lamborghini.BorderSizePixel = 3
  1177. Teleports_Lamborghini.Position = UDim2.new(0.500034928, 0, 0.363803208, 0)
  1178. Teleports_Lamborghini.Size = UDim2.new(0, 135, 0, 50)
  1179. Teleports_Lamborghini.Font = Enum.Font.SourceSans
  1180. Teleports_Lamborghini.FontSize = Enum.FontSize.Size28
  1181. Teleports_Lamborghini.Text = "Lamborghini"
  1182. Teleports_Lamborghini.TextColor3 = Color3.new(1, 0.470588, 0)
  1183. Teleports_Lamborghini.TextSize = 26
  1184.  
  1185. Teleports_Porsche.Name = "Teleports_Porsche"
  1186. Teleports_Porsche.Parent = Side1
  1187. Teleports_Porsche.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1188. Teleports_Porsche.BorderColor3 = Color3.new(0, 0, 0)
  1189. Teleports_Porsche.BorderSizePixel = 3
  1190. Teleports_Porsche.Position = UDim2.new(0.500034928, 0, 0.162999988, 0)
  1191. Teleports_Porsche.Size = UDim2.new(0, 135, 0, 50)
  1192. Teleports_Porsche.Font = Enum.Font.SourceSans
  1193. Teleports_Porsche.FontSize = Enum.FontSize.Size28
  1194. Teleports_Porsche.Text = "Porsche"
  1195. Teleports_Porsche.TextColor3 = Color3.new(1, 0.470588, 0)
  1196. Teleports_Porsche.TextSize = 26
  1197.  
  1198. Teleports_Ferrari.Name = "Teleports_Ferrari"
  1199. Teleports_Ferrari.Parent = Side1
  1200. Teleports_Ferrari.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1201. Teleports_Ferrari.BorderColor3 = Color3.new(0, 0, 0)
  1202. Teleports_Ferrari.BorderSizePixel = 3
  1203. Teleports_Ferrari.Position = UDim2.new(0.500034928, 0, 0.564606428, 0)
  1204. Teleports_Ferrari.Size = UDim2.new(0, 135, 0, 50)
  1205. Teleports_Ferrari.Font = Enum.Font.SourceSans
  1206. Teleports_Ferrari.FontSize = Enum.FontSize.Size28
  1207. Teleports_Ferrari.Text = "Ferrari"
  1208. Teleports_Ferrari.TextColor3 = Color3.new(1, 0.470588, 0)
  1209. Teleports_Ferrari.TextSize = 26
  1210.  
  1211. Teleports_Bugatti.Name = "Teleports_Bugatti"
  1212. Teleports_Bugatti.Parent = Side1
  1213. Teleports_Bugatti.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1214. Teleports_Bugatti.BorderColor3 = Color3.new(0, 0, 0)
  1215. Teleports_Bugatti.BorderSizePixel = 3
  1216. Teleports_Bugatti.Position = UDim2.new(0.500034928, 0, 0.765409648, 0)
  1217. Teleports_Bugatti.Size = UDim2.new(0, 135, 0, 50)
  1218. Teleports_Bugatti.Font = Enum.Font.SourceSans
  1219. Teleports_Bugatti.FontSize = Enum.FontSize.Size28
  1220. Teleports_Bugatti.Text = "Bugatti"
  1221. Teleports_Bugatti.TextColor3 = Color3.new(1, 0.470588, 0)
  1222. Teleports_Bugatti.TextSize = 26
  1223.  
  1224. Teleports_Dirtbike.Name = "Teleports_Dirtbike"
  1225. Teleports_Dirtbike.Parent = Side1
  1226. Teleports_Dirtbike.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1227. Teleports_Dirtbike.BorderColor3 = Color3.new(0, 0, 0)
  1228. Teleports_Dirtbike.BorderSizePixel = 3
  1229. Teleports_Dirtbike.Position = UDim2.new(0.736048937, 0, 0.361795187, 0)
  1230. Teleports_Dirtbike.Size = UDim2.new(0, 135, 0, 50)
  1231. Teleports_Dirtbike.Font = Enum.Font.SourceSans
  1232. Teleports_Dirtbike.FontSize = Enum.FontSize.Size28
  1233. Teleports_Dirtbike.Text = "Dirtbike"
  1234. Teleports_Dirtbike.TextColor3 = Color3.new(1, 0.470588, 0)
  1235. Teleports_Dirtbike.TextSize = 26
  1236.  
  1237. Teleports_MonsterTruck.Name = "Teleports_MonsterTruck"
  1238. Teleports_MonsterTruck.Parent = Side1
  1239. Teleports_MonsterTruck.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1240. Teleports_MonsterTruck.BorderColor3 = Color3.new(0, 0, 0)
  1241. Teleports_MonsterTruck.BorderSizePixel = 3
  1242. Teleports_MonsterTruck.Position = UDim2.new(0.736048937, 0, 0.162999988, 0)
  1243. Teleports_MonsterTruck.Size = UDim2.new(0, 135, 0, 50)
  1244. Teleports_MonsterTruck.Font = Enum.Font.SourceSans
  1245. Teleports_MonsterTruck.FontSize = Enum.FontSize.Size28
  1246. Teleports_MonsterTruck.Text = "MonsterTruck"
  1247. Teleports_MonsterTruck.TextColor3 = Color3.new(1, 0.470588, 0)
  1248. Teleports_MonsterTruck.TextSize = 26
  1249.  
  1250. Teleports_ATV.Name = "Teleports_ATV"
  1251. Teleports_ATV.Parent = Side1
  1252. Teleports_ATV.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1253. Teleports_ATV.BorderColor3 = Color3.new(0, 0, 0)
  1254. Teleports_ATV.BorderSizePixel = 3
  1255. Teleports_ATV.Position = UDim2.new(0.736048937, 0, 0.566614449, 0)
  1256. Teleports_ATV.Size = UDim2.new(0, 135, 0, 50)
  1257. Teleports_ATV.Font = Enum.Font.SourceSans
  1258. Teleports_ATV.FontSize = Enum.FontSize.Size28
  1259. Teleports_ATV.Text = "ATV"
  1260. Teleports_ATV.TextColor3 = Color3.new(1, 0.470588, 0)
  1261. Teleports_ATV.TextSize = 26
  1262.  
  1263. Teleports_McLaren.Name = "Teleports_McLaren"
  1264. Teleports_McLaren.Parent = Side1
  1265. Teleports_McLaren.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1266. Teleports_McLaren.BorderColor3 = Color3.new(0, 0, 0)
  1267. Teleports_McLaren.BorderSizePixel = 3
  1268. Teleports_McLaren.Position = UDim2.new(0.736048937, 0, 0.767417669, 0)
  1269. Teleports_McLaren.Size = UDim2.new(0, 135, 0, 50)
  1270. Teleports_McLaren.Font = Enum.Font.SourceSans
  1271. Teleports_McLaren.FontSize = Enum.FontSize.Size28
  1272. Teleports_McLaren.Text = "McLaren"
  1273. Teleports_McLaren.TextColor3 = Color3.new(1, 0.470588, 0)
  1274. Teleports_McLaren.TextSize = 26
  1275.  
  1276. Side2.Name = "Side2"
  1277. Side2.Parent = Motherboard
  1278. Side2.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  1279. Side2.BorderSizePixel = 0
  1280. Side2.Position = UDim2.new(0, 0, 0.133000001, 0)
  1281. Side2.Size = UDim2.new(0, 572, 0, 249)
  1282. Side2.Visible = false
  1283.  
  1284. Side2_TeleportsText.Name = "Side2_TeleportsText"
  1285. Side2_TeleportsText.Parent = Side2
  1286. Side2_TeleportsText.BackgroundColor3 = Color3.new(1, 1, 1)
  1287. Side2_TeleportsText.BackgroundTransparency = 1
  1288. Side2_TeleportsText.Position = UDim2.new(0.325174838, 0, -0.0162930116, 0)
  1289. Side2_TeleportsText.Size = UDim2.new(0, 200, 0, 39)
  1290. Side2_TeleportsText.Font = Enum.Font.SciFi
  1291. Side2_TeleportsText.FontSize = Enum.FontSize.Size14
  1292. Side2_TeleportsText.Text = "Teleports"
  1293. Side2_TeleportsText.TextColor3 = Color3.new(1, 0.470588, 0)
  1294. Side2_TeleportsText.TextScaled = true
  1295. Side2_TeleportsText.TextSize = 14
  1296. Side2_TeleportsText.TextWrapped = true
  1297.  
  1298. Teleports_PrisonCells.Name = "Teleports_PrisonCells"
  1299. Teleports_PrisonCells.Parent = Side2
  1300. Teleports_PrisonCells.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1301. Teleports_PrisonCells.BorderColor3 = Color3.new(0, 0, 0)
  1302. Teleports_PrisonCells.BorderSizePixel = 3
  1303. Teleports_PrisonCells.Position = UDim2.new(0.0280069932, 0, 0.363803208, 0)
  1304. Teleports_PrisonCells.Size = UDim2.new(0, 135, 0, 50)
  1305. Teleports_PrisonCells.Font = Enum.Font.SourceSans
  1306. Teleports_PrisonCells.FontSize = Enum.FontSize.Size28
  1307. Teleports_PrisonCells.Text = "Prison Cells"
  1308. Teleports_PrisonCells.TextColor3 = Color3.new(1, 0.470588, 0)
  1309. Teleports_PrisonCells.TextSize = 26
  1310.  
  1311. Teleports_PrisonParking.Name = "Teleports_PrisonParking"
  1312. Teleports_PrisonParking.Parent = Side2
  1313. Teleports_PrisonParking.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1314. Teleports_PrisonParking.BorderColor3 = Color3.new(0, 0, 0)
  1315. Teleports_PrisonParking.BorderSizePixel = 3
  1316. Teleports_PrisonParking.Position = UDim2.new(0.0280069932, 0, 0.564606428, 0)
  1317. Teleports_PrisonParking.Size = UDim2.new(0, 135, 0, 50)
  1318. Teleports_PrisonParking.Font = Enum.Font.SourceSans
  1319. Teleports_PrisonParking.FontSize = Enum.FontSize.Size28
  1320. Teleports_PrisonParking.Text = "Prison Parking"
  1321. Teleports_PrisonParking.TextColor3 = Color3.new(1, 0.470588, 0)
  1322. Teleports_PrisonParking.TextSize = 26
  1323.  
  1324. Teleports_PrisonCanteen.Name = "Teleports_PrisonCanteen"
  1325. Teleports_PrisonCanteen.Parent = Side2
  1326. Teleports_PrisonCanteen.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1327. Teleports_PrisonCanteen.BorderColor3 = Color3.new(0, 0, 0)
  1328. Teleports_PrisonCanteen.BorderSizePixel = 3
  1329. Teleports_PrisonCanteen.Position = UDim2.new(0.0280069932, 0, 0.765409648, 0)
  1330. Teleports_PrisonCanteen.Size = UDim2.new(0, 135, 0, 50)
  1331. Teleports_PrisonCanteen.Font = Enum.Font.SourceSans
  1332. Teleports_PrisonCanteen.FontSize = Enum.FontSize.Size28
  1333. Teleports_PrisonCanteen.Text = "Prison Canteen"
  1334. Teleports_PrisonCanteen.TextColor3 = Color3.new(1, 0.470588, 0)
  1335. Teleports_PrisonCanteen.TextSize = 26
  1336.  
  1337. Teleports_PrisonYard.Name = "Teleports_PrisonYard"
  1338. Teleports_PrisonYard.Parent = Side2
  1339. Teleports_PrisonYard.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1340. Teleports_PrisonYard.BorderColor3 = Color3.new(0, 0, 0)
  1341. Teleports_PrisonYard.BorderSizePixel = 3
  1342. Teleports_PrisonYard.Position = UDim2.new(0.0280000009, 0, 0.163000003, 0)
  1343. Teleports_PrisonYard.Size = UDim2.new(0, 135, 0, 50)
  1344. Teleports_PrisonYard.Font = Enum.Font.SourceSans
  1345. Teleports_PrisonYard.FontSize = Enum.FontSize.Size28
  1346. Teleports_PrisonYard.Text = "Prison Yard"
  1347. Teleports_PrisonYard.TextColor3 = Color3.new(1, 0.470588, 0)
  1348. Teleports_PrisonYard.TextSize = 26
  1349.  
  1350. Teleports_PoliceHQ2.Name = "Teleports_PoliceHQ2"
  1351. Teleports_PoliceHQ2.Parent = Side2
  1352. Teleports_PoliceHQ2.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1353. Teleports_PoliceHQ2.BorderColor3 = Color3.new(0, 0, 0)
  1354. Teleports_PoliceHQ2.BorderSizePixel = 3
  1355. Teleports_PoliceHQ2.Position = UDim2.new(0.264020979, 0, 0.363803208, 0)
  1356. Teleports_PoliceHQ2.Size = UDim2.new(0, 135, 0, 50)
  1357. Teleports_PoliceHQ2.Font = Enum.Font.SourceSans
  1358. Teleports_PoliceHQ2.FontSize = Enum.FontSize.Size28
  1359. Teleports_PoliceHQ2.Text = "Police HQ2"
  1360. Teleports_PoliceHQ2.TextColor3 = Color3.new(1, 0.470588, 0)
  1361. Teleports_PoliceHQ2.TextSize = 26
  1362.  
  1363. Teleports_PoliceHQ1.Name = "Teleports_PoliceHQ1"
  1364. Teleports_PoliceHQ1.Parent = Side2
  1365. Teleports_PoliceHQ1.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1366. Teleports_PoliceHQ1.BorderColor3 = Color3.new(0, 0, 0)
  1367. Teleports_PoliceHQ1.BorderSizePixel = 3
  1368. Teleports_PoliceHQ1.Position = UDim2.new(0.264020979, 0, 0.162999988, 0)
  1369. Teleports_PoliceHQ1.Size = UDim2.new(0, 135, 0, 50)
  1370. Teleports_PoliceHQ1.Font = Enum.Font.SourceSans
  1371. Teleports_PoliceHQ1.FontSize = Enum.FontSize.Size28
  1372. Teleports_PoliceHQ1.Text = "Police HQ1"
  1373. Teleports_PoliceHQ1.TextColor3 = Color3.new(1, 0.470588, 0)
  1374. Teleports_PoliceHQ1.TextSize = 26
  1375.  
  1376. Teleports_CriminalsHQ1.Name = "Teleports_CriminalsHQ1"
  1377. Teleports_CriminalsHQ1.Parent = Side2
  1378. Teleports_CriminalsHQ1.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1379. Teleports_CriminalsHQ1.BorderColor3 = Color3.new(0, 0, 0)
  1380. Teleports_CriminalsHQ1.BorderSizePixel = 3
  1381. Teleports_CriminalsHQ1.Position = UDim2.new(0.264020979, 0, 0.564606428, 0)
  1382. Teleports_CriminalsHQ1.Size = UDim2.new(0, 135, 0, 50)
  1383. Teleports_CriminalsHQ1.Font = Enum.Font.SourceSans
  1384. Teleports_CriminalsHQ1.FontSize = Enum.FontSize.Size28
  1385. Teleports_CriminalsHQ1.Text = "Criminals HQ1"
  1386. Teleports_CriminalsHQ1.TextColor3 = Color3.new(1, 0.470588, 0)
  1387. Teleports_CriminalsHQ1.TextSize = 26
  1388.  
  1389. Teleports_CriminalsHQ2.Name = "Teleports_CriminalsHQ2"
  1390. Teleports_CriminalsHQ2.Parent = Side2
  1391. Teleports_CriminalsHQ2.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1392. Teleports_CriminalsHQ2.BorderColor3 = Color3.new(0, 0, 0)
  1393. Teleports_CriminalsHQ2.BorderSizePixel = 3
  1394. Teleports_CriminalsHQ2.Position = UDim2.new(0.264020979, 0, 0.765409648, 0)
  1395. Teleports_CriminalsHQ2.Size = UDim2.new(0, 135, 0, 50)
  1396. Teleports_CriminalsHQ2.Font = Enum.Font.SourceSans
  1397. Teleports_CriminalsHQ2.FontSize = Enum.FontSize.Size28
  1398. Teleports_CriminalsHQ2.Text = "Criminals HQ2"
  1399. Teleports_CriminalsHQ2.TextColor3 = Color3.new(1, 0.470588, 0)
  1400. Teleports_CriminalsHQ2.TextSize = 26
  1401.  
  1402. Teleports_Helipad2.Name = "Teleports_Helipad2"
  1403. Teleports_Helipad2.Parent = Side2
  1404. Teleports_Helipad2.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1405. Teleports_Helipad2.BorderColor3 = Color3.new(0, 0, 0)
  1406. Teleports_Helipad2.BorderSizePixel = 3
  1407. Teleports_Helipad2.Position = UDim2.new(0.500034928, 0, 0.363803208, 0)
  1408. Teleports_Helipad2.Size = UDim2.new(0, 135, 0, 50)
  1409. Teleports_Helipad2.Font = Enum.Font.SourceSans
  1410. Teleports_Helipad2.FontSize = Enum.FontSize.Size28
  1411. Teleports_Helipad2.Text = "Helipad 2"
  1412. Teleports_Helipad2.TextColor3 = Color3.new(1, 0.470588, 0)
  1413. Teleports_Helipad2.TextSize = 26
  1414.  
  1415. Teleports_Helipad1.Name = "Teleports_Helipad1"
  1416. Teleports_Helipad1.Parent = Side2
  1417. Teleports_Helipad1.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1418. Teleports_Helipad1.BorderColor3 = Color3.new(0, 0, 0)
  1419. Teleports_Helipad1.BorderSizePixel = 3
  1420. Teleports_Helipad1.Position = UDim2.new(0.500034928, 0, 0.162999988, 0)
  1421. Teleports_Helipad1.Size = UDim2.new(0, 135, 0, 50)
  1422. Teleports_Helipad1.Font = Enum.Font.SourceSans
  1423. Teleports_Helipad1.FontSize = Enum.FontSize.Size28
  1424. Teleports_Helipad1.Text = "Helipad 1"
  1425. Teleports_Helipad1.TextColor3 = Color3.new(1, 0.470588, 0)
  1426. Teleports_Helipad1.TextSize = 26
  1427.  
  1428. Teleports_Garage.Name = "Teleports_Garage"
  1429. Teleports_Garage.Parent = Side2
  1430. Teleports_Garage.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1431. Teleports_Garage.BorderColor3 = Color3.new(0, 0, 0)
  1432. Teleports_Garage.BorderSizePixel = 3
  1433. Teleports_Garage.Position = UDim2.new(0.500034928, 0, 0.564606428, 0)
  1434. Teleports_Garage.Size = UDim2.new(0, 135, 0, 50)
  1435. Teleports_Garage.Font = Enum.Font.SourceSans
  1436. Teleports_Garage.FontSize = Enum.FontSize.Size28
  1437. Teleports_Garage.Text = "Garage"
  1438. Teleports_Garage.TextColor3 = Color3.new(1, 0.470588, 0)
  1439. Teleports_Garage.TextSize = 26
  1440.  
  1441. Teleports_BankVault.Name = "Teleports_BankVault"
  1442. Teleports_BankVault.Parent = Side2
  1443. Teleports_BankVault.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1444. Teleports_BankVault.BorderColor3 = Color3.new(0, 0, 0)
  1445. Teleports_BankVault.BorderSizePixel = 3
  1446. Teleports_BankVault.Position = UDim2.new(0.500034928, 0, 0.765409648, 0)
  1447. Teleports_BankVault.Size = UDim2.new(0, 135, 0, 50)
  1448. Teleports_BankVault.Font = Enum.Font.SourceSans
  1449. Teleports_BankVault.FontSize = Enum.FontSize.Size28
  1450. Teleports_BankVault.Text = "Bank vault"
  1451. Teleports_BankVault.TextColor3 = Color3.new(1, 0.470588, 0)
  1452. Teleports_BankVault.TextSize = 26
  1453.  
  1454. Teleports_GasStation.Name = "Teleports_GasStation"
  1455. Teleports_GasStation.Parent = Side2
  1456. Teleports_GasStation.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1457. Teleports_GasStation.BorderColor3 = Color3.new(0, 0, 0)
  1458. Teleports_GasStation.BorderSizePixel = 3
  1459. Teleports_GasStation.Position = UDim2.new(0.736048937, 0, 0.361795187, 0)
  1460. Teleports_GasStation.Size = UDim2.new(0, 135, 0, 50)
  1461. Teleports_GasStation.Font = Enum.Font.SourceSans
  1462. Teleports_GasStation.FontSize = Enum.FontSize.Size28
  1463. Teleports_GasStation.Text = "Gas Station"
  1464. Teleports_GasStation.TextColor3 = Color3.new(1, 0.470588, 0)
  1465. Teleports_GasStation.TextSize = 26
  1466.  
  1467. Teleports_Jewelry.Name = "Teleports_Jewelry"
  1468. Teleports_Jewelry.Parent = Side2
  1469. Teleports_Jewelry.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1470. Teleports_Jewelry.BorderColor3 = Color3.new(0, 0, 0)
  1471. Teleports_Jewelry.BorderSizePixel = 3
  1472. Teleports_Jewelry.Position = UDim2.new(0.736048937, 0, 0.162999988, 0)
  1473. Teleports_Jewelry.Size = UDim2.new(0, 135, 0, 50)
  1474. Teleports_Jewelry.Font = Enum.Font.SourceSans
  1475. Teleports_Jewelry.FontSize = Enum.FontSize.Size28
  1476. Teleports_Jewelry.Text = "Jewelry"
  1477. Teleports_Jewelry.TextColor3 = Color3.new(1, 0.470588, 0)
  1478. Teleports_Jewelry.TextSize = 26
  1479.  
  1480. Teleports_DonutShop.Name = "Teleports_DonutShop"
  1481. Teleports_DonutShop.Parent = Side2
  1482. Teleports_DonutShop.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1483. Teleports_DonutShop.BorderColor3 = Color3.new(0, 0, 0)
  1484. Teleports_DonutShop.BorderSizePixel = 3
  1485. Teleports_DonutShop.Position = UDim2.new(0.736048937, 0, 0.566614449, 0)
  1486. Teleports_DonutShop.Size = UDim2.new(0, 135, 0, 50)
  1487. Teleports_DonutShop.Font = Enum.Font.SourceSans
  1488. Teleports_DonutShop.FontSize = Enum.FontSize.Size28
  1489. Teleports_DonutShop.Text = "Donut Shop"
  1490. Teleports_DonutShop.TextColor3 = Color3.new(1, 0.470588, 0)
  1491. Teleports_DonutShop.TextSize = 26
  1492.  
  1493. Teleports_Apartment.Name = "Teleports_Apartment"
  1494. Teleports_Apartment.Parent = Side2
  1495. Teleports_Apartment.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1496. Teleports_Apartment.BorderColor3 = Color3.new(0, 0, 0)
  1497. Teleports_Apartment.BorderSizePixel = 3
  1498. Teleports_Apartment.Position = UDim2.new(0.736048937, 0, 0.767417669, 0)
  1499. Teleports_Apartment.Size = UDim2.new(0, 135, 0, 50)
  1500. Teleports_Apartment.Font = Enum.Font.SourceSans
  1501. Teleports_Apartment.FontSize = Enum.FontSize.Size28
  1502. Teleports_Apartment.Text = "Apartment"
  1503. Teleports_Apartment.TextColor3 = Color3.new(1, 0.470588, 0)
  1504. Teleports_Apartment.TextSize = 26
  1505.  
  1506. Side3.Name = "Side3"
  1507. Side3.Parent = Motherboard
  1508. Side3.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  1509. Side3.BorderSizePixel = 0
  1510. Side3.Position = UDim2.new(0, 0, 0.133000001, 0)
  1511. Side3.Size = UDim2.new(0, 572, 0, 249)
  1512. Side3.Visible = false
  1513.  
  1514. Side3_GameText.Name = "Side3_GameText"
  1515. Side3_GameText.Parent = Side3
  1516. Side3_GameText.BackgroundColor3 = Color3.new(1, 1, 1)
  1517. Side3_GameText.BackgroundTransparency = 1
  1518. Side3_GameText.Position = UDim2.new(0.325174838, 0, -0.0162930116, 0)
  1519. Side3_GameText.Size = UDim2.new(0, 200, 0, 39)
  1520. Side3_GameText.Font = Enum.Font.SciFi
  1521. Side3_GameText.FontSize = Enum.FontSize.Size14
  1522. Side3_GameText.Text = "Game"
  1523. Side3_GameText.TextColor3 = Color3.new(1, 0.470588, 0)
  1524. Side3_GameText.TextScaled = true
  1525. Side3_GameText.TextSize = 14
  1526. Side3_GameText.TextWrapped = true
  1527.  
  1528. Game_InfAmmo.Name = "Game_InfAmmo"
  1529. Game_InfAmmo.Parent = Side3
  1530. Game_InfAmmo.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1531. Game_InfAmmo.BorderColor3 = Color3.new(0, 0, 0)
  1532. Game_InfAmmo.BorderSizePixel = 3
  1533. Game_InfAmmo.Position = UDim2.new(0.0280069932, 0, 0.363803208, 0)
  1534. Game_InfAmmo.Size = UDim2.new(0, 135, 0, 50)
  1535. Game_InfAmmo.Font = Enum.Font.SourceSans
  1536. Game_InfAmmo.FontSize = Enum.FontSize.Size28
  1537. Game_InfAmmo.Text = "Infinite Ammo"
  1538. Game_InfAmmo.TextColor3 = Color3.new(1, 0.470588, 0)
  1539. Game_InfAmmo.TextSize = 26
  1540.  
  1541. Game_InfHealth.Name = "Game_InfHealth"
  1542. Game_InfHealth.Parent = Side3
  1543. Game_InfHealth.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1544. Game_InfHealth.BorderColor3 = Color3.new(0, 0, 0)
  1545. Game_InfHealth.BorderSizePixel = 3
  1546. Game_InfHealth.Position = UDim2.new(0.0280069932, 0, 0.564606428, 0)
  1547. Game_InfHealth.Size = UDim2.new(0, 135, 0, 50)
  1548. Game_InfHealth.Font = Enum.Font.SourceSans
  1549. Game_InfHealth.FontSize = Enum.FontSize.Size28
  1550. Game_InfHealth.Text = "Infinite Health"
  1551. Game_InfHealth.TextColor3 = Color3.new(1, 0.470588, 0)
  1552. Game_InfHealth.TextSize = 26
  1553.  
  1554. Game_Keycard.Name = "Game_Keycard"
  1555. Game_Keycard.Parent = Side3
  1556. Game_Keycard.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1557. Game_Keycard.BorderColor3 = Color3.new(0, 0, 0)
  1558. Game_Keycard.BorderSizePixel = 3
  1559. Game_Keycard.Position = UDim2.new(0.0280069932, 0, 0.765409648, 0)
  1560. Game_Keycard.Size = UDim2.new(0, 135, 0, 50)
  1561. Game_Keycard.Font = Enum.Font.SourceSans
  1562. Game_Keycard.FontSize = Enum.FontSize.Size28
  1563. Game_Keycard.Text = "KeycardGlitch"
  1564. Game_Keycard.TextColor3 = Color3.new(1, 0.470588, 0)
  1565. Game_Keycard.TextSize = 26
  1566.  
  1567. Game_InfNitro.Name = "Game_InfNitro"
  1568. Game_InfNitro.Parent = Side3
  1569. Game_InfNitro.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1570. Game_InfNitro.BorderColor3 = Color3.new(0, 0, 0)
  1571. Game_InfNitro.BorderSizePixel = 3
  1572. Game_InfNitro.Position = UDim2.new(0.0280000009, 0, 0.163000003, 0)
  1573. Game_InfNitro.Size = UDim2.new(0, 135, 0, 50)
  1574. Game_InfNitro.Font = Enum.Font.SourceSans
  1575. Game_InfNitro.FontSize = Enum.FontSize.Size28
  1576. Game_InfNitro.Text = "Infinite Nitro"
  1577. Game_InfNitro.TextColor3 = Color3.new(1, 0.470588, 0)
  1578. Game_InfNitro.TextSize = 26
  1579.  
  1580. Game_SpawnAK47.Name = "Game_SpawnAK47"
  1581. Game_SpawnAK47.Parent = Side3
  1582. Game_SpawnAK47.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1583. Game_SpawnAK47.BorderColor3 = Color3.new(0, 0, 0)
  1584. Game_SpawnAK47.BorderSizePixel = 3
  1585. Game_SpawnAK47.Position = UDim2.new(0.264020979, 0, 0.363803208, 0)
  1586. Game_SpawnAK47.Size = UDim2.new(0, 135, 0, 50)
  1587. Game_SpawnAK47.Font = Enum.Font.SourceSans
  1588. Game_SpawnAK47.FontSize = Enum.FontSize.Size28
  1589. Game_SpawnAK47.Text = "Spawn AK-47"
  1590. Game_SpawnAK47.TextColor3 = Color3.new(1, 0.470588, 0)
  1591. Game_SpawnAK47.TextSize = 26
  1592.  
  1593. Game_SpawnM4A4.Name = "Game_SpawnM4A4"
  1594. Game_SpawnM4A4.Parent = Side3
  1595. Game_SpawnM4A4.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1596. Game_SpawnM4A4.BorderColor3 = Color3.new(0, 0, 0)
  1597. Game_SpawnM4A4.BorderSizePixel = 3
  1598. Game_SpawnM4A4.Position = UDim2.new(0.264020979, 0, 0.162999988, 0)
  1599. Game_SpawnM4A4.Size = UDim2.new(0, 135, 0, 50)
  1600. Game_SpawnM4A4.Font = Enum.Font.SourceSans
  1601. Game_SpawnM4A4.FontSize = Enum.FontSize.Size28
  1602. Game_SpawnM4A4.Text = "Spawn M4A4"
  1603. Game_SpawnM4A4.TextColor3 = Color3.new(1, 0.470588, 0)
  1604. Game_SpawnM4A4.TextSize = 26
  1605.  
  1606. Game_SpawnPistol.Name = "Game_SpawnPistol"
  1607. Game_SpawnPistol.Parent = Side3
  1608. Game_SpawnPistol.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1609. Game_SpawnPistol.BorderColor3 = Color3.new(0, 0, 0)
  1610. Game_SpawnPistol.BorderSizePixel = 3
  1611. Game_SpawnPistol.Position = UDim2.new(0.264020979, 0, 0.564606428, 0)
  1612. Game_SpawnPistol.Size = UDim2.new(0, 135, 0, 50)
  1613. Game_SpawnPistol.Font = Enum.Font.SourceSans
  1614. Game_SpawnPistol.FontSize = Enum.FontSize.Size28
  1615. Game_SpawnPistol.Text = "Spawn Pistol"
  1616. Game_SpawnPistol.TextColor3 = Color3.new(1, 0.470588, 0)
  1617. Game_SpawnPistol.TextSize = 26
  1618.  
  1619. Game_SpawnShotgun.Name = "Game_SpawnShotgun"
  1620. Game_SpawnShotgun.Parent = Side3
  1621. Game_SpawnShotgun.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1622. Game_SpawnShotgun.BorderColor3 = Color3.new(0, 0, 0)
  1623. Game_SpawnShotgun.BorderSizePixel = 3
  1624. Game_SpawnShotgun.Position = UDim2.new(0.264020979, 0, 0.765409648, 0)
  1625. Game_SpawnShotgun.Size = UDim2.new(0, 135, 0, 50)
  1626. Game_SpawnShotgun.Font = Enum.Font.SourceSans
  1627. Game_SpawnShotgun.FontSize = Enum.FontSize.Size28
  1628. Game_SpawnShotgun.Text = "Shotgun"
  1629. Game_SpawnShotgun.TextColor3 = Color3.new(1, 0.470588, 0)
  1630. Game_SpawnShotgun.TextSize = 26
  1631.  
  1632. Game_Walkspeed.Name = "Game_Walkspeed"
  1633. Game_Walkspeed.Parent = Side3
  1634. Game_Walkspeed.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1635. Game_Walkspeed.BorderColor3 = Color3.new(0, 0, 0)
  1636. Game_Walkspeed.BorderSizePixel = 3
  1637. Game_Walkspeed.Position = UDim2.new(0.500034928, 0, 0.363803208, 0)
  1638. Game_Walkspeed.Size = UDim2.new(0, 135, 0, 50)
  1639. Game_Walkspeed.Font = Enum.Font.SourceSans
  1640. Game_Walkspeed.FontSize = Enum.FontSize.Size28
  1641. Game_Walkspeed.Text = "WS (X)"
  1642. Game_Walkspeed.TextColor3 = Color3.new(1, 0.470588, 0)
  1643. Game_Walkspeed.TextSize = 26
  1644.  
  1645. Game_Noclip.Name = "Game_Noclip"
  1646. Game_Noclip.Parent = Side3
  1647. Game_Noclip.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1648. Game_Noclip.BorderColor3 = Color3.new(0, 0, 0)
  1649. Game_Noclip.BorderSizePixel = 3
  1650. Game_Noclip.Position = UDim2.new(0.500034928, 0, 0.162999988, 0)
  1651. Game_Noclip.Size = UDim2.new(0, 135, 0, 50)
  1652. Game_Noclip.Font = Enum.Font.SourceSans
  1653. Game_Noclip.FontSize = Enum.FontSize.Size28
  1654. Game_Noclip.Text = "Noclip (B)"
  1655. Game_Noclip.TextColor3 = Color3.new(1, 0.470588, 0)
  1656. Game_Noclip.TextSize = 26
  1657.  
  1658. Game_LowGrav.Name = "Game_LowGrav"
  1659. Game_LowGrav.Parent = Side3
  1660. Game_LowGrav.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1661. Game_LowGrav.BorderColor3 = Color3.new(0, 0, 0)
  1662. Game_LowGrav.BorderSizePixel = 3
  1663. Game_LowGrav.Position = UDim2.new(0.500034928, 0, 0.564606428, 0)
  1664. Game_LowGrav.Size = UDim2.new(0, 135, 0, 50)
  1665. Game_LowGrav.Font = Enum.Font.SourceSans
  1666. Game_LowGrav.FontSize = Enum.FontSize.Size28
  1667. Game_LowGrav.Text = "Low Grav (N)"
  1668. Game_LowGrav.TextColor3 = Color3.new(1, 0.470588, 0)
  1669. Game_LowGrav.TextSize = 26
  1670.  
  1671. Game_CarSpeed.Name = "Game_CarSpeed"
  1672. Game_CarSpeed.Parent = Side3
  1673. Game_CarSpeed.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1674. Game_CarSpeed.BorderColor3 = Color3.new(0, 0, 0)
  1675. Game_CarSpeed.BorderSizePixel = 3
  1676. Game_CarSpeed.Position = UDim2.new(0.500034928, 0, 0.765409648, 0)
  1677. Game_CarSpeed.Size = UDim2.new(0, 135, 0, 50)
  1678. Game_CarSpeed.Font = Enum.Font.SourceSans
  1679. Game_CarSpeed.FontSize = Enum.FontSize.Size28
  1680. Game_CarSpeed.Text = "Fast car"
  1681. Game_CarSpeed.TextColor3 = Color3.new(1, 0.470588, 0)
  1682. Game_CarSpeed.TextSize = 26
  1683.  
  1684. Game_SpawnSword.Name = "Game_SpawnSword"
  1685. Game_SpawnSword.Parent = Side3
  1686. Game_SpawnSword.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1687. Game_SpawnSword.BorderColor3 = Color3.new(0, 0, 0)
  1688. Game_SpawnSword.BorderSizePixel = 3
  1689. Game_SpawnSword.Position = UDim2.new(0.736048937, 0, 0.361795187, 0)
  1690. Game_SpawnSword.Size = UDim2.new(0, 135, 0, 50)
  1691. Game_SpawnSword.Font = Enum.Font.SourceSans
  1692. Game_SpawnSword.FontSize = Enum.FontSize.Size28
  1693. Game_SpawnSword.Text = "Spawn sword"
  1694. Game_SpawnSword.TextColor3 = Color3.new(1, 0.470588, 0)
  1695. Game_SpawnSword.TextSize = 26
  1696.  
  1697. Game_SpawnShield.Name = "Game_SpawnShield"
  1698. Game_SpawnShield.Parent = Side3
  1699. Game_SpawnShield.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1700. Game_SpawnShield.BorderColor3 = Color3.new(0, 0, 0)
  1701. Game_SpawnShield.BorderSizePixel = 3
  1702. Game_SpawnShield.Position = UDim2.new(0.736048937, 0, 0.162999988, 0)
  1703. Game_SpawnShield.Size = UDim2.new(0, 135, 0, 50)
  1704. Game_SpawnShield.Font = Enum.Font.SourceSans
  1705. Game_SpawnShield.FontSize = Enum.FontSize.Size28
  1706. Game_SpawnShield.Text = "Spawn Shield"
  1707. Game_SpawnShield.TextColor3 = Color3.new(1, 0.470588, 0)
  1708. Game_SpawnShield.TextSize = 26
  1709.  
  1710. Game_SpawnKeycard.Name = "Game_SpawnKeycard"
  1711. Game_SpawnKeycard.Parent = Side3
  1712. Game_SpawnKeycard.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1713. Game_SpawnKeycard.BorderColor3 = Color3.new(0, 0, 0)
  1714. Game_SpawnKeycard.BorderSizePixel = 3
  1715. Game_SpawnKeycard.Position = UDim2.new(0.736048937, 0, 0.566614449, 0)
  1716. Game_SpawnKeycard.Size = UDim2.new(0, 135, 0, 50)
  1717. Game_SpawnKeycard.Font = Enum.Font.SourceSans
  1718. Game_SpawnKeycard.FontSize = Enum.FontSize.Size28
  1719. Game_SpawnKeycard.Text = "Keycard"
  1720. Game_SpawnKeycard.TextColor3 = Color3.new(1, 0.470588, 0)
  1721. Game_SpawnKeycard.TextSize = 26
  1722.  
  1723. Game_BTools.Name = "Game_BTools"
  1724. Game_BTools.Parent = Side3
  1725. Game_BTools.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1726. Game_BTools.BorderColor3 = Color3.new(0, 0, 0)
  1727. Game_BTools.BorderSizePixel = 3
  1728. Game_BTools.Position = UDim2.new(0.736048937, 0, 0.767417669, 0)
  1729. Game_BTools.Size = UDim2.new(0, 135, 0, 50)
  1730. Game_BTools.Font = Enum.Font.SourceSans
  1731. Game_BTools.FontSize = Enum.FontSize.Size28
  1732. Game_BTools.Text = "BTools"
  1733. Game_BTools.TextColor3 = Color3.new(1, 0.470588, 0)
  1734. Game_BTools.TextSize = 26
  1735.  
  1736. Side5.Name = "Side5"
  1737. Side5.Parent = Motherboard
  1738. Side5.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  1739. Side5.BorderSizePixel = 0
  1740. Side5.Position = UDim2.new(0, 0, 0.133000001, 0)
  1741. Side5.Size = UDim2.new(0, 572, 0, 249)
  1742. Side5.Visible = false
  1743.  
  1744. Side5_PlayerTeleportText.Name = "Side5_PlayerTeleportText"
  1745. Side5_PlayerTeleportText.Parent = Side5
  1746. Side5_PlayerTeleportText.BackgroundColor3 = Color3.new(1, 1, 1)
  1747. Side5_PlayerTeleportText.BackgroundTransparency = 1
  1748. Side5_PlayerTeleportText.Position = UDim2.new(0.325174838, 0, -0.0162930116, 0)
  1749. Side5_PlayerTeleportText.Size = UDim2.new(0, 200, 0, 39)
  1750. Side5_PlayerTeleportText.Font = Enum.Font.SciFi
  1751. Side5_PlayerTeleportText.FontSize = Enum.FontSize.Size14
  1752. Side5_PlayerTeleportText.Text = "Player Teleports"
  1753. Side5_PlayerTeleportText.TextColor3 = Color3.new(1, 0.470588, 0)
  1754. Side5_PlayerTeleportText.TextScaled = true
  1755. Side5_PlayerTeleportText.TextSize = 14
  1756. Side5_PlayerTeleportText.TextWrapped = true
  1757.  
  1758. PlayerTP_Input.Name = "PlayerTP_Input"
  1759. PlayerTP_Input.Parent = Side5
  1760. PlayerTP_Input.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1761. PlayerTP_Input.BorderColor3 = Color3.new(0, 0, 0)
  1762. PlayerTP_Input.BorderSizePixel = 3
  1763. PlayerTP_Input.Position = UDim2.new(0.0244755223, 0, 0.140562251, 0)
  1764. PlayerTP_Input.Size = UDim2.new(0, 335, 0, 50)
  1765. PlayerTP_Input.Font = Enum.Font.SourceSans
  1766. PlayerTP_Input.FontSize = Enum.FontSize.Size24
  1767. PlayerTP_Input.Text = "Player"
  1768. PlayerTP_Input.TextColor3 = Color3.new(0.862745, 0.392157, 0)
  1769. PlayerTP_Input.TextSize = 21
  1770.  
  1771. PlayerTP_Teleport.Name = "PlayerTP_Teleport"
  1772. PlayerTP_Teleport.Parent = Side5
  1773. PlayerTP_Teleport.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  1774. PlayerTP_Teleport.BorderColor3 = Color3.new(0, 0, 0)
  1775. PlayerTP_Teleport.BorderSizePixel = 3
  1776. PlayerTP_Teleport.Position = UDim2.new(0.626748323, 0, 0.140562236, 0)
  1777. PlayerTP_Teleport.Size = UDim2.new(0, 200, 0, 50)
  1778. PlayerTP_Teleport.Font = Enum.Font.SourceSans
  1779. PlayerTP_Teleport.FontSize = Enum.FontSize.Size14
  1780. PlayerTP_Teleport.Text = "Teleport"
  1781. PlayerTP_Teleport.TextColor3 = Color3.new(1, 0.54902, 0)
  1782. PlayerTP_Teleport.TextSize = 14
  1783.  
  1784. Side4.Name = "Side4"
  1785. Side4.Parent = Motherboard
  1786. Side4.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  1787. Side4.BorderSizePixel = 0
  1788. Side4.Position = UDim2.new(0, 0, 0.133000001, 0)
  1789. Side4.Size = UDim2.new(0, 572, 0, 249)
  1790. Side4.Visible = false
  1791.  
  1792. Side4_Game2.Name = "Side4_Game2"
  1793. Side4_Game2.Parent = Side4
  1794. Side4_Game2.BackgroundColor3 = Color3.new(1, 1, 1)
  1795. Side4_Game2.BackgroundTransparency = 1
  1796. Side4_Game2.Position = UDim2.new(0.325174838, 0, -0.0162930116, 0)
  1797. Side4_Game2.Size = UDim2.new(0, 200, 0, 39)
  1798. Side4_Game2.Font = Enum.Font.SciFi
  1799. Side4_Game2.FontSize = Enum.FontSize.Size14
  1800. Side4_Game2.Text = "Game 2"
  1801. Side4_Game2.TextColor3 = Color3.new(1, 0.470588, 0)
  1802. Side4_Game2.TextScaled = true
  1803. Side4_Game2.TextSize = 14
  1804. Side4_Game2.TextWrapped = true
  1805.  
  1806. Extras_RemoveJewelLasers.Name = "Extras_RemoveJewelLasers"
  1807. Extras_RemoveJewelLasers.Parent = Side4
  1808. Extras_RemoveJewelLasers.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1809. Extras_RemoveJewelLasers.BorderColor3 = Color3.new(0, 0, 0)
  1810. Extras_RemoveJewelLasers.BorderSizePixel = 3
  1811. Extras_RemoveJewelLasers.Position = UDim2.new(0.0280069932, 0, 0.363803208, 0)
  1812. Extras_RemoveJewelLasers.Size = UDim2.new(0, 135, 0, 50)
  1813. Extras_RemoveJewelLasers.Font = Enum.Font.SourceSans
  1814. Extras_RemoveJewelLasers.FontSize = Enum.FontSize.Size28
  1815. Extras_RemoveJewelLasers.Text = "No Jewel lasers"
  1816. Extras_RemoveJewelLasers.TextColor3 = Color3.new(1, 0.470588, 0)
  1817. Extras_RemoveJewelLasers.TextSize = 26
  1818.  
  1819. Extras_RemoveVaultDoor.Name = "Extras_RemoveVaultDoor"
  1820. Extras_RemoveVaultDoor.Parent = Side4
  1821. Extras_RemoveVaultDoor.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1822. Extras_RemoveVaultDoor.BorderColor3 = Color3.new(0, 0, 0)
  1823. Extras_RemoveVaultDoor.BorderSizePixel = 3
  1824. Extras_RemoveVaultDoor.Position = UDim2.new(0.0280069932, 0, 0.564606428, 0)
  1825. Extras_RemoveVaultDoor.Size = UDim2.new(0, 135, 0, 50)
  1826. Extras_RemoveVaultDoor.Font = Enum.Font.SourceSans
  1827. Extras_RemoveVaultDoor.FontSize = Enum.FontSize.Size28
  1828. Extras_RemoveVaultDoor.Text = "No bank vault"
  1829. Extras_RemoveVaultDoor.TextColor3 = Color3.new(1, 0.470588, 0)
  1830. Extras_RemoveVaultDoor.TextSize = 26
  1831.  
  1832. Extras_RemoveDoors.Name = "Extras_RemoveDoors"
  1833. Extras_RemoveDoors.Parent = Side4
  1834. Extras_RemoveDoors.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1835. Extras_RemoveDoors.BorderColor3 = Color3.new(0, 0, 0)
  1836. Extras_RemoveDoors.BorderSizePixel = 3
  1837. Extras_RemoveDoors.Position = UDim2.new(0.0280069932, 0, 0.765409648, 0)
  1838. Extras_RemoveDoors.Size = UDim2.new(0, 135, 0, 50)
  1839. Extras_RemoveDoors.Font = Enum.Font.SourceSans
  1840. Extras_RemoveDoors.FontSize = Enum.FontSize.Size28
  1841. Extras_RemoveDoors.Text = "No doors"
  1842. Extras_RemoveDoors.TextColor3 = Color3.new(1, 0.470588, 0)
  1843. Extras_RemoveDoors.TextSize = 26
  1844.  
  1845. Extras_RemoveBankLasers.Name = "Extras_RemoveBankLasers"
  1846. Extras_RemoveBankLasers.Parent = Side4
  1847. Extras_RemoveBankLasers.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1848. Extras_RemoveBankLasers.BorderColor3 = Color3.new(0, 0, 0)
  1849. Extras_RemoveBankLasers.BorderSizePixel = 3
  1850. Extras_RemoveBankLasers.Position = UDim2.new(0.0280000009, 0, 0.163000003, 0)
  1851. Extras_RemoveBankLasers.Size = UDim2.new(0, 135, 0, 50)
  1852. Extras_RemoveBankLasers.Font = Enum.Font.SourceSans
  1853. Extras_RemoveBankLasers.FontSize = Enum.FontSize.Size28
  1854. Extras_RemoveBankLasers.Text = "No Bank lasers"
  1855. Extras_RemoveBankLasers.TextColor3 = Color3.new(1, 0.470588, 0)
  1856. Extras_RemoveBankLasers.TextSize = 26
  1857.  
  1858. Extras_BuildingsNoclip.Name = "Extras_BuildingsNoclip"
  1859. Extras_BuildingsNoclip.Parent = Side4
  1860. Extras_BuildingsNoclip.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1861. Extras_BuildingsNoclip.BorderColor3 = Color3.new(0, 0, 0)
  1862. Extras_BuildingsNoclip.BorderSizePixel = 3
  1863. Extras_BuildingsNoclip.Position = UDim2.new(0.264020979, 0, 0.363803208, 0)
  1864. Extras_BuildingsNoclip.Size = UDim2.new(0, 135, 0, 50)
  1865. Extras_BuildingsNoclip.Font = Enum.Font.SourceSans
  1866. Extras_BuildingsNoclip.FontSize = Enum.FontSize.Size28
  1867. Extras_BuildingsNoclip.Text = "ConstNoclip"
  1868. Extras_BuildingsNoclip.TextColor3 = Color3.new(1, 0.470588, 0)
  1869. Extras_BuildingsNoclip.TextSize = 26
  1870.  
  1871. Extras_RemoveBuildings.Name = "Extras_RemoveBuildings"
  1872. Extras_RemoveBuildings.Parent = Side4
  1873. Extras_RemoveBuildings.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1874. Extras_RemoveBuildings.BorderColor3 = Color3.new(0, 0, 0)
  1875. Extras_RemoveBuildings.BorderSizePixel = 3
  1876. Extras_RemoveBuildings.Position = UDim2.new(0.264020979, 0, 0.162999988, 0)
  1877. Extras_RemoveBuildings.Size = UDim2.new(0, 135, 0, 50)
  1878. Extras_RemoveBuildings.Font = Enum.Font.SourceSans
  1879. Extras_RemoveBuildings.FontSize = Enum.FontSize.Size28
  1880. Extras_RemoveBuildings.Text = "No buildings"
  1881. Extras_RemoveBuildings.TextColor3 = Color3.new(1, 0.470588, 0)
  1882. Extras_RemoveBuildings.TextSize = 26
  1883.  
  1884. Extras_AutoRob.Name = "Extras_AutoRob"
  1885. Extras_AutoRob.Parent = Side4
  1886. Extras_AutoRob.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1887. Extras_AutoRob.BorderColor3 = Color3.new(0, 0, 0)
  1888. Extras_AutoRob.BorderSizePixel = 3
  1889. Extras_AutoRob.Position = UDim2.new(0.264020979, 0, 0.564606428, 0)
  1890. Extras_AutoRob.Size = UDim2.new(0, 135, 0, 50)
  1891. Extras_AutoRob.Font = Enum.Font.SourceSans
  1892. Extras_AutoRob.FontSize = Enum.FontSize.Size28
  1893. Extras_AutoRob.Text = "AutoRob v1.0"
  1894. Extras_AutoRob.TextColor3 = Color3.new(1, 0.470588, 0)
  1895. Extras_AutoRob.TextSize = 26
  1896.  
  1897. x.Name = "x"
  1898. x.Parent = Side4
  1899. x.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1900. x.BorderColor3 = Color3.new(0, 0, 0)
  1901. x.BorderSizePixel = 3
  1902. x.Position = UDim2.new(0.264020979, 0, 0.765409648, 0)
  1903. x.Size = UDim2.new(0, 135, 0, 50)
  1904. x.Font = Enum.Font.SourceSans
  1905. x.FontSize = Enum.FontSize.Size28
  1906. x.Text = "x"
  1907. x.TextColor3 = Color3.new(1, 0.470588, 0)
  1908. x.TextSize = 26
  1909.  
  1910. x_2.Name = "x"
  1911. x_2.Parent = Side4
  1912. x_2.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1913. x_2.BorderColor3 = Color3.new(0, 0, 0)
  1914. x_2.BorderSizePixel = 3
  1915. x_2.Position = UDim2.new(0.500034928, 0, 0.363803208, 0)
  1916. x_2.Size = UDim2.new(0, 135, 0, 50)
  1917. x_2.Font = Enum.Font.SourceSans
  1918. x_2.FontSize = Enum.FontSize.Size28
  1919. x_2.Text = "x"
  1920. x_2.TextColor3 = Color3.new(1, 0.470588, 0)
  1921. x_2.TextSize = 26
  1922.  
  1923. x_3.Name = "x"
  1924. x_3.Parent = Side4
  1925. x_3.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1926. x_3.BorderColor3 = Color3.new(0, 0, 0)
  1927. x_3.BorderSizePixel = 3
  1928. x_3.Position = UDim2.new(0.500034928, 0, 0.162999988, 0)
  1929. x_3.Size = UDim2.new(0, 135, 0, 50)
  1930. x_3.Font = Enum.Font.SourceSans
  1931. x_3.FontSize = Enum.FontSize.Size28
  1932. x_3.Text = "x"
  1933. x_3.TextColor3 = Color3.new(1, 0.470588, 0)
  1934. x_3.TextSize = 26
  1935.  
  1936. x_4.Name = "x"
  1937. x_4.Parent = Side4
  1938. x_4.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1939. x_4.BorderColor3 = Color3.new(0, 0, 0)
  1940. x_4.BorderSizePixel = 3
  1941. x_4.Position = UDim2.new(0.500034928, 0, 0.564606428, 0)
  1942. x_4.Size = UDim2.new(0, 135, 0, 50)
  1943. x_4.Font = Enum.Font.SourceSans
  1944. x_4.FontSize = Enum.FontSize.Size28
  1945. x_4.Text = "x"
  1946. x_4.TextColor3 = Color3.new(1, 0.470588, 0)
  1947. x_4.TextSize = 26
  1948.  
  1949. x_5.Name = "x"
  1950. x_5.Parent = Side4
  1951. x_5.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1952. x_5.BorderColor3 = Color3.new(0, 0, 0)
  1953. x_5.BorderSizePixel = 3
  1954. x_5.Position = UDim2.new(0.500034928, 0, 0.765409648, 0)
  1955. x_5.Size = UDim2.new(0, 135, 0, 50)
  1956. x_5.Font = Enum.Font.SourceSans
  1957. x_5.FontSize = Enum.FontSize.Size28
  1958. x_5.Text = "x"
  1959. x_5.TextColor3 = Color3.new(1, 0.470588, 0)
  1960. x_5.TextSize = 26
  1961.  
  1962. x_6.Name = "x"
  1963. x_6.Parent = Side4
  1964. x_6.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1965. x_6.BorderColor3 = Color3.new(0, 0, 0)
  1966. x_6.BorderSizePixel = 3
  1967. x_6.Position = UDim2.new(0.736048937, 0, 0.361795187, 0)
  1968. x_6.Size = UDim2.new(0, 135, 0, 50)
  1969. x_6.Font = Enum.Font.SourceSans
  1970. x_6.FontSize = Enum.FontSize.Size28
  1971. x_6.Text = "x"
  1972. x_6.TextColor3 = Color3.new(1, 0.470588, 0)
  1973. x_6.TextSize = 26
  1974.  
  1975. x_7.Name = "x"
  1976. x_7.Parent = Side4
  1977. x_7.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1978. x_7.BorderColor3 = Color3.new(0, 0, 0)
  1979. x_7.BorderSizePixel = 3
  1980. x_7.Position = UDim2.new(0.736048937, 0, 0.162999988, 0)
  1981. x_7.Size = UDim2.new(0, 135, 0, 50)
  1982. x_7.Font = Enum.Font.SourceSans
  1983. x_7.FontSize = Enum.FontSize.Size28
  1984. x_7.Text = "x"
  1985. x_7.TextColor3 = Color3.new(1, 0.470588, 0)
  1986. x_7.TextSize = 26
  1987.  
  1988. x_8.Name = "x"
  1989. x_8.Parent = Side4
  1990. x_8.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  1991. x_8.BorderColor3 = Color3.new(0, 0, 0)
  1992. x_8.BorderSizePixel = 3
  1993. x_8.Position = UDim2.new(0.736048937, 0, 0.566614449, 0)
  1994. x_8.Size = UDim2.new(0, 135, 0, 50)
  1995. x_8.Font = Enum.Font.SourceSans
  1996. x_8.FontSize = Enum.FontSize.Size28
  1997. x_8.Text = "x"
  1998. x_8.TextColor3 = Color3.new(1, 0.470588, 0)
  1999. x_8.TextSize = 26
  2000.  
  2001. x_9.Name = "x"
  2002. x_9.Parent = Side4
  2003. x_9.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  2004. x_9.BorderColor3 = Color3.new(0, 0, 0)
  2005. x_9.BorderSizePixel = 3
  2006. x_9.Position = UDim2.new(0.736048937, 0, 0.767417669, 0)
  2007. x_9.Size = UDim2.new(0, 135, 0, 50)
  2008. x_9.Font = Enum.Font.SourceSans
  2009. x_9.FontSize = Enum.FontSize.Size28
  2010. x_9.Text = "x"
  2011. x_9.TextColor3 = Color3.new(1, 0.470588, 0)
  2012. x_9.TextSize = 26
  2013.  
  2014. NextSide.Name = "NextSide"
  2015. NextSide.Parent = Motherboard
  2016. NextSide.BackgroundColor3 = Color3.new(1, 1, 1)
  2017. NextSide.BackgroundTransparency = 1
  2018. NextSide.Position = UDim2.new(0.819930077, 0, 0.920886099, 0)
  2019. NextSide.Size = UDim2.new(0, 53, 0, 39)
  2020. NextSide.Font = Enum.Font.SourceSans
  2021. NextSide.FontSize = Enum.FontSize.Size14
  2022. NextSide.Text = ">"
  2023. NextSide.TextColor3 = Color3.new(0, 0, 0)
  2024. NextSide.TextScaled = true
  2025. NextSide.TextSize = 14
  2026. NextSide.TextWrapped = true
  2027.  
  2028. PrevSide.Name = "PrevSide"
  2029. PrevSide.Parent = Motherboard
  2030. PrevSide.BackgroundColor3 = Color3.new(1, 1, 1)
  2031. PrevSide.BackgroundTransparency = 1
  2032. PrevSide.Position = UDim2.new(0.0961539, 0, 0.920886099, 0)
  2033. PrevSide.Size = UDim2.new(0, 53, 0, 39)
  2034. PrevSide.Font = Enum.Font.SourceSans
  2035. PrevSide.FontSize = Enum.FontSize.Size14
  2036. PrevSide.Text = "<"
  2037. PrevSide.TextColor3 = Color3.new(0, 0, 0)
  2038. PrevSide.TextScaled = true
  2039. PrevSide.TextSize = 14
  2040. PrevSide.TextWrapped = true
  2041.  
  2042. AutoRob.Name = "AutoRob"
  2043. AutoRob.Parent = Motherboard
  2044. AutoRob.Active = true
  2045. AutoRob.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  2046. AutoRob.BorderSizePixel = 0
  2047. AutoRob.Draggable = true
  2048. AutoRob.Position = UDim2.new(1.09651613, 0, 0.248417735, 0)
  2049. AutoRob.Selectable = true
  2050. AutoRob.Size = UDim2.new(0, 335, 0, 158)
  2051.  
  2052. Frame.Parent = AutoRob
  2053. Frame.BackgroundColor3 = Color3.new(1, 0.54902, 0)
  2054. Frame.BorderSizePixel = 0
  2055. Frame.Position = UDim2.new(-0.00123746507, 0, 0.00234405906, 0)
  2056. Frame.Size = UDim2.new(0, 335, 0, 21)
  2057.  
  2058. Frame_2.Parent = AutoRob
  2059. Frame_2.BackgroundColor3 = Color3.new(1, 0.54902, 0)
  2060. Frame_2.BorderSizePixel = 0
  2061. Frame_2.Position = UDim2.new(0.000618732534, 0, 0.86591655, 0)
  2062. Frame_2.Size = UDim2.new(0, 335, 0, 21)
  2063.  
  2064. Frame_3.Parent = AutoRob
  2065. Frame_3.BackgroundColor3 = Color3.new(0.862745, 0.392157, 0)
  2066. Frame_3.BorderSizePixel = 0
  2067. Frame_3.Position = UDim2.new(0.000618732534, 0, 0.135255441, 0)
  2068. Frame_3.Size = UDim2.new(0, 335, 0, 9)
  2069.  
  2070. TextLabel.Parent = AutoRob
  2071. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  2072. TextLabel.BackgroundTransparency = 1
  2073. TextLabel.Position = UDim2.new(-0.00123746693, 0, -0.0894280672, 0)
  2074. TextLabel.Size = UDim2.new(0, 200, 0, 50)
  2075. TextLabel.Font = Enum.Font.SciFi
  2076. TextLabel.FontSize = Enum.FontSize.Size14
  2077. TextLabel.Text = "AutoRobber"
  2078. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  2079. TextLabel.TextSize = 14
  2080.  
  2081. AutoRob_Close.Name = "AutoRob_Close"
  2082. AutoRob_Close.Parent = AutoRob
  2083. AutoRob_Close.BackgroundColor3 = Color3.new(1, 1, 1)
  2084. AutoRob_Close.BackgroundTransparency = 1
  2085. AutoRob_Close.Position = UDim2.new(0.939061046, 0, -0.0229723752, 0)
  2086. AutoRob_Close.Size = UDim2.new(0, 20, 0, 25)
  2087. AutoRob_Close.Font = Enum.Font.SourceSans
  2088. AutoRob_Close.FontSize = Enum.FontSize.Size14
  2089. AutoRob_Close.Text = "X"
  2090. AutoRob_Close.TextColor3 = Color3.new(0, 0, 0)
  2091. AutoRob_Close.TextScaled = true
  2092. AutoRob_Close.TextSize = 14
  2093. AutoRob_Close.TextWrapped = true
  2094.  
  2095. AutoRob_On.Name = "AutoRob_On"
  2096. AutoRob_On.Parent = AutoRob
  2097. AutoRob_On.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  2098. AutoRob_On.BorderColor3 = Color3.new(0, 0, 0)
  2099. AutoRob_On.BorderSizePixel = 4
  2100. AutoRob_On.Position = UDim2.new(0.0202767905, 0, 0.230192155, 0)
  2101. AutoRob_On.Size = UDim2.new(0, 166, 0, 42)
  2102. AutoRob_On.Font = Enum.Font.SourceSans
  2103. AutoRob_On.FontSize = Enum.FontSize.Size14
  2104. AutoRob_On.Text = "Enable Auto robber"
  2105. AutoRob_On.TextColor3 = Color3.new(1, 0.54902, 0)
  2106. AutoRob_On.TextScaled = true
  2107. AutoRob_On.TextSize = 14
  2108. AutoRob_On.TextWrapped = true
  2109.  
  2110. AutoRob_Off.Name = "AutoRob_Off"
  2111. AutoRob_Off.Parent = AutoRob
  2112. AutoRob_Off.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  2113. AutoRob_Off.BorderColor3 = Color3.new(0, 0, 0)
  2114. AutoRob_Off.BorderSizePixel = 4
  2115. AutoRob_Off.Position = UDim2.new(0.0202767905, 0, 0.559306085, 0)
  2116. AutoRob_Off.Size = UDim2.new(0, 166, 0, 42)
  2117. AutoRob_Off.Font = Enum.Font.SourceSans
  2118. AutoRob_Off.FontSize = Enum.FontSize.Size14
  2119. AutoRob_Off.Text = "Disable Auto robber"
  2120. AutoRob_Off.TextColor3 = Color3.new(0.862745, 0.392157, 0)
  2121. AutoRob_Off.TextScaled = true
  2122. AutoRob_Off.TextSize = 14
  2123. AutoRob_Off.TextWrapped = true
  2124.  
  2125. AutoRob_Status.Name = "AutoRob_Status"
  2126. AutoRob_Status.Parent = AutoRob
  2127. AutoRob_Status.BackgroundColor3 = Color3.new(1, 1, 1)
  2128. AutoRob_Status.BackgroundTransparency = 1
  2129. AutoRob_Status.Position = UDim2.new(0.484455913, 0, 0.379746795, 0)
  2130. AutoRob_Status.Size = UDim2.new(0, 188, 0, 37)
  2131. AutoRob_Status.Font = Enum.Font.SourceSans
  2132. AutoRob_Status.FontSize = Enum.FontSize.Size24
  2133. AutoRob_Status.Text = "AutoRob: Off"
  2134. AutoRob_Status.TextColor3 = Color3.new(1, 0.54902, 0)
  2135. AutoRob_Status.TextSize = 21
  2136. AutoRob_Status.TextWrapped = true
  2137.  
  2138. -- the gui coding, duhh ^ up here is the gui design ^
  2139.  
  2140. Login.Visible = true
  2141. Motherboard.Visible = false
  2142. Open.Visible = false
  2143. Side1.Visible = true
  2144. Side2.Visible = false
  2145. Side3.Visible = false
  2146. Side4.Visible = false
  2147. Side5.Visible = false
  2148.  
  2149. Motherboard.Position = UDim2.new(0.42, -3000,0.2, 0)
  2150. Login.Position = UDim2.new(0.42, -3000,0.2, 0)
  2151.  
  2152. Login:TweenPosition(UDim2.new(0.42, 0,0.2, 0),'Out','Quad',2)
  2153.  
  2154. Login_WhitelistCheck.MouseButton1Down:connect(function()
  2155. --local groupid = game:HttpGet("https://pastebin.com/raw/2MtVvBab", true)
  2156. local localplayer = game:GetService("Players").LocalPlayer
  2157.  
  2158. if not game.PlaceId ~= 606849621 then
  2159. Motherboard.Visible = true
  2160. Login:TweenPosition(UDim2.new(0.42, -3000,0.2, 0),'Out','Quad',2)
  2161. Motherboard:TweenPosition(UDim2.new(0.42, 0,0.2, 0),'Out','Quad',2)
  2162. print("Logged in successfully!")
  2163. else
  2164. game:GetService("CoreGui").JailbreakBasic:Destroy()
  2165. localplayer:Kick("You are not whitelisted!")
  2166. end
  2167. end)
  2168.  
  2169. -- Whitelist routine check v1.1
  2170.  
  2171. function checkWhitelist()
  2172. local groupid = game:HttpGet("https://pastebin.com/raw/2MtVvBab", true)
  2173. local localplayer = game:GetService("Players").LocalPlayer
  2174.  
  2175. if not localplayer:IsInGroup(groupid) then
  2176. print("Leaked by Icey#0010")
  2177. else
  2178. -- Whitelisted players can only get to this point.
  2179. end
  2180. end
  2181.  
  2182. checkWhitelist()
  2183.  
  2184.  
  2185. -- end of whitelist routine check v1.1
  2186.  
  2187. Motherboard_Close.MouseButton1Down:connect(function()
  2188. AutoRob:TweenPosition(UDim2.new(1.062, 0,-10.049, 0),'Out','Quad',2)
  2189. Motherboard:TweenPosition(UDim2.new(0.42, -3000,0.2, 0),'Out','Quad',2)
  2190. wait(2)
  2191. Open.Visible = true
  2192. end)
  2193.  
  2194. Open_Open.MouseButton1Down:connect(function()
  2195. Motherboard:TweenPosition(UDim2.new(0.42, 0,0.2, 0),'Out','Quad',2)
  2196. Open.Visible = false
  2197. end)
  2198.  
  2199. -- sides
  2200.  
  2201. local SideDisplay = Motherboard_DisplaySide
  2202. local Side = 1
  2203.  
  2204. NextSide.MouseButton1Down:connect(function()
  2205. if Side == 1 then
  2206. Side1.Visible = false
  2207. Side2.Visible = true
  2208. Side3.Visible = false
  2209. Side4.Visible = false
  2210. Side5.Visible = false
  2211. Side = 2
  2212. SideDisplay.Text = "2"
  2213. elseif Side == 2 then
  2214. Side1.Visible = false
  2215. Side2.Visible = false
  2216. Side3.Visible = true
  2217. Side4.Visible = false
  2218. Side5.Visible = false
  2219. Side = 3
  2220. SideDisplay.Text = "3"
  2221. elseif Side == 3 then
  2222. Side1.Visible = false
  2223. Side2.Visible = false
  2224. Side3.Visible = false
  2225. Side4.Visible = true
  2226. Side5.Visible = false
  2227. Side = 4
  2228. SideDisplay.Text = "4"
  2229. elseif Side == 4 then
  2230. Side1.Visible = false
  2231. Side2.Visible = false
  2232. Side3.Visible = false
  2233. Side4.Visible = false
  2234. Side5.Visible = true
  2235. Side = 5
  2236. SideDisplay.Text = "5"
  2237. elseif Side == 5 then
  2238. Side1.Visible = true
  2239. Side2.Visible = false
  2240. Side3.Visible = false
  2241. Side4.Visible = false
  2242. Side5.Visible = false
  2243. Side = 1
  2244. SideDisplay.Text = "1"
  2245. end
  2246. end)
  2247.  
  2248. PrevSide.MouseButton1Down:connect(function()
  2249. if Side == 1 then
  2250. Side1.Visible = false
  2251. Side2.Visible = false
  2252. Side3.Visible = false
  2253. Side4.Visible = false
  2254. Side5.Visible = true
  2255. Side = 5
  2256. SideDisplay.Text = "5"
  2257. elseif Side == 2 then
  2258. Side1.Visible = true
  2259. Side2.Visible = false
  2260. Side3.Visible = false
  2261. Side4.Visible = false
  2262. Side5.Visible = false
  2263. Side = 1
  2264. SideDisplay.Text = "1"
  2265. elseif Side == 3 then
  2266. Side1.Visible = false
  2267. Side2.Visible = true
  2268. Side3.Visible = false
  2269. Side4.Visible = false
  2270. Side5.Visible = false
  2271. Side = 2
  2272. SideDisplay.Text = "2"
  2273. elseif Side == 4 then
  2274. Side1.Visible = false
  2275. Side2.Visible = false
  2276. Side3.Visible = true
  2277. Side4.Visible = false
  2278. Side5.Visible = false
  2279. Side = 3
  2280. SideDisplay.Text = "3"
  2281. elseif Side == 5 then
  2282. Side1.Visible = false
  2283. Side2.Visible = false
  2284. Side3.Visible = false
  2285. Side4.Visible = true
  2286. Side5.Visible = false
  2287. Side = 4
  2288. SideDisplay.Text = "4"
  2289. end
  2290. end)
  2291.  
  2292. -- sides end
  2293.  
  2294. Game_InfAmmo.MouseButton1Down:connect(function()
  2295. game:GetService("Players").LocalPlayer.PlayerGui.MainGui.Ammo.Current:Destroy()
  2296. end)
  2297.  
  2298. Game_Keycard.MouseButton1Down:connect(function()
  2299. game:GetService("Players").LocalPlayer.TeamValue.Value = "Police"
  2300. end)
  2301.  
  2302. Game_CarSpeed.MouseButton1Down:connect(function()
  2303. dir = 0
  2304. gs = game.GetService
  2305. gs(game,"RunService").RenderStepped:connect(function()
  2306. for i,v in next,workspace.Vehicles:children() do
  2307. if v.Name ~= "Heli" then
  2308. if v:FindFirstChild("Engine") then
  2309. local bf,cf = v.Engine:FindFirstChild("NewForce"),v:GetPrimaryPartCFrame().lookVector
  2310. if not bf then
  2311. bf = v.Engine:FindFirstChild("BodyForce") or v.Engine:FindFirstChild("VectorForce")
  2312. if bf then
  2313. bf = bf:Clone()
  2314. bf.Parent = v.Engine
  2315. bf.Name = "NewForce"
  2316. end
  2317. end
  2318. if bf then
  2319. local fa = 1
  2320. if v.Name:lower():find("bike") then fa = .3 elseif v.Name:lower():find("bugg") then fa = .5 end
  2321. if v.Seat.PlayerName.Value ~= game:GetService("Players").LocalPlayer.Name then fa = 0 end
  2322. bf.Force = Vector3.new(cf.X*500000*dir*fa,0,cf.Z*500000*dir*fa)
  2323. end
  2324. end
  2325. end
  2326. end
  2327. end)
  2328. val = {
  2329. {Enum.KeyCode.W,1};
  2330. {Enum.KeyCode.S,-1};
  2331. }
  2332. uis = gs(game,"UserInputService")
  2333. chk = function(k)
  2334. for i,v in next,val do
  2335. if v[1]==k.KeyCode then
  2336. return v[2]
  2337. end
  2338. end
  2339. end
  2340. uis.InputBegan:connect(function(k)
  2341. dir = chk(k) or dir
  2342. end)
  2343. uis.InputEnded:connect(function(k)
  2344. if chk(k) == dir then
  2345. dir = 0
  2346. end
  2347. end)
  2348. end)
  2349.  
  2350. Game_InfHealth.MouseButton1Down:connect(function()
  2351. game:GetService("Players").LocalPlayer.Character.Humanoid.Name = 1
  2352. local l = game:GetService("Players").LocalPlayer.Character["1"]:Clone()
  2353. l.Parent = game:GetService("Players").LocalPlayer.Character
  2354. l.Name = "Humanoid"
  2355. wait(0.1)
  2356. game:GetService("Players").LocalPlayer.Character["1"]:Destroy()
  2357. game:GetService("Workspace").CurrentCamera.CameraSubject = game:GetService("Players").LocalPlayer.Character
  2358. game:GetService("Players").LocalPlayer.Character.Animate.Disabled = true
  2359. wait(0.1)
  2360. game:GetService("Players").LocalPlayer.Character.Animate.Disabled = false
  2361. game:GetService("Players").LocalPlayer.Character.Humanoid.DisplayDistanceType = "None"
  2362. end)
  2363.  
  2364. Game_SpawnM4A4.MouseButton1Down:connect(function()
  2365. local hit = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  2366.  
  2367. a = Instance.new("Part", workspace)
  2368. a.Anchored = true
  2369. a.Position = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  2370. a.CanCollide = false
  2371.  
  2372. for i, v in pairs(game:GetService("Workspace").Givers:GetChildren()) do
  2373. if v.Name == "Station" then
  2374. for a, b in pairs(v:GetChildren()) do
  2375. if b:IsA("StringValue") then
  2376. if b.Value == "RifleSWAT" then
  2377. v.CFrame = CFrame.new(hit)
  2378. end
  2379. end
  2380. end
  2381. end
  2382. end
  2383. end)
  2384.  
  2385. Game_SpawnAK47.MouseButton1Down:connect(function()
  2386. local hit = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  2387.  
  2388. a = Instance.new("Part", workspace)
  2389. a.Anchored = true
  2390. a.Position = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  2391. a.CanCollide = false
  2392.  
  2393. for i, v in pairs(game:GetService("Workspace").Givers:GetChildren()) do
  2394. if v.Name == "ShootingRange" then
  2395. for a, b in pairs(v:GetChildren()) do
  2396. if b:IsA("StringValue") then
  2397. if b.Value == "AK47" then
  2398. v.CFrame = CFrame.new(hit)
  2399. end
  2400. end
  2401. end
  2402. end
  2403. end
  2404. end)
  2405.  
  2406. Game_SpawnShotgun.MouseButton1Down:connect(function()
  2407. local hit = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  2408.  
  2409. a = Instance.new("Part", workspace)
  2410. a.Anchored = true
  2411. a.Position = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  2412. a.CanCollide = false
  2413.  
  2414. for i, v in pairs(game:GetService("Workspace").Givers:GetChildren()) do
  2415. if v.Name == "Station" then
  2416. for a, b in pairs(v:GetChildren()) do
  2417. if b:IsA("StringValue") then
  2418. if b.Value == "Shotgun" then
  2419. v.CFrame = CFrame.new(hit)
  2420. end
  2421. end
  2422. end
  2423. end
  2424. end
  2425. end)
  2426.  
  2427. Game_SpawnPistol.MouseButton1Down:connect(function()
  2428. local hit = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  2429.  
  2430. a = Instance.new("Part", workspace)
  2431. a.Anchored = true
  2432. a.Position = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  2433. a.CanCollide = false
  2434.  
  2435. for i, v in pairs(game:GetService("Workspace").Givers:GetChildren()) do
  2436. if v.Name == "Station" then
  2437. for a, b in pairs(v:GetChildren()) do
  2438. if b:IsA("StringValue") then
  2439. if b.Value == "Pistol" then
  2440. v.CFrame = CFrame.new(hit)
  2441. end
  2442. end
  2443. end
  2444. end
  2445. end
  2446. end)
  2447.  
  2448. Game_BTools.MouseButton1Down:connect(function()
  2449. game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, true)
  2450. for index, child in pairs(game:GetService("Workspace"):GetChildren()) do
  2451. if child.ClassName == "Part" then
  2452. child.Locked = false
  2453. end
  2454. if child.ClassName == "MeshPart" then
  2455. child.Locked = false
  2456. end
  2457. if child.ClassName == "UnionOperation" then
  2458. child.Locked = false
  2459. end
  2460. if child.ClassName == "Model" then
  2461. for index, chil in pairs(child:GetChildren()) do
  2462. if chil.ClassName == "Part" then
  2463. chil.Locked = false
  2464. end
  2465. if chil.ClassName == "MeshPart" then
  2466. chil.Locked = false
  2467. end
  2468. if chil.ClassName == "UnionOperation" then
  2469. chil.Locked = false
  2470. end
  2471. if chil.ClassName == "Model" then
  2472. for index, childe in pairs(chil:GetChildren()) do
  2473. if childe.ClassName == "Part" then
  2474. childe.Locked = false
  2475. end
  2476. if childe.ClassName == "MeshPart" then
  2477. childe.Locked = false
  2478. end
  2479. if childe.ClassName == "UnionOperation" then
  2480. childe.Locked = false
  2481. end
  2482. if childe.ClassName == "Model" then
  2483. for index, childeo in pairs(childe:GetChildren()) do
  2484. if childeo.ClassName == "Part" then
  2485. childeo.Locked = false
  2486. end
  2487. if childeo.ClassName == "MeshPart" then
  2488. childeo.Locked = false
  2489. end
  2490. if childeo.ClassName == "UnionOperation" then
  2491. childeo.Locked = false
  2492. end
  2493. if childeo.ClassName == "Model" then
  2494. end
  2495. end
  2496. end
  2497. end
  2498. end
  2499. end
  2500. end
  2501. end
  2502. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  2503. c.BinType = Enum.BinType.Hammer
  2504. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  2505. c.BinType = Enum.BinType.Clone
  2506. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  2507. c.BinType = Enum.BinType.Grab
  2508. end)
  2509.  
  2510. Game_SpawnKeycard.MouseButton1Down:connect(function()
  2511. local hit = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  2512.  
  2513. a = Instance.new("Part", workspace)
  2514. a.Anchored = true
  2515. a.Position = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  2516. a.CanCollide = false
  2517.  
  2518. for i, v in pairs(game:GetService("Workspace").Givers:GetChildren()) do
  2519. if v.Name == "Station" then
  2520. for a, b in pairs(v:GetChildren()) do
  2521. if b:IsA("StringValue") then
  2522. if b.Value == "Key" then
  2523. v.CFrame = CFrame.new(hit)
  2524. end
  2525. end
  2526. end
  2527. end
  2528. end
  2529. end)
  2530.  
  2531. Game_SpawnSword.MouseButton1Down:connect(function()
  2532. local hit = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  2533.  
  2534. a = Instance.new("Part", workspace)
  2535. a.Anchored = true
  2536. a.Position = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  2537. a.CanCollide = false
  2538.  
  2539. for i, v in pairs(game:GetService("Workspace").Givers:GetChildren()) do
  2540. if v.Name == "Station" then
  2541. for a, b in pairs(v:GetChildren()) do
  2542. if b:IsA("StringValue") then
  2543. if b.Value == "Sword" then
  2544. v.CFrame = CFrame.new(hit)
  2545. end
  2546. end
  2547. end
  2548. end
  2549. end
  2550. end)
  2551.  
  2552. Game_SpawnShield.MouseButton1Down:connect(function()
  2553. local hit = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  2554.  
  2555. a = Instance.new("Part", workspace)
  2556. a.Anchored = true
  2557. a.Position = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  2558. a.CanCollide = false
  2559.  
  2560. for i, v in pairs(game:GetService("Workspace").Givers:GetChildren()) do
  2561. if v.Name == "Station" then
  2562. for a, b in pairs(v:GetChildren()) do
  2563. if b:IsA("StringValue") then
  2564. if b.Value == "ShieldSWAT" then
  2565. v.CFrame = CFrame.new(hit)
  2566. end
  2567. end
  2568. end
  2569. end
  2570. end
  2571. end)
  2572.  
  2573. -- walkspeed
  2574.  
  2575. Game_Walkspeed.MouseButton1Down:connect(function()
  2576. local walkspeedplayer = game:GetService("Players").LocalPlayer
  2577. local walkspeedmouse = walkspeedplayer:GetMouse()
  2578.  
  2579. local walkspeedenabled = false
  2580.  
  2581. function x_walkspeed(key)
  2582. if (key == "x") then
  2583. if walkspeedenabled == false then
  2584. _G.WS = 100;
  2585. local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
  2586. Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  2587. Humanoid.WalkSpeed = _G.WS;
  2588. end)
  2589. Humanoid.WalkSpeed = _G.WS;
  2590.  
  2591. walkspeedenabled = true
  2592. elseif walkspeedenabled == true then
  2593. _G.WS = 20;
  2594. local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
  2595. Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  2596. Humanoid.WalkSpeed = _G.WS;
  2597. end)
  2598. Humanoid.WalkSpeed = _G.WS;
  2599.  
  2600. walkspeedenabled = false
  2601. end
  2602. end
  2603. end
  2604.  
  2605. walkspeedmouse.KeyDown:connect(x_walkspeed)
  2606.  
  2607. end)
  2608.  
  2609. -- walkspeed end
  2610.  
  2611. -- gravity
  2612.  
  2613. Game_LowGrav.MouseButton1Down:connect(function()
  2614. local lowgravplayer = game:GetService("Players").LocalPlayer
  2615. local lowgravmouse = lowgravplayer:GetMouse()
  2616.  
  2617. local lowgravity = false
  2618.  
  2619. function n_lowgrav(key)
  2620. if (key == "n") then
  2621. if lowgravity == false then
  2622. game:GetService("Workspace").Gravity = 45
  2623.  
  2624. lowgravity = true
  2625. elseif lowgravity == true then
  2626. game:GetService("Workspace").Gravity = 196.2
  2627.  
  2628. lowgravity = false
  2629. end
  2630. end
  2631. end
  2632.  
  2633. lowgravmouse.KeyDown:connect(n_lowgrav)
  2634.  
  2635. end)
  2636.  
  2637. -- gravity end
  2638.  
  2639. -- noclip
  2640.  
  2641. Game_Noclip.MouseButton1Down:connect(function()
  2642. local noclipplayer = game:GetService("Players").LocalPlayer
  2643. local noclipmouse = noclipplayer:GetMouse()
  2644.  
  2645. local donoclip = false
  2646. local noclip = false
  2647.  
  2648. function b_noclip(key)
  2649. if (key == "b") then
  2650. if noclip == false then
  2651. donoclip = true
  2652.  
  2653. noclip = true
  2654. elseif noclip == true then
  2655. donoclip = false
  2656.  
  2657. noclip = false
  2658. end
  2659. end
  2660. end
  2661.  
  2662. noclipmouse.KeyDown:connect(b_noclip)
  2663.  
  2664. game:GetService("Players").LocalPlayer.Character.Head.Touched:connect(function(obj)
  2665. if obj ~= workspace.Terrain then
  2666. if donoclip == true then
  2667. obj.CanCollide = false
  2668. else
  2669. obj.CanCollide = true
  2670. end
  2671. end
  2672. end)
  2673. end)
  2674.  
  2675. -- noclip end
  2676.  
  2677. Game_InfNitro.MouseButton1Down:connect(function()
  2678. game:GetService("Players").LocalPlayer.PlayerGui.MainGui.Nitro:Destroy() -- very laggy
  2679. game:GetService("Players").LocalPlayer.PlayerGui.ProductGui.Nitro:Destroy() -- aslo very laggy lol
  2680. end)
  2681.  
  2682. -- Player teleports
  2683.  
  2684. PlayerTP_Teleport.MouseButton1Down:connect(function()
  2685. local tp_namedplayer = PlayerTP_Input.Text
  2686. local tp_player = game:GetService("Players")[tp_namedplayer]
  2687. local PLR = game:GetService("Players").LocalPlayer
  2688. local p = PlayerTP_Input.Text
  2689.  
  2690. if tp_player then
  2691. for i = 1,20 do
  2692. wait()
  2693. PLR.Character.HumanoidRootPart.CFrame = tp_player.Character.HumanoidRootPart.CFrame + Vector3.new(0, 3, 0)
  2694. end
  2695. end
  2696. end)
  2697.  
  2698. -- end of that
  2699.  
  2700. -- teleports
  2701.  
  2702. Teleports_PrisonYard.MouseButton1Down:connect(function()
  2703. for i=1,32 do
  2704. wait(.01)
  2705. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1319.25806, 17.7999935, -1760.31873) + Vector3.new(1,0,0)
  2706. end
  2707. end)
  2708.  
  2709. Teleports_PrisonCells.MouseButton1Down:connect(function()
  2710. for i=1,32 do
  2711. wait(.01)
  2712. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1474.2135, -1.0499469, -1760.03662) + Vector3.new(1,0,0)
  2713. end
  2714. end)
  2715.  
  2716. Teleports_PrisonParking.MouseButton1Down:connect(function()
  2717. for i=1,32 do
  2718. wait(.01)
  2719. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1136.45898, 18.0500565, -1519.88574) + Vector3.new(1,0,0)
  2720. end
  2721. end)
  2722.  
  2723. Teleports_PrisonCanteen.MouseButton1Down:connect(function()
  2724. for i=1,32 do
  2725. wait(.01)
  2726. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1405.33716, 18.1500568, -1836.72607) + Vector3.new(1,0,0)
  2727. end
  2728. end)
  2729.  
  2730. Teleports_PoliceHQ1.MouseButton1Down:connect(function()
  2731. for i=1,32 do
  2732. wait(.01)
  2733. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1136.89868, 17.950058, -1585.59912) + Vector3.new(1,0,0)
  2734. end
  2735. end)
  2736.  
  2737. Teleports_PoliceHQ2.MouseButton1Down:connect(function()
  2738. for i=1,32 do
  2739. wait(.01)
  2740. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(738.054688, 38.1523743, 1133.57324) + Vector3.new(1,0,0)
  2741. end
  2742. end)
  2743.  
  2744. Teleports_CriminalsHQ1.MouseButton1Down:connect(function()
  2745. for i=1,32 do
  2746. wait(.01)
  2747. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-221.723099, 17.8924026, 1578.80261) + Vector3.new(1,0,0)
  2748. end
  2749. end)
  2750.  
  2751. Teleports_CriminalsHQ2.MouseButton1Down:connect(function()
  2752. for i=1,32 do
  2753. wait(.01)
  2754. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1650.80896, 49.863636, -1770.66626) + Vector3.new(1,0,0)
  2755. end
  2756. end)
  2757.  
  2758. Teleports_Helipad1.MouseButton1Down:connect(function()
  2759. for i=1,32 do
  2760. wait(.01)
  2761. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1172.6626, 57.6341133, -1590.24841) + Vector3.new(1,0,0)
  2762. end
  2763. end)
  2764.  
  2765. Teleports_Helipad2.MouseButton1Down:connect(function()
  2766. for i=1,32 do
  2767. wait(.01)
  2768. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(737.95105, 69.4690094, 1095.53442) + Vector3.new(1,0,0)
  2769. end
  2770. end)
  2771.  
  2772. Teleports_Garage.MouseButton1Down:connect(function()
  2773. for i=1,32 do
  2774. wait(.01)
  2775. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-352.943146, 17.6151314, 1161.29944) + Vector3.new(1,0,0)
  2776. end
  2777. end)
  2778.  
  2779. Teleports_Jewelry.MouseButton1Down:connect(function()
  2780. for i=1,32 do
  2781. wait(.01)
  2782. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(133.300705, 17.9375954, 1316.42407) + Vector3.new(1,0,0)
  2783. end
  2784. end)
  2785.  
  2786. Teleports_BankVault.MouseButton1Down:connect(function()
  2787. for i=1,32 do
  2788. wait(.01)
  2789. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(18.3854294, 0.765628457, 815.506348) + Vector3.new(1,0,0)
  2790. end
  2791. end)
  2792.  
  2793. Teleports_Apartment.MouseButton1Down:connect(function()
  2794. for i=1,32 do
  2795. wait(.01)
  2796. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(11.979826, 17.9176331, 1091.79907) + Vector3.new(1,0,0)
  2797. end
  2798. end)
  2799.  
  2800. Teleports_GasStation.MouseButton1Down:connect(function()
  2801. for i=1,32 do
  2802. wait(.01)
  2803. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1586.41101, 17.8481865, 709.37262) + Vector3.new(1,0,0)
  2804. end
  2805. end)
  2806.  
  2807. Teleports_DonutShop.MouseButton1Down:connect(function()
  2808. for i=1,32 do
  2809. wait(.01)
  2810. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(257.191101, 17.81828869, -1753.11206) + Vector3.new(1,0,0)
  2811. end
  2812. end)
  2813.  
  2814. Teleports_Camaro.MouseButton1Down:connect(function()
  2815. print("lol, camaro")
  2816. for i=1,32 do
  2817. wait(.01)
  2818. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-954.637329, 18.5706158, -1453.25403) + Vector3.new(1,0,0)
  2819. end
  2820. end)
  2821.  
  2822. Teleports_PoliceCamaro.MouseButton1Down:connect(function()
  2823. for i=1,32 do
  2824. wait(.01)
  2825. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1136.45898, 18.0500565, -1519.88574) + Vector3.new(1,0,0)
  2826. end
  2827. end)
  2828.  
  2829. Teleports_SWATCar.MouseButton1Down:connect(function()
  2830. for i=1,32 do
  2831. wait(.01)
  2832. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1354.98511, 17.9850636, -1535.61816) + Vector3.new(1,0,0)
  2833. end
  2834. end)
  2835.  
  2836. Teleports_PickupTruck.MouseButton1Down:connect(function()
  2837. for i=1,32 do
  2838. wait(.01)
  2839. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1558.00964, 17.7471809, 725.3078) + Vector3.new(1,0,0)
  2840. end
  2841. end)
  2842.  
  2843. Teleports_Model3.MouseButton1Down:connect(function()
  2844. for i=1,32 do
  2845. wait(.01)
  2846. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-132.424164, 17.9162769, 556.760864) + Vector3.new(1,0,0)
  2847. end
  2848. end)
  2849.  
  2850. Teleports_MiniCooper.MouseButton1Down:connect(function()
  2851. for i=1,32 do
  2852. wait(.01)
  2853. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(761.770569, 17.9189262, -1227.94836) + Vector3.new(1,0,0)
  2854. end
  2855. end)
  2856.  
  2857. Teleports_Mustang.MouseButton1Down:connect(function()
  2858. for i=1,32 do
  2859. wait(.01)
  2860. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-98.4087067, 17.6299706, -1723.0249) + Vector3.new(1,0,0)
  2861. end
  2862. end)
  2863.  
  2864. Teleports_DuneBuggy.MouseButton1Down:connect(function()
  2865. for i=1,32 do
  2866. wait(.01)
  2867. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(579.855652, 17.1878471, -458.462708) + Vector3.new(1,0,0)
  2868. end
  2869. end)
  2870.  
  2871. Teleports_Porsche.MouseButton1Down:connect(function()
  2872. for i=1,32 do
  2873. wait(.01)
  2874. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1108.02576, 101.16066, 1295.74146) + Vector3.new(1,0,0)
  2875. end
  2876. end)
  2877.  
  2878. Teleports_Lamborghini.MouseButton1Down:connect(function()
  2879. for i=1,32 do
  2880. wait(.01)
  2881. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(146.568039, 17.6188164, 775.127197) + Vector3.new(1,0,0)
  2882. end
  2883. end)
  2884.  
  2885. Teleports_Ferrari.MouseButton1Down:connect(function()
  2886. for i=1,32 do
  2887. wait(.01)
  2888. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1501.28687, 49.4527283, 1805.06726) + Vector3.new(1,0,0)
  2889. end
  2890. end)
  2891.  
  2892. Teleports_Bugatti.MouseButton1Down:connect(function()
  2893. for i=1,32 do
  2894. wait(.01)
  2895. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(241.109451, 17.6066723, 1362.49316) + Vector3.new(1,0,0)
  2896. end
  2897. end)
  2898.  
  2899. Teleports_MonsterTruck.MouseButton1Down:connect(function()
  2900. for i=1,32 do
  2901. wait(.01)
  2902. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(424.985474, 17.8676395, -1704.00525) + Vector3.new(1,0,0)
  2903. end
  2904. end)
  2905.  
  2906. Teleports_Dirtbike.MouseButton1Down:connect(function()
  2907. for i=1,32 do
  2908. wait(.01)
  2909. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1315.42126, 17.3656254, 376.42572) + Vector3.new(1,0,0)
  2910. end
  2911. end)
  2912.  
  2913. Teleports_ATV.MouseButton1Down:connect(function()
  2914. for i=1,32 do
  2915. wait(.01)
  2916. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1451.35291, 24.6800842, 206.956131) + Vector3.new(1,0,0)
  2917. end
  2918. end)
  2919.  
  2920. Teleports_McLaren.MouseButton1Down:connect(function()
  2921. print("Uhh, this car is not even released to Jailbreak yet lol.")
  2922. end)
  2923.  
  2924. -- end of teleports
  2925.  
  2926. -- game2
  2927.  
  2928. Extras_RemoveBankLasers.MouseButton1Down:connect(function()
  2929. local banklasers = game:GetService("Workspace").Banks:GetChildren()
  2930. banklasers[1].Lasers:Destroy()
  2931. end)
  2932.  
  2933. Extras_RemoveJewelLasers.MouseButton1Down:connect(function()
  2934. local jewelry = game:GetService("Workspace").Jewelrys:GetChildren()
  2935.  
  2936. for i = 1,4 do
  2937. local xd = jewelry[1].Model.BarbedWire
  2938. xd:Destroy()
  2939. end
  2940. end)
  2941.  
  2942. Extras_RemoveVaultDoor.MouseButton1Down:connect(function()
  2943. local banklasers = game:GetService("Workspace").Banks:GetChildren()
  2944. banklasers[1].Door.Model:Destroy()
  2945. end)
  2946.  
  2947. Extras_RemoveDoors.MouseButton1Down:connect(function()
  2948. print("Not done yet, sorry :(")
  2949. end)
  2950.  
  2951. Extras_RemoveBuildings.MouseButton1Down:connect(function()
  2952. game:GetService("Workspace").Buildings:Destroy()
  2953. end)
  2954.  
  2955. local constnocliptrue = true
  2956.  
  2957. Extras_BuildingsNoclip.MouseButton1Down:connect(function()
  2958. if constnocliptrue == true then
  2959. -- true
  2960.  
  2961. elseif constnocliptrue == false then
  2962. -- false
  2963.  
  2964. end
  2965. end)
  2966. -- end of game2
  2967.  
  2968. -- AutoRob v1.0
  2969. local robBankEnabled = false
  2970.  
  2971. function autoRobber1_0()
  2972. function antiAFK()
  2973. local path = game:GetService("Players").LocalPlayer.Character.Humanoid
  2974.  
  2975. for move = 1,6 do
  2976. wait(.2)
  2977. path:Move(Vector3.new(0, 0, 1), true)
  2978. end
  2979. end
  2980.  
  2981. function robBank()
  2982. for ix = 1,4 do
  2983. for i = 1,12 do
  2984. wait(.01)
  2985. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(29.0955772, 18.1654644, 849.59137) + Vector3.new(1,0,0)
  2986. end
  2987. end
  2988.  
  2989. wait(3)
  2990.  
  2991. for i1 = 1,4 do
  2992. for i2 = 1,32 do
  2993. wait(.01)
  2994. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(18.3854294, 0.765628457, 815.506348) + Vector3.new(1,0,0)
  2995. end
  2996. wait(0.5)
  2997. end
  2998.  
  2999. wait(46)
  3000.  
  3001. for i3 = 1,4 do
  3002. for i4 = 1,32 do
  3003. wait(.01)
  3004. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(53.0300369, 141.665527, 827.940857) + Vector3.new(1,0,0)
  3005. end
  3006. wait(0.5)
  3007. end
  3008. antiAFK()
  3009. end
  3010.  
  3011. function isBankOpen()
  3012. for i, v in pairs(game:GetService("Workspace").Banks:GetChildren()) do
  3013. if v.Extra.Light.SurfaceLight.Enabled == true then
  3014. print("Bank is open!")
  3015. robBank()
  3016. else
  3017. print("Bank is closed..")
  3018. end
  3019. end
  3020. end
  3021.  
  3022. while true do
  3023. if robBankEnabled == true then
  3024. wait(1)
  3025. isBankOpen()
  3026. else
  3027. print("AutoRob has been disabled!")
  3028. end
  3029. end
  3030. end
  3031.  
  3032. AutoRob.Position = UDim2.new(1.062, 0,-10.049, 0)
  3033.  
  3034. Extras_AutoRob.MouseButton1Down:connect(function()
  3035. AutoRob:TweenPosition(UDim2.new(1.097, 0,0.248, 0),'Out','Quad',1)
  3036. end)
  3037.  
  3038. AutoRob_On.MouseButton1Down:connect(function()
  3039. AutoRob_Status.Text = "AutoRob: On"
  3040. robBankEnabled = true
  3041. autoRobber1_0()
  3042. end)
  3043.  
  3044. AutoRob_Off.MouseButton1Down:connect(function()
  3045. AutoRob_Status.Text = "AutoRob: Off"
  3046. robBankEnabled = false
  3047. end)
  3048.  
  3049. AutoRob_Close.MouseButton1Down:connect(function()
  3050. AutoRob:TweenPosition(UDim2.new(1.062, 0,-10.049, 0),'Out','Quad',2)
  3051. end)
  3052. end)
  3053.  
  3054. local ExitBtn = CreateButton("Exit", MenuLabel)
  3055. ExitBtn.Position = Guibtn.Position + UDim2.new(0,0,0,40)
  3056. ExitBtn.MouseButton1Click:connect(function()
  3057. main:Destroy()
  3058. script.Disabled = true
  3059. script:Destroy()
  3060. end)
  3061.  
  3062.  
  3063. local BankJewelStatus = Create "TextLabel" {
  3064. BackgroundTransparency = 1,
  3065. TextSize = 8,
  3066. TextColor3 = Color3.new(0,0,0),
  3067. Font = "Legacy",
  3068. TextXAlignment = "Left",
  3069. TextYAlignment = "Top",
  3070. Size = UDim2.new(0,100,0,100),
  3071. Position = UDim2.new(0,10,0,220),
  3072. Text = "Bank:\nJewelry:",
  3073. Parent = Menu
  3074. }
  3075.  
  3076. local BankStatus = BankJewelStatus:Clone()
  3077. BankStatus.Text = "Unknown"
  3078. BankStatus.Size = UDim2.new(0,100,0,100)
  3079. BankStatus.Position = UDim2.new(0,46,0,220)
  3080. BankStatus.Parent = Menu
  3081. BankStatus.TextColor3 = Color3.new(1,0,0)
  3082.  
  3083. local JewelryStatus = BankStatus:Clone()
  3084. JewelryStatus.Text = "Unknown"
  3085. JewelryStatus.Size = UDim2.new(0,100,0,100)
  3086. JewelryStatus.Position = UDim2.new(0,59,0,232)
  3087. JewelryStatus.Parent = Menu
  3088. JewelryStatus.TextColor3 = Color3.new(1,0,0)
  3089.  
  3090. main:TweenPosition(UDim2.new(0.5,-200,0.5,-150))
  3091.  
  3092. local TransparencyTweens = {}
  3093. main.MouseLeave:connect(function()
  3094. spawn(function()
  3095. local bool = false
  3096. local ev = main.MouseEnter:connect(function()
  3097. bool = true
  3098. end)
  3099. wait(1)
  3100. ev:Disconnect()
  3101. if bool then return end
  3102. for i,v in pairs(TransparencyTweens) do
  3103. v:Pause()
  3104. end
  3105. TransparencyTweens = {}
  3106. for i,v in pairs(main:GetDescendants()) do
  3107. if v.Visible then
  3108. local totween = {}
  3109. if v.ClassName:sub(1,4) == "Text" then
  3110. totween.TextTransparency = 0.7
  3111. end
  3112. if v.BackgroundTransparency ~= 1 then
  3113. totween.BackgroundTransparency = 0.7
  3114. end
  3115. TransparencyTweens[#TransparencyTweens + 1] = Tween(v, 0.5, totween)
  3116. end
  3117. end
  3118. main:TweenSize(UDim2.new(0,400,0,50),nil,nil,nil,true)
  3119. end)
  3120. end)
  3121. main.MouseEnter:connect(function()
  3122. for i,v in pairs(TransparencyTweens) do
  3123. v:Pause()
  3124. end
  3125. TransparencyTweens = {}
  3126. for i,v in pairs(main:GetDescendants()) do
  3127. if v.Visible then
  3128. local totween = {}
  3129. if v.ClassName:sub(1,4) == "Text" then
  3130. totween.TextTransparency = 0
  3131. end
  3132. if v.BackgroundTransparency ~= 1 then
  3133. totween.BackgroundTransparency = 0
  3134. end
  3135. TransparencyTweens[#TransparencyTweens + 1] = Tween(v, 0.5, totween)
  3136. end
  3137. end
  3138. main:TweenSize(UDim2.new(0,400,0,300),nil,nil,nil,true)
  3139. end)
  3140.  
  3141. --AutoRob stuff--
  3142. local DuffelBag = game:GetService("MarketplaceService"):PlayerOwnsAsset(plr, 2219040)
  3143. local BankAutoRob = {
  3144. {
  3145. Pos = {51, 18.06, 856.5},
  3146. Yield = 2,
  3147. Status = "Starting the robbery"
  3148. },
  3149. {
  3150. Pos = {29.71, 0.73, 815.25},
  3151. Yield = 15,
  3152. Status = "Opening the vault"
  3153. },
  3154. {
  3155. Pos = {18.37, 0.7659, 822.25},
  3156. Yield = DuffelBag and 50 or 25,
  3157. Status = "Collecting $$$"
  3158. },
  3159. {
  3160. Pos = {10, 18, 784},
  3161. Status = "Finishing the robbery"
  3162. }
  3163. }
  3164.  
  3165. local function Tp(...)
  3166. local char = plr.Character
  3167. for i=1,2 do
  3168. wait()
  3169. char:WaitForChild'HumanoidRootPart'.CFrame = CFrame.new(...)
  3170. end
  3171. end
  3172.  
  3173. function RobTheBank()
  3174. for _,v in pairs(BankAutoRob) do
  3175. Tp(unpack(v.Pos))
  3176. wait(v.Yield)
  3177. end
  3178. end
  3179.  
  3180. --Bank notification--
  3181. pcall(function()
  3182. local Bank = workspace:FindFirstChild("Banks"):GetChildren()[1]
  3183. local Info = Bank.Extra.Sign.Decal
  3184. Info:GetPropertyChangedSignal("Transparency"):Connect(function()
  3185. if Info.Transparency ~= 0 then
  3186. BankStatus.Text = "Open"
  3187. BankStatus.TextColor3 = Color3.new(0,1,0)
  3188. BankAutoRobBtn.BackgroundColor3 = Color3.new(0,1,0)
  3189. local cb = Instance.new("BindableFunction")
  3190. cb.OnInvoke = function(arg)
  3191. if arg == "Teleport" then
  3192. JailbreakTp(10, 18, 784)
  3193. elseif arg == "AutoRob" then
  3194. RobTheBank()
  3195. end
  3196. end
  3197. game:GetService("StarterGui"):SetCore("SendNotification",{
  3198. Title = "Bank is ready!",
  3199. Text = "Bank is ready!",
  3200. Duration = 15,
  3201. Button1 = "Dismiss",
  3202. Button2 = (Vector3.new(Info.Parent.Position.X,0,Info.Parent.Position.Z) - Vector3.new(plr.Character.HumanoidRootPart.Position.X,0,plr.Character.HumanoidRootPart.Position.Z)).magnitude < 150 and "AutoRob" or "Teleport",
  3203. Callback = cb
  3204. })
  3205. else
  3206. BankStatus.Text = "Closed"
  3207. BankStatus.TextColor3 = Color3.new(1,0,0)
  3208. BankAutoRobBtn.BackgroundColor3 = Color3.new(1,0,0)
  3209. end
  3210. end)
  3211. BankStatus.Text = Info.Transparency == 0 and "Closed" or "Open"
  3212. BankStatus.TextColor3 = Info.Transparency == 0 and Color3.new(1,0,0) or Color3.new(0,1,0)
  3213. BankAutoRobBtn.BackgroundColor3 = Info.Transparency == 0 and Color3.new(1,0,0) or Color3.new(0,1,0)
  3214. end)
  3215. --Jewelry notification--
  3216. pcall(function()
  3217. local Jewelry = workspace:FindFirstChild("Jewelrys"):GetChildren()[1]
  3218. local Info = Jewelry.Extra.Sign.Decal
  3219. Info:GetPropertyChangedSignal("Transparency"):Connect(function()
  3220. if Info.Transparency ~= 0 then
  3221. JewelryStatus.Text = "Open"
  3222. JewelryStatus.TextColor3 = Color3.new(0,1,0)
  3223. BankStatus.TextColor3 = Color3.new(0,1,0)
  3224. local cb = Instance.new("BindableFunction")
  3225. cb.OnInvoke = function(arg)
  3226. if arg == "Teleport" then
  3227. JailbreakTp(142, 18, 1365)
  3228. end
  3229. end
  3230. game:GetService("StarterGui"):SetCore("SendNotification",{
  3231. Title = "Jewelry is ready!",
  3232. Text = "Jewelry is ready!",
  3233. Duration = 15,
  3234. Button1 = "Dismiss",
  3235. Button2 = "Teleport",
  3236. Callback = cb
  3237. })
  3238. else
  3239. JewelryStatus.Text = "Closed"
  3240. JewelryStatus.TextColor3 = Color3.new(1,0,0)
  3241. end
  3242. end)
  3243. JewelryStatus.Text = Info.Transparency == 0 and "Closed" or "Open"
  3244. JewelryStatus.TextColor3 = Info.Transparency == 0 and Color3.new(1,0,0) or Color3.new(0,1,0)
  3245. end)
Add Comment
Please, Sign In to add comment