Guest User

jail

a guest
Aug 7th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 224.00 KB | None | 0 0
  1. -- FUCK JAIlBREAK V.1
  2. -- GUI BY KIET PHAM
  3.  
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local Frame = Instance.new("Frame")
  6. local TextLabel = Instance.new("TextLabel")
  7. local jailgui = Instance.new("TextButton")
  8. local unjail = Instance.new("TextButton")
  9. local redjail = Instance.new("TextButton")
  10. local auto = Instance.new("TextButton")
  11. local TextButton = Instance.new("TextButton")
  12.  
  13. -- SCRIPT
  14.  
  15. ScreenGui.Parent = game.CoreGui
  16.  
  17. Frame.Parent = ScreenGui
  18. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  19. Frame.BorderSizePixel = 3
  20. Frame.Position = UDim2.new(0.356842101, 0, 0.348837197, 0)
  21. Frame.Size = UDim2.new(0, 271, 0, 181)
  22. Frame.Active = true
  23. Frame.Draggable = true
  24.  
  25. TextLabel.Parent = Frame
  26. TextLabel.BackgroundColor3 = Color3.new(0.333333, 0.333333, 0.498039)
  27. TextLabel.BorderSizePixel = 3
  28. TextLabel.Size = UDim2.new(0, 271, 0, 46)
  29. TextLabel.Font = Enum.Font.Cartoon
  30. TextLabel.Text = "Fuck Jailbreak V.1"
  31. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  32. TextLabel.TextSize = 29
  33. TextLabel.TextWrapped = true
  34.  
  35. jailgui.Name = "jailgui"
  36. jailgui.Parent = Frame
  37. jailgui.BackgroundColor3 = Color3.new(0.333333, 0.333333, 0.498039)
  38. jailgui.BorderSizePixel = 3
  39. jailgui.Position = UDim2.new(0.0489609689, 0, 0.371156931, 0)
  40. jailgui.Size = UDim2.new(0, 113, 0, 48)
  41. jailgui.Font = Enum.Font.Cartoon
  42. jailgui.Text = "Jailbreak Gui"
  43. jailgui.TextColor3 = Color3.new(1, 1, 1)
  44. jailgui.TextScaled = true
  45. jailgui.TextSize = 14
  46. jailgui.TextWrapped = true
  47.  
  48. jailgui.MouseButton1Down:connect(function()
  49. local plr = game:GetService("Players").LocalPlayer
  50.  
  51. local TpMethod = 1
  52.  
  53. function JailbreakTp(...)
  54. getfenv()["TpMethod" .. TpMethod](...)
  55. end
  56.  
  57. function TpMethod1(...)
  58. local char = plr.Character
  59. local root = char.HumanoidRootPart
  60. local args = {...}
  61. for i=0,1,0.05 do
  62. wait()
  63. root.CFrame = root.CFrame:lerp(CFrame.new(unpack(args,1,3)), i)
  64. end
  65. end
  66.  
  67. function TpMethod2(...)
  68. local args = {...}
  69. local char = plr.Character
  70. local target = Vector3.new(unpack(args,1,3))
  71. local dist = (char:WaitForChild"HumanoidRootPart".Position - target).magnitude
  72. dist = math.floor(dist / 100) + 1
  73. for i=0,dist * 4 do
  74. wait()
  75. char:MoveTo(Vector3.new(...))
  76. end
  77. if args[#args] == true then
  78. wait()
  79. char:WaitForChild'HumanoidRootPart'.CFrame = CFrame.new(unpack(args,1,#args - 1))
  80. end
  81. end
  82.  
  83. function Tween(obj, t, properties)
  84. local TweenService = game:GetService("TweenService")
  85. local tweenInfo = TweenInfo.new(t,Enum.EasingStyle.Linear,Enum.EasingDirection.In,0,false,0)
  86. local tween = TweenService:Create(obj,tweenInfo,properties)
  87. tween:Play()
  88. return tween
  89. end
  90.  
  91. local Tracers = {}
  92.  
  93. local function AddLasso(p,team)
  94. if not Tracers[team.Name] then return end
  95. if p == plr then return end
  96. spawn(function()
  97. if p.Character then
  98. local l = Instance.new("SelectionPartLasso")
  99. l.Parent = p.Character
  100. l.Humanoid = p.Character:FindFirstChildOfClass"Humanoid"
  101. l.Part = plr.Character:WaitForChild"HumanoidRootPart"
  102. l.Visible = true
  103. l.Color3 = team.TeamColor.Color
  104. for i=0,5 do
  105. local sg = Instance.new("SurfaceGui")
  106. sg.Face = i
  107. sg.Parent = p.Character
  108. sg.Adornee = p.Character:FindFirstChild"HumanoidRootPart"
  109. sg.AlwaysOnTop = true
  110. local f = Instance.new("Frame", sg)
  111. f.Size = UDim2.new(1,0,1,0)
  112. f.BorderSizePixel = 0
  113. f.BackgroundColor3 = team.TeamColor.Color
  114. f.BackgroundTransparency = 0.5
  115. end
  116. end
  117. end)
  118. end
  119.  
  120. local function RemoveLasso(p)
  121. if not p.Character then return end
  122. for i,v in pairs(p.Character:GetDescendants()) do
  123. if v.ClassName:find("Selection") or v.ClassName == "SurfaceGui" then
  124. v:Destroy()
  125. end
  126. end
  127. end
  128.  
  129. for _,team in pairs(game:GetService("Teams"):GetChildren()) do
  130. team.PlayerAdded:connect(function(p)
  131. AddLasso(p,team)
  132. end)
  133.  
  134. team.PlayerRemoved:connect(function(p)
  135. RemoveLasso(p)
  136. end)
  137. end
  138.  
  139. function ToggleTracers(team, bool)
  140. Tracers[team] = bool
  141. local t = game:GetService("Teams"):FindFirstChild(team)
  142. if not t then return end
  143. for i,v in pairs(t:GetPlayers()) do
  144. if bool then
  145. AddLasso(v,t)
  146. else
  147. RemoveLasso(v)
  148. end
  149. end
  150. end
  151.  
  152. local function CharAdded(plr, char)
  153. if Tracers[tostring(plr.Team)] then
  154. AddLasso(plr,plr.Team)
  155. end
  156. end
  157.  
  158. local function PlrAdded(plr)
  159. plr.CharacterAdded:connect(function(char)
  160. CharAdded(plr, char)
  161. end)
  162. if plr.Character then
  163. CharAdded(plr, plr.Character)
  164. end
  165. end
  166.  
  167. game:GetService("Players").PlayerAdded:connect(PlrAdded)
  168. for _,v in pairs(game:GetService("Players"):GetPlayers()) do
  169. PlrAdded(v)
  170. end
  171.  
  172. --Creating Gui--
  173.  
  174. local function Create(classname)
  175. return function(t)
  176. local ins = Instance.new(classname)
  177. for i,v in pairs(t) do
  178. ins[i] = v
  179. end
  180. return ins
  181. end
  182. end
  183.  
  184. --local parent = game:GetService("CoreGui"):WaitForChild("RobloxGui")
  185. local main = Create "Frame" {
  186. Active = true,
  187. ClipsDescendants = true,
  188. Draggable = true,
  189. BackgroundColor3 = Color3.new(1,1,1),
  190. BorderSizePixel = 0,
  191. Size = UDim2.new(0,400,0,300),
  192. Position = UDim2.new(0.5,-200,0,-300),
  193. BackgroundTransparency = 1,
  194. Parent = Instance.new("ScreenGui", plr.PlayerGui)--parent
  195. }
  196. do
  197. local effect = Create "Frame" {
  198. Parent = main,
  199. Size = UDim2.new(1,0,0,50),
  200. BackgroundColor3 = Color3.fromRGB(85,170,255),
  201. BorderSizePixel = 0,
  202. ClipsDescendants = true,
  203. }
  204. local lb = Create "TextLabel" {
  205. Parent = effect,
  206. Size = UDim2.new(1,0,1,0),
  207. BackgroundTransparency = 1,
  208. BorderSizePixel = 0,
  209. TextSize = 30,
  210. TextColor3 = Color3.new(1,1,1),
  211. TextXAlignment = "Left",
  212. Font = "SourceSansBold",
  213. Text = "Jailbreak GUI",
  214. ZIndex = 2,
  215. }
  216. local function GTween()
  217. lb:TweenPosition(UDim2.new(1,10,0,0), nil,nil,3,true,function(ts)
  218. if ts == Enum.TweenStatus.Completed then
  219. lb.Position = UDim2.new(0,0 - lb.TextBounds.X - 2,0,0)
  220. GTween()
  221. end
  222. end)
  223. end
  224. GTween()
  225. end
  226.  
  227. local Menu = Create "Frame" {
  228. BackgroundColor3 = Color3.new(1,1,1),
  229. BorderSizePixel = 0,
  230. Position = UDim2.new(0,0,0,50),
  231. Size = UDim2.new(1,0,1,-50),
  232. Parent = main,
  233. }
  234.  
  235. local MenuLabel = Create "TextLabel" {
  236. BackgroundTransparency = 1,
  237. BorderSizePixel = 0,
  238. TextColor3 = Color3.new(0,0,0),
  239. TextSize = 20,
  240. Font = "SourceSans",
  241. Text = "Made by refrfgrtgef for v3rm\n(won't tell you my roblox name)",
  242. TextWrapped = true,
  243. Size = UDim2.new(1,0,0,50),
  244. Parent = Menu
  245. }
  246.  
  247. local function CreateButton(text,parent)
  248. return Create "TextButton" {
  249. Active = true,
  250. AutoButtonColor = true,
  251. BackgroundColor3 = Color3.fromRGB(0,155,232),
  252. BorderSizePixel = 1,
  253. Size = UDim2.new(0,100,0,30),
  254. Font = "SourceSansBold",
  255. TextColor3 = Color3.new(1,1,0),
  256. TextSize = 20,
  257. Text = text,
  258. Parent = parent
  259. }
  260. end
  261.  
  262. local function CreateFrame(name)
  263. local f = Create "Frame" {
  264. BackgroundColor3 = Color3.new(1,1,1),
  265. BorderSizePixel = 0,
  266. Position = UDim2.new(0,0,0,50),
  267. Size = UDim2.new(1,0,1,-50),
  268. Visible = false,
  269. }
  270. local lb = Create "TextLabel" {
  271. BackgroundTransparency = 1,
  272. BorderSizePixel = 0,
  273. TextSize = 20,
  274. TextColor3 = Color3.new(1,1,0),
  275. Position = UDim2.new(0,0,0,5),
  276. Text = name,
  277. Parent = f,
  278. TextXAlignment = "Center",
  279. TextYAlignment = "Center",
  280. Size = UDim2.new(1,0,0,30),
  281. }
  282. local exit = CreateButton("Back", f)
  283. exit.Position = UDim2.new(0.5,-50,1,-45)
  284. exit.MouseButton1Click:connect(function()
  285. Menu.Visible = true
  286. f.Visible = false
  287. ActiveFrame = Menu
  288. end)
  289. return f
  290. end
  291.  
  292. ActiveFrame = Menu
  293.  
  294. local TeleportsFrame = CreateFrame("Teleports")
  295. TeleportsFrame.Parent = main
  296.  
  297. local BankIn = CreateButton("Bank (In)", TeleportsFrame)
  298. BankIn.Position = UDim2.new(0,15,0,40)
  299. BankIn.Size = UDim2.new(0,80,0,30)
  300. BankIn.MouseButton1Click:connect(function()
  301. JailbreakTp(32,0.715,814, true)
  302. end)
  303.  
  304. local BankOut = CreateButton("Bank (Out)", TeleportsFrame)
  305. BankOut.Position = UDim2.new(0,105,0,40)
  306. BankOut.MouseButton1Click:connect(function()
  307. JailbreakTp(10, 18, 784)
  308. end)
  309.  
  310. local JailIn = CreateButton("Jail (In)", TeleportsFrame)
  311. JailIn.Position = UDim2.new(0,215,0,40)
  312. JailIn.Size = UDim2.new(0,80,0,30)
  313. JailIn.MouseButton1Click:connect(function()
  314. JailbreakTp(-1310, 18, -1658)
  315. end)
  316.  
  317. local JailOut = CreateButton("Jail (Out)", TeleportsFrame)
  318. JailOut.Position = UDim2.new(0,305,0,40)
  319. JailOut.Size = UDim2.new(0,80,0,30)
  320. JailOut.MouseButton1Click:connect(function()
  321. JailbreakTp(-1133, 18, -1355)
  322. end)
  323.  
  324. local Garage = CreateButton("Garage", TeleportsFrame)
  325. Garage.Position = UDim2.new(0,335,0,120)--UDim2.new(0,10,0,80)
  326. Garage.Size = UDim2.new(0,60,0,30)
  327. Garage.MouseButton1Click:connect(function()
  328. JailbreakTp(-352, 23, 1175)
  329. end)
  330.  
  331. local JewelIn = CreateButton("Jewelry (In)", TeleportsFrame)
  332. JewelIn.Position = UDim2.new(0,25,0,80)
  333. JewelIn.MouseButton1Click:connect(function()
  334. JailbreakTp(133, 18, 1320, true)
  335. end)
  336.  
  337. local JewelOut = CreateButton("Jewelry (Out)", TeleportsFrame)
  338. JewelOut.Position = UDim2.new(0,135,0,80)
  339. JewelOut.Size = UDim2.new(0,115,0,30)
  340. JewelOut.MouseButton1Click:connect(function()
  341. JailbreakTp(142, 18, 1365)
  342. end)
  343.  
  344. local Crim1 = CreateButton("Crim base 1", TeleportsFrame)
  345. Crim1.Position = UDim2.new(0,5,0,120)
  346. Crim1.MouseButton1Click:connect(function()
  347. JailbreakTp(-226, 18, 1590, true)
  348. end)
  349.  
  350. local Crim2 = CreateButton("Crim base 2", TeleportsFrame)
  351. Crim2.Position = UDim2.new(0,115,0,120)
  352. Crim2.MouseButton1Click:connect(function()
  353. JailbreakTp(true, 1637, 50, -1768, true)
  354. end)
  355.  
  356. local Donut = CreateButton("Donut Shop", TeleportsFrame)
  357. Donut.Position = UDim2.new(0,225,0,120)
  358. Donut.MouseButton1Click:connect(function()
  359. JailbreakTp(268, 18, -1760, true)
  360. end)
  361.  
  362. local Gas = CreateButton("Gas Station", TeleportsFrame)
  363. Gas.Position = UDim2.new(0,260,0,80)
  364. Gas.MouseButton1Click:connect(function()
  365. JailbreakTp(-1583, 18, 724, true)
  366. end)
  367.  
  368. local TeleportsBtn = CreateButton("Teleports", MenuLabel)
  369. TeleportsBtn.Position = UDim2.new(0.5,-50,0,60)
  370. TeleportsBtn.MouseButton1Click:connect(function()
  371. TeleportsFrame.Visible = true
  372. Menu.Visible = false
  373. ActiveFrame = TeleportsFrame
  374. end)
  375.  
  376. local StuffFrame = CreateFrame("Stuff")
  377. StuffFrame.Parent = main
  378.  
  379. local StuffBtn = CreateButton("Stuff", MenuLabel)
  380. StuffBtn.Position = TeleportsBtn.Position + UDim2.new(0,0,0,40)
  381. StuffBtn.MouseButton1Click:connect(function()
  382. StuffFrame.Visible = true
  383. Menu.Visible = false
  384. ActiveFrame = StuffFrame
  385. end)
  386.  
  387. local RemoveDoors = CreateButton("Remove Doors", StuffFrame)
  388. RemoveDoors.Size = UDim2.new(0,120,0,30)
  389. RemoveDoors.Position = UDim2.new(0,10,0,50)
  390. RemoveDoors.MouseButton1Click:connect(function()
  391. local doors = workspace:FindFirstChild("Doors")
  392. if not doors then return end
  393. for i,v in pairs(doors:GetChildren()) do
  394. v:Destroy()
  395. end
  396. end)
  397.  
  398. local Platform = CreateButton("Platform", StuffFrame)
  399. Platform.Position = UDim2.new(0.5,-60,0,50)
  400. Platform.MouseButton1Click:connect(function()
  401. local p = Instance.new("Part", workspace)
  402. p.Size = Vector3.new(30,0.5,30)
  403. p.Anchored = true
  404. p.Position = plr.Character.HumanoidRootPart.Position + Vector3.new(0,15,0)
  405. plr.Character:MoveTo(p.Position + Vector3.new(0,1,0))
  406. spawn(function()
  407. while p.Parent do
  408. wait(1)
  409. if (plr.Character.HumanoidRootPart.Position - p.Position).magnitude > 20 then
  410. p:Destroy()
  411. end
  412. end
  413. end)
  414. end)
  415.  
  416. local Tracers = CreateButton("Tracers: None", StuffFrame)
  417. Tracers.Size = UDim2.new(0,140,0,30)
  418. Tracers.Position = UDim2.new(1,-150,0,50)
  419. Tracers.MouseButton1Click:connect(function()
  420. local curr = Tracers.Text:sub(10)
  421. if curr ~= "None" then
  422. ToggleTracers(curr, false)
  423. end
  424. local teams = {"None", "Police", "Criminal", "Prisoner"}
  425. local new = ""
  426. for i,v in pairs(teams) do
  427. if v == curr then
  428. new = teams[i + 1] or teams[1]
  429. end
  430. end
  431. if new ~= "None" then
  432. ToggleTracers(new, true)
  433. end
  434. Tracers.Text = "Tracers: " .. new
  435. end)
  436.  
  437. local BtoolActive = false
  438. local m = plr:GetMouse()
  439.  
  440. local Btool = CreateButton("Btool: Off", StuffFrame)
  441. Btool.Position = UDim2.new(0,10,0,90)
  442. Btool.MouseButton1Click:connect(function()
  443. spawn(function()
  444. local status = Btool.Text:sub(8)
  445. local newstatus = status == "On" and "Off" or status == "Off" and "On"
  446. Btool.Text = "Btool: " .. newstatus
  447. BtoolActive = newstatus == "On" and true or newstatus == "Off" and false
  448. if BtoolActive then
  449. local sb = Instance.new("SelectionBox", workspace.CurrentCamera)
  450. local ev = m.Button1Down:connect(function()
  451. if m.Target then
  452. m.Target:Destroy()
  453. end
  454. end)
  455. while BtoolActive do
  456. wait()
  457. if m.Target then
  458. sb.Adornee = m.Target
  459. end
  460. end
  461. ev:Disconnect()
  462. else
  463. local sb = workspace.CurrentCamera:FindFirstChildOfClass("SelectionBox")
  464. if sb then sb:Destroy() end
  465. end
  466. end)
  467. end)
  468.  
  469. local ClickTpEnabled = false
  470. m.Button1Down:connect(function()
  471. if ClickTpEnabled and m.Target then
  472. plr.Character:MoveTo(m.Hit.p)
  473. end
  474. end)
  475.  
  476. local ClickTp = CreateButton("ClickTp: Off", StuffFrame)
  477. ClickTp.Position = UDim2.new(0,120,0,90)
  478. ClickTp.MouseButton1Click:connect(function()
  479. spawn(function()
  480. local status = ClickTp.Text:sub(10)
  481. local newstatus = status == "Off" and "On" or status == "On" and "Off"
  482. ClickTpEnabled = newstatus == "On" and true or newstatus == "Off" and false
  483. ClickTp.Text = "ClickTp: " .. newstatus
  484. local ind = Create "Part" {
  485. Anchored = true,
  486. CanCollide = false,
  487. Transparency = 0.3,
  488. Size = Vector3.new(1.2,0.3,1.2),
  489. BrickColor = BrickColor.Green(),
  490. Parent = workspace
  491. }
  492. Instance.new("CylinderMesh", ind)
  493. m.TargetFilter = ind
  494. local beam = Create "Part" {
  495. Anchored = true,
  496. CanCollide = false,
  497. Transparency = 0.3,
  498. BrickColor = BrickColor.Green(),
  499. TopSurface = "Smooth",
  500. BottomSurface = "Smooth",
  501. Size = Vector3.new(0.3,0.3,1),
  502. Parent = workspace
  503.  
  504. }
  505. while ClickTpEnabled do
  506. wait()
  507. ind.CFrame = CFrame.new(m.Hit.p)
  508. local humrootpos = plr.Character:WaitForChild'HumanoidRootPart'.Position
  509. local dist = (Vector3.new(m.Hit.p.X,0,m.Hit.p.Z) - Vector3.new(humrootpos.X,0,humrootpos.Z)).magnitude
  510. if dist > 150 then
  511. ind.BrickColor,beam.BrickColor = BrickColor.Red(),BrickColor.Red()
  512. else
  513. ind.BrickColor,beam.BrickColor = BrickColor.Green(),BrickColor.Green()
  514. end
  515. beam.Size = Vector3.new(0.3,0.3,dist - 0.5)
  516. beam.CFrame = CFrame.new(plr.Character:WaitForChild'HumanoidRootPart'.Position, m.Hit.p) * CFrame.new(0,0,-dist/2 + 0.5)
  517. end
  518. ind:Destroy()
  519. beam:Destroy()
  520. end)
  521. end)
  522.  
  523. local Gravity = CreateButton("Low Gravity", StuffFrame)
  524. Gravity.Position = UDim2.new(0,230,0,90)
  525. Gravity.Size = UDim2.new(0,130,0,30)
  526. Gravity.MouseButton1Click:connect(function()
  527. local t = Gravity.Text == "Low Gravity" and true or false
  528. workspace.Gravity = t and 50 or 196.2
  529. Gravity.Text = t and "Normal Gravity" or "Low Gravity"
  530. end)
  531.  
  532. local InfiniteJumpEnabled = false
  533. game:GetService("UserInputService").JumpRequest:connect(function()
  534. if InfiniteJumpEnabled then
  535. game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
  536. end
  537. end)
  538. local InfiniteJump = CreateButton("Infinite Jump: Off", StuffFrame)
  539. InfiniteJump.Position = UDim2.new(0,10,0,130)
  540. InfiniteJump.Size = UDim2.new(0,150,0,30)
  541. InfiniteJump.MouseButton1Click:connect(function()
  542. local state = InfiniteJump.Text:sub(string.len("Infinite Jump: ") + 1) --too lazy to count lol
  543. local new = state == "Off" and "On" or state == "On" and "Off"
  544. InfiniteJumpEnabled = new == "On"
  545. InfiniteJump.Text = "Infinite Jump: " .. new
  546. end)
  547.  
  548. local Giver = nil
  549. local ItemsGiver = CreateButton("Items Giver", StuffFrame)
  550. ItemsGiver.Position = UDim2.new(0,170,0,130)
  551. ItemsGiver.MouseButton1Click:connect(function()
  552. if not workspace:FindFirstChild("Givers") then return end
  553. if Giver then
  554. for i,v in pairs(Giver) do
  555. v.ClickDetector.Parent = v.OriginalParent
  556. v.Event:Disconnect()
  557. end
  558. getmetatable(Giver):Destroy()
  559. end
  560. Giver = {}
  561. local g = Giver
  562. local p = Instance.new("Part", workspace)
  563. p.Anchored = true
  564. p.CanCollide = false
  565. p.CFrame = plr.Character:WaitForChild"HumanoidRootPart".CFrame
  566. setmetatable(Giver, {__metatable = p})
  567. for i,v in pairs(workspace.Givers:GetChildren()) do
  568. local cd = v:FindFirstChildOfClass"ClickDetector"
  569. if cd then
  570. local newt = {}
  571. newt.ClickDetector = cd
  572. newt.OriginalParent = v
  573. cd.Parent = p
  574. newt.Event = cd.MouseClick:connect(function()
  575. cd.Parent = v
  576. end)
  577. table.insert(Giver, newt)
  578. end
  579. end
  580. spawn(function()
  581. wait(10)
  582. if Giver == g then
  583. Giver = nil
  584. for i,v in pairs(g) do
  585. v.ClickDetector.Parent = v.OriginalParent
  586. v.Event:Disconnect()
  587. end
  588. getmetatable(g):Destroy()
  589. end
  590. end)
  591. end)
  592.  
  593. local BankAutoRobBtn = CreateButton("Bank AutoRob", StuffFrame)
  594. BankAutoRobBtn.Position = UDim2.new(0,280,0,130)
  595. BankAutoRobBtn.Size = UDim2.new(0,115,0,30)
  596. BankAutoRobBtn.BackgroundColor3 = Color3.new(1,0,0)
  597. BankAutoRobBtn.MouseButton1Click:connect(function()
  598. local Bank = workspace:FindFirstChild("Banks"):GetChildren()[1]
  599. local Info = Bank.Extra.Sign
  600. if Info.Decal.Transparency == 0 then
  601. game:GetService("StarterGui"):SetCore("SendNotification",{
  602. Title = "Bank is closed!",
  603. Text = "You need to wait for the bank to open!",
  604. Duration = 7,
  605. Button1 = "Dismiss",
  606. })
  607. return
  608. end
  609. local bankpos = Vector3.new(Info.Position.X,0,Info.Position.Z)
  610. local root = plr.Character.HumanoidRootPart
  611. local plrpos = Vector3.new(root.Position.X,0,root.Position.Z)
  612.  
  613. if (bankpos - plrpos).magnitude > 150 then
  614. local cb = Instance.new"BindableFunction"
  615.  
  616. cb.OnInvoke = function(arg)
  617. if arg == "Teleport" then
  618. JailbreakTp(10, 18, 784)
  619. end
  620. end
  621.  
  622. game:GetService("StarterGui"):SetCore("SendNotification",{
  623. Title = "You are too far!",
  624. Text = "You need to get closer to the bank (use tp)",
  625. Duration = 7,
  626. Button1 = "Dismiss",
  627. Button2 = "Teleport",
  628. Callback = cb
  629. })
  630. else
  631. RobTheBank()
  632. end
  633. end)
  634.  
  635. local SettingsFrame = CreateFrame("Settings")
  636. SettingsFrame.Parent = main
  637.  
  638. local Settingsbtn = CreateButton("Settings", MenuLabel)
  639. Settingsbtn.Position = StuffBtn.Position + UDim2.new(0,0,0,40)
  640. Settingsbtn.MouseButton1Click:connect(function()
  641. SettingsFrame.Visible = true
  642. Menu.Visible = false
  643. ActiveFrame = SettingsFrame
  644. end)
  645.  
  646. local TpMethodBtn = CreateButton("Teleport Method: 1", SettingsFrame)
  647. TpMethodBtn.Position = UDim2.new(0,10,0,50)
  648. TpMethodBtn.Size = UDim2.new(0,160,0,30)
  649. TpMethodBtn.MouseButton1Click:connect(function()
  650. local curr = TpMethodBtn.Text:sub(string.len("Teleport Method: ") + 1)
  651. curr = tonumber(curr)
  652. local new = curr == 1 and 2 or curr == 2 and 1
  653. TpMethod = new
  654. TpMethodBtn.Text = "Teleport Method: " .. new
  655. end)
  656.  
  657. local ExitBtn = CreateButton("Exit", MenuLabel)
  658. ExitBtn.Position = Settingsbtn.Position + UDim2.new(0,0,0,40)
  659. ExitBtn.MouseButton1Click:connect(function()
  660. main:Destroy()
  661. script.Disabled = true
  662. script:Destroy()
  663. end)
  664.  
  665. local BankJewelStatus = Create "TextLabel" {
  666. BackgroundTransparency = 1,
  667. TextSize = 8,
  668. TextColor3 = Color3.new(0,0,0),
  669. Font = "Legacy",
  670. TextXAlignment = "Left",
  671. TextYAlignment = "Top",
  672. Size = UDim2.new(0,100,0,100),
  673. Position = UDim2.new(0,10,0,220),
  674. Text = "Bank:\nJewelry:",
  675. Parent = Menu
  676. }
  677.  
  678. local BankStatus = BankJewelStatus:Clone()
  679. BankStatus.Text = "Unknown"
  680. BankStatus.Size = UDim2.new(0,100,0,100)
  681. BankStatus.Position = UDim2.new(0,46,0,220)
  682. BankStatus.Parent = Menu
  683. BankStatus.TextColor3 = Color3.new(1,0,0)
  684.  
  685. local JewelryStatus = BankStatus:Clone()
  686. JewelryStatus.Text = "Unknown"
  687. JewelryStatus.Size = UDim2.new(0,100,0,100)
  688. JewelryStatus.Position = UDim2.new(0,59,0,232)
  689. JewelryStatus.Parent = Menu
  690. JewelryStatus.TextColor3 = Color3.new(1,0,0)
  691.  
  692. main:TweenPosition(UDim2.new(0.5,-200,0.5,-150))
  693.  
  694. local TransparencyTweens = {}
  695. main.MouseLeave:connect(function()
  696. spawn(function()
  697. local bool = false
  698. local ev = main.MouseEnter:connect(function()
  699. bool = true
  700. end)
  701. wait(1)
  702. ev:Disconnect()
  703. if bool then return end
  704. for i,v in pairs(TransparencyTweens) do
  705. v:Pause()
  706. end
  707. TransparencyTweens = {}
  708. for i,v in pairs(main:GetDescendants()) do
  709. if v.Visible then
  710. local totween = {}
  711. if v.ClassName:sub(1,4) == "Text" then
  712. totween.TextTransparency = 0.7
  713. end
  714. if v.BackgroundTransparency ~= 1 then
  715. totween.BackgroundTransparency = 0.7
  716. end
  717. TransparencyTweens[#TransparencyTweens + 1] = Tween(v, 0.5, totween)
  718. end
  719. end
  720. main:TweenSize(UDim2.new(0,400,0,50),nil,nil,nil,true)
  721. end)
  722. end)
  723. main.MouseEnter:connect(function()
  724. for i,v in pairs(TransparencyTweens) do
  725. v:Pause()
  726. end
  727. TransparencyTweens = {}
  728. for i,v in pairs(main:GetDescendants()) do
  729. if v.Visible then
  730. local totween = {}
  731. if v.ClassName:sub(1,4) == "Text" then
  732. totween.TextTransparency = 0
  733. end
  734. if v.BackgroundTransparency ~= 1 then
  735. totween.BackgroundTransparency = 0
  736. end
  737. TransparencyTweens[#TransparencyTweens + 1] = Tween(v, 0.5, totween)
  738. end
  739. end
  740. main:TweenSize(UDim2.new(0,400,0,300),nil,nil,nil,true)
  741. end)
  742.  
  743. --AutoRob stuff--
  744. local DuffelBag = game:GetService("MarketplaceService"):PlayerOwnsAsset(plr, 2219040)
  745. local BankAutoRob = {
  746. {
  747. Pos = {51, 18.06, 856.5},
  748. Yield = 2,
  749. Status = "Starting the robbery"
  750. },
  751. {
  752. Pos = {29.71, 0.73, 815.25},
  753. Yield = 15,
  754. Status = "Opening the vault"
  755. },
  756. {
  757. Pos = {18.37, 0.7659, 822.25},
  758. Yield = DuffelBag and 50 or 25,
  759. Status = "Collecting $$$"
  760. },
  761. {
  762. Pos = {10, 18, 784},
  763. Status = "Finishing the robbery"
  764. }
  765. }
  766.  
  767. local function Tp(...)
  768. local char = plr.Character
  769. for i=1,2 do
  770. wait()
  771. char:WaitForChild'HumanoidRootPart'.CFrame = CFrame.new(...)
  772. end
  773. end
  774.  
  775. function RobTheBank()
  776. for _,v in pairs(BankAutoRob) do
  777. Tp(unpack(v.Pos))
  778. wait(v.Yield)
  779. end
  780. end
  781.  
  782. --Bank notification--
  783. pcall(function()
  784. local Bank = workspace:FindFirstChild("Banks"):GetChildren()[1]
  785. local Info = Bank.Extra.Sign.Decal
  786. Info:GetPropertyChangedSignal("Transparency"):Connect(function()
  787. if Info.Transparency ~= 0 then
  788. BankStatus.Text = "Open"
  789. BankStatus.TextColor3 = Color3.new(0,1,0)
  790. BankAutoRobBtn.BackgroundColor3 = Color3.new(0,1,0)
  791. local cb = Instance.new("BindableFunction")
  792. cb.OnInvoke = function(arg)
  793. if arg == "Teleport" then
  794. JailbreakTp(10, 18, 784)
  795. elseif arg == "AutoRob" then
  796. RobTheBank()
  797. end
  798. end
  799. game:GetService("StarterGui"):SetCore("SendNotification",{
  800. Title = "Bank is ready!",
  801. Text = "Bank is ready!",
  802. Duration = 15,
  803. Button1 = "Dismiss",
  804. 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",
  805. Callback = cb
  806. })
  807. else
  808. BankStatus.Text = "Closed"
  809. BankStatus.TextColor3 = Color3.new(1,0,0)
  810. BankAutoRobBtn.BackgroundColor3 = Color3.new(1,0,0)
  811. end
  812. end)
  813. BankStatus.Text = Info.Transparency == 0 and "Closed" or "Open"
  814. BankStatus.TextColor3 = Info.Transparency == 0 and Color3.new(1,0,0) or Color3.new(0,1,0)
  815. BankAutoRobBtn.BackgroundColor3 = Info.Transparency == 0 and Color3.new(1,0,0) or Color3.new(0,1,0)
  816. end)
  817. --Jewelry notification--
  818. pcall(function()
  819. local Jewelry = workspace:FindFirstChild("Jewelrys"):GetChildren()[1]
  820. local Info = Jewelry.Extra.Sign.Decal
  821. Info:GetPropertyChangedSignal("Transparency"):Connect(function()
  822. if Info.Transparency ~= 0 then
  823. JewelryStatus.Text = "Open"
  824. JewelryStatus.TextColor3 = Color3.new(0,1,0)
  825. BankStatus.TextColor3 = Color3.new(0,1,0)
  826. local cb = Instance.new("BindableFunction")
  827. cb.OnInvoke = function(arg)
  828. if arg == "Teleport" then
  829. JailbreakTp(142, 18, 1365)
  830. end
  831. end
  832. game:GetService("StarterGui"):SetCore("SendNotification",{
  833. Title = "Jewelry is ready!",
  834. Text = "Jewelry is ready!",
  835. Duration = 15,
  836. Button1 = "Dismiss",
  837. Button2 = "Teleport",
  838. Callback = cb
  839. })
  840. else
  841. JewelryStatus.Text = "Closed"
  842. JewelryStatus.TextColor3 = Color3.new(1,0,0)
  843. end
  844. end)
  845. JewelryStatus.Text = Info.Transparency == 0 and "Closed" or "Open"
  846. JewelryStatus.TextColor3 = Info.Transparency == 0 and Color3.new(1,0,0) or Color3.new(0,1,0)
  847. end)
  848. end)
  849.  
  850. unjail.Name = "unjail"
  851. unjail.Parent = Frame
  852. unjail.BackgroundColor3 = Color3.new(0.333333, 0.333333, 0.498039)
  853. unjail.BorderSizePixel = 3
  854. unjail.Position = UDim2.new(0.0489609838, 0, 0.680227995, 0)
  855. unjail.Size = UDim2.new(0, 113, 0, 48)
  856. unjail.Font = Enum.Font.Cartoon
  857. unjail.Text = "UnJailbreak"
  858. unjail.TextColor3 = Color3.new(1, 1, 1)
  859. unjail.TextScaled = true
  860. unjail.TextSize = 14
  861. unjail.TextWrapped = true
  862.  
  863. unjail.MouseButton1Down:connect(function()
  864. --this shit is unfinished :v
  865. if game.PlaceId == 606849621 then
  866. warn("[v1.1] Unjailbreak Loaded")
  867. warn("[v1.1] -Fixed Explorer")
  868. warn("[v1.1] -Fixed Draggable")
  869. warn("[v1.1] -Fixed Fly Bug")
  870. warn("[v1.1] -Stability Improve")
  871. warn("[v1.1] -Added Checkpoints")
  872. warn("[Meme] -Leaked by N3xul, sorry :P")
  873. Unjailbreak = Instance.new("ScreenGui")
  874. MainFrame = Instance.new("Frame")
  875. TextLabel = Instance.new("TextLabel")
  876. BottomLine = Instance.new("TextLabel")
  877. PlayerImage = Instance.new("ImageLabel")
  878. TextLabel_2 = Instance.new("TextLabel")
  879. TextLabel_3 = Instance.new("TextLabel")
  880. HomeImage = Instance.new("ImageLabel")
  881. TextLabel_4 = Instance.new("TextLabel")
  882. Home = Instance.new("TextButton")
  883. HomeImage_2 = Instance.new("ImageLabel")
  884. TextLabel_5 = Instance.new("TextLabel")
  885. Settings = Instance.new("TextButton")
  886. HomeImage_3 = Instance.new("ImageLabel")
  887. TextLabel_6 = Instance.new("TextLabel")
  888. Teleports = Instance.new("TextButton")
  889. HomeImage_4 = Instance.new("ImageLabel")
  890. TextLabel_7 = Instance.new("TextLabel")
  891. TabFrames = Instance.new("Frame")
  892. HomeFrame = Instance.new("Frame")
  893. TextLabel_8 = Instance.new("TextLabel")
  894. TextLabel_9 = Instance.new("TextLabel")
  895. TextLabel_10 = Instance.new("TextLabel")
  896. TextLabel_11 = Instance.new("TextLabel")
  897. TextLabel_12 = Instance.new("TextLabel")
  898. TextLabel_13 = Instance.new("TextLabel")
  899. TextLabel_14 = Instance.new("TextLabel")
  900. TextLabel_15 = Instance.new("TextLabel")
  901. TeleportsFrame = Instance.new("Frame")
  902. JewelryStore = Instance.new("TextButton")
  903. BankStore = Instance.new("TextButton")
  904. BatCave = Instance.new("TextButton")
  905. CriminalBase = Instance.new("TextButton")
  906. PoliceHQ1 = Instance.new("TextButton")
  907. PoliceHQ2 = Instance.new("TextButton")
  908. DonutShop = Instance.new("TextButton")
  909. GasStation = Instance.new("TextButton")
  910. Prison = Instance.new("TextButton")
  911. Garage = Instance.new("TextButton")
  912. Bugatti = Instance.new("TextButton")
  913. Lamborghini = Instance.new("TextButton")
  914. Tesla3 = Instance.new("TextButton")
  915. Porsche = Instance.new("TextButton")
  916. SWATVan = Instance.new("TextButton")
  917. DuneBuggy = Instance.new("TextButton")
  918. PickUpTruck = Instance.new("TextButton")
  919. MiniCooper = Instance.new("TextButton")
  920. Camaro = Instance.new("TextButton")
  921. DirtBike = Instance.new("TextButton")
  922. sframe = Instance.new("ScrollingFrame")
  923. GoTo = Instance.new("TextButton")
  924. SPlayer = Instance.new("TextLabel")
  925. SettingsFrame = Instance.new("Frame")
  926. CDrag = Instance.new("ImageButton")
  927. CNotifierB = Instance.new("ImageButton")
  928. TextLabel_16 = Instance.new("TextLabel")
  929. TextLabel_17 = Instance.new("TextLabel")
  930. CNotifierJ = Instance.new("ImageButton")
  931. TextLabel_18 = Instance.new("TextLabel")
  932. TextLabel_19 = Instance.new("TextLabel")
  933. CBigHead = Instance.new("ImageButton")
  934. TextLabel_20 = Instance.new("TextLabel")
  935. CESP = Instance.new("ImageButton")
  936. TextLabel_21 = Instance.new("TextLabel")
  937. KeybindConFrame = Instance.new("Frame")
  938. TextLabel_22 = Instance.new("TextLabel")
  939. JewelryKeyy = Instance.new("TextLabel")
  940. BankKeyy = Instance.new("TextLabel")
  941. CriminalKeyy = Instance.new("TextLabel")
  942. KeyContinue = Instance.new("TextButton")
  943. KeyCancel = Instance.new("TextButton")
  944. CustomTP = Instance.new("TextButton")
  945. JewelryKeyBox = Instance.new("TextBox")
  946. CrimBaseBox = Instance.new("TextBox")
  947. BankKeyBox = Instance.new("TextBox")
  948. SetKeybind = Instance.new("TextButton")
  949. TextLabel_23 = Instance.new("TextLabel")
  950. Coords = Instance.new("TextButton")
  951. UIColorButton = Instance.new("TextButton")
  952. Reset = Instance.new("TextButton")
  953. CForceField = Instance.new("ImageButton")
  954. TextLabel_24 = Instance.new("TextLabel")
  955. Explorer = Instance.new("TextButton")
  956. GameFrame = Instance.new("Frame")
  957. InfiniteAmmo = Instance.new("TextButton")
  958. JumpPower = Instance.new("TextButton")
  959. NoClip = Instance.new("TextButton")
  960. Gravity = Instance.new("TextButton")
  961. RemoveAll = Instance.new("TextButton")
  962. AnnoyServer = Instance.new("TextButton")
  963. VehicleSpeed = Instance.new("TextButton")
  964. WalkSpeed = Instance.new("TextButton")
  965. GodMode = Instance.new("TextButton")
  966. AK47 = Instance.new("TextButton")
  967. ClickTP = Instance.new("TextButton")
  968. AutoRob = Instance.new("TextButton")
  969. ShotGun = Instance.new("TextButton")
  970. Btools = Instance.new("TextButton")
  971. Pistol = Instance.new("TextButton")
  972. SpamArrest = Instance.new("TextButton")
  973. KeyCard = Instance.new("TextButton")
  974. M4A4 = Instance.new("TextButton")
  975. Fly = Instance.new("TextButton")
  976. FlashLight = Instance.new("TextButton")
  977. TextLabel_25 = Instance.new("TextLabel")
  978. TextLabel_26 = Instance.new("TextLabel")
  979. TextLabel_27 = Instance.new("TextLabel")
  980. MainLogo2 = Instance.new("ImageLabel")
  981. Tabs = Instance.new("ImageButton")
  982. Dark = Instance.new("Frame")
  983. MainLogo = Instance.new("ImageLabel")
  984. TextLabel_28 = Instance.new("TextLabel")
  985. JNotifierOpen = Instance.new("Frame")
  986. TextLabel_29 = Instance.new("TextLabel")
  987. GotoJewelry = Instance.new("TextButton")
  988. BNotifierOpen = Instance.new("Frame")
  989. TextLabel_30 = Instance.new("TextLabel")
  990. GotoBank = Instance.new("TextButton")
  991. LPlayerDetect = Instance.new("Frame")
  992. PlayerNameDetected = Instance.new("TextLabel")
  993. TextLabel_31 = Instance.new("TextLabel")
  994. TextLabel_32 = Instance.new("TextLabel")
  995. TextLabel_33 = Instance.new("TextLabel")
  996. TextLabel_34 = Instance.new("TextLabel")
  997. TextLabel_35 = Instance.new("TextLabel")
  998. AdminJoined = Instance.new("Frame")
  999. AdminDetected = Instance.new("TextLabel")
  1000. TextLabel_36 = Instance.new("TextLabel")
  1001. TextLabel_37 = Instance.new("TextLabel")
  1002. TextLabel_38 = Instance.new("TextLabel")
  1003. TextLabel_39 = Instance.new("TextLabel")
  1004. UIColorFrame = Instance.new("Frame")
  1005. TextLabel_40 = Instance.new("TextLabel")
  1006. TextLabel_41 = Instance.new("TextLabel")
  1007. Commands = Instance.new("Frame")
  1008. TextLabel_42 = Instance.new("TextLabel")
  1009. ScrollingFrame = Instance.new("ScrollingFrame")
  1010. TextLabel_43 = Instance.new("TextLabel")
  1011. TextLabel_44 = Instance.new("TextLabel")
  1012. TextLabel_45 = Instance.new("TextLabel")
  1013. TextLabel_46 = Instance.new("TextLabel")
  1014. TextLabel_47 = Instance.new("TextLabel")
  1015. TextLabel_48 = Instance.new("TextLabel")
  1016. TextLabel_49 = Instance.new("TextLabel")
  1017. TextLabel_50 = Instance.new("TextLabel")
  1018. TextLabel_51 = Instance.new("TextLabel")
  1019. TextLabel_52 = Instance.new("TextLabel")
  1020. CommandClose = Instance.new("TextButton")
  1021. StarterFrame = Instance.new("Frame")
  1022. StarterMainFrame = Instance.new("Frame")
  1023. ContinueCustomization = Instance.new("TextButton")
  1024. TextLabel_53 = Instance.new("TextLabel")
  1025. TextLabel_54 = Instance.new("TextLabel")
  1026. TextLabel_55 = Instance.new("TextLabel")
  1027. TextLabel_56 = Instance.new("TextLabel")
  1028. TextLabel_57 = Instance.new("TextLabel")
  1029. TextLabel_58 = Instance.new("TextLabel")
  1030. TextLabel_59 = Instance.new("TextLabel")
  1031. TextLabel_60 = Instance.new("TextLabel")
  1032. TextLabel_61 = Instance.new("TextLabel")
  1033. TextLabel_62 = Instance.new("TextLabel")
  1034. MainContinue = Instance.new("TextButton")
  1035. TextLabel_63 = Instance.new("TextLabel")
  1036. TextLabel_64 = Instance.new("TextLabel")
  1037. BlueColor = Instance.new("TextButton")
  1038. RedColor = Instance.new("TextButton")
  1039. OrangeColor = Instance.new("TextButton")
  1040. BlackColor = Instance.new("TextButton")
  1041. PurpleColor = Instance.new("TextButton")
  1042. TextLabel_65 = Instance.new("TextLabel")
  1043. UIKeybind = Instance.new("TextBox")
  1044. TextLabel_66 = Instance.new("TextLabel")
  1045. TextLabel_67 = Instance.new("TextLabel")
  1046. TextLabel_68 = Instance.new("TextLabel")
  1047. MainPreview = Instance.new("TextLabel")
  1048. TextLabel_69 = Instance.new("TextLabel")
  1049. Aimbotkeybind = Instance.new("TextBox")
  1050. TextLabel_70 = Instance.new("TextLabel")
  1051. TextLabel_71 = Instance.new("TextLabel")
  1052. TextLabel_72 = Instance.new("TextLabel")
  1053. TextLabel_73 = Instance.new("TextLabel")
  1054. TextLabel_74 = Instance.new("TextLabel")
  1055. TextLabel_75 = Instance.new("TextLabel")
  1056. TextLabel_76 = Instance.new("TextLabel")
  1057. local Game = Instance.new("TextButton")
  1058. ActiveMenu = Instance.new("Folder")
  1059. ButtonWheelMenu = Instance.new("Frame")
  1060. Hue = Instance.new("NumberValue")
  1061. Lig = Instance.new("NumberValue")
  1062. Sat = Instance.new("NumberValue")
  1063. HueBox = Instance.new("TextBox")
  1064. GetColor = Instance.new("BindableFunction")
  1065.  
  1066. Unjailbreak.Name = "Unjailbreak"
  1067. Unjailbreak.Parent = game.CoreGui
  1068.  
  1069. MainFrame.Name = "MainFrame"
  1070. MainFrame.Parent = Unjailbreak
  1071. MainFrame.Active = true
  1072. MainFrame.BackgroundColor3 = Color3.new(0.737255, 0.345098, 0)
  1073. MainFrame.BorderSizePixel = 0
  1074. MainFrame.ClipsDescendants = true
  1075. MainFrame.Draggable = true
  1076. MainFrame.Position = UDim2.new(0.344000012, 0, 1.10000002, -2)
  1077. MainFrame.Size = UDim2.new(0, 598, 0, 356)
  1078.  
  1079. TextLabel.Parent = MainFrame
  1080. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  1081. TextLabel.BorderSizePixel = 0
  1082. TextLabel.Position = UDim2.new(0, 0, 0, 39)
  1083. TextLabel.Size = UDim2.new(0, 598, 0, 3)
  1084. TextLabel.Font = Enum.Font.SourceSans
  1085. TextLabel.FontSize = Enum.FontSize.Size14
  1086. TextLabel.Text = ""
  1087. TextLabel.TextSize = 14
  1088.  
  1089. BottomLine.Name = "BottomLine"
  1090. BottomLine.Parent = MainFrame
  1091. BottomLine.BackgroundColor3 = Color3.new(0.737255, 0.345098, 0)
  1092. BottomLine.BorderSizePixel = 0
  1093. BottomLine.Position = UDim2.new(0, 0, 0, 336)
  1094. BottomLine.Size = UDim2.new(0, 598, 0, 18)
  1095. BottomLine.Font = Enum.Font.SourceSans
  1096. BottomLine.FontSize = Enum.FontSize.Size14
  1097. BottomLine.Text = ""
  1098. BottomLine.TextSize = 14
  1099.  
  1100. PlayerImage.Name = "PlayerImage"
  1101. PlayerImage.Parent = MainFrame
  1102. PlayerImage.BackgroundColor3 = Color3.new(1, 1, 1)
  1103. PlayerImage.BorderSizePixel = 0
  1104. PlayerImage.Position = UDim2.new(0, 0, 0, 48)
  1105. PlayerImage.Size = UDim2.new(0, 149, 0, 129)
  1106. PlayerImage.Image = "https://assetgame.roblox.com/Thumbs/Avatar.ashx?x=250&y=250&Format=Png&username="..game:GetService("Players").LocalPlayer.Name
  1107.  
  1108. TextLabel_2.Parent = MainFrame
  1109. TextLabel_2.BackgroundColor3 = Color3.new(1, 1, 1)
  1110. TextLabel_2.BackgroundTransparency = 1
  1111. TextLabel_2.Position = UDim2.new(0, 199, 0, 0)
  1112. TextLabel_2.Size = UDim2.new(0, 200, 0, 33)
  1113. TextLabel_2.Font = Enum.Font.Arial
  1114. TextLabel_2.FontSize = Enum.FontSize.Size24
  1115. TextLabel_2.Text = "U N J A I L B R E A K"
  1116. TextLabel_2.TextColor3 = Color3.new(1, 1, 1)
  1117. TextLabel_2.TextSize = 20
  1118.  
  1119. TextLabel_3.Parent = MainFrame
  1120. TextLabel_3.BackgroundColor3 = Color3.new(0.380392, 0.380392, 0.380392)
  1121. TextLabel_3.BorderSizePixel = 0
  1122. TextLabel_3.Position = UDim2.new(0, 0, 0, 177)
  1123. TextLabel_3.Size = UDim2.new(0, 149, 0, 159)
  1124. TextLabel_3.Font = Enum.Font.SourceSans
  1125. TextLabel_3.FontSize = Enum.FontSize.Size14
  1126. TextLabel_3.Text = ""
  1127. TextLabel_3.TextSize = 14
  1128.  
  1129. Game.Name = "Game"
  1130. Game.Parent = MainFrame
  1131. Game.BackgroundColor3 = Color3.new(1, 1, 1)
  1132. Game.BackgroundTransparency = 1
  1133. Game.Position = UDim2.new(0, 21, 0, 229)
  1134. Game.Size = UDim2.new(0, 118, 0, 30)
  1135. Game.Font = Enum.Font.Arial
  1136. Game.FontSize = Enum.FontSize.Size18
  1137. Game.Text = ""
  1138. Game.TextColor3 = Color3.new(1, 1, 1)
  1139. Game.TextSize = 17
  1140.  
  1141. HomeImage.Name = "HomeImage"
  1142. HomeImage.Parent = Game
  1143. HomeImage.BackgroundColor3 = Color3.new(1, 1, 1)
  1144. HomeImage.BackgroundTransparency = 1
  1145. HomeImage.Position = UDim2.new(0, 0, 0, 3)
  1146. HomeImage.Size = UDim2.new(0, 25, 0, 24)
  1147. HomeImage.Image = "rbxassetid://1022440008"
  1148.  
  1149. TextLabel_4.Parent = Game
  1150. TextLabel_4.BackgroundColor3 = Color3.new(1, 1, 1)
  1151. TextLabel_4.BackgroundTransparency = 1
  1152. TextLabel_4.Position = UDim2.new(0, 33, 0, 0)
  1153. TextLabel_4.Size = UDim2.new(0, 85, 0, 30)
  1154. TextLabel_4.Font = Enum.Font.Arial
  1155. TextLabel_4.FontSize = Enum.FontSize.Size18
  1156. TextLabel_4.Text = "Game"
  1157. TextLabel_4.TextColor3 = Color3.new(1, 1, 1)
  1158. TextLabel_4.TextSize = 17
  1159. TextLabel_4.TextXAlignment = Enum.TextXAlignment.Left
  1160.  
  1161. Home.Name = "Home"
  1162. Home.Parent = MainFrame
  1163. Home.BackgroundColor3 = Color3.new(1, 1, 1)
  1164. Home.BackgroundTransparency = 1
  1165. Home.Position = UDim2.new(0, 21, 0, 196)
  1166. Home.Size = UDim2.new(0, 118, 0, 30)
  1167. Home.Font = Enum.Font.Arial
  1168. Home.FontSize = Enum.FontSize.Size18
  1169. Home.Text = ""
  1170. Home.TextColor3 = Color3.new(1, 1, 1)
  1171. Home.TextSize = 17
  1172.  
  1173. HomeImage_2.Name = "HomeImage"
  1174. HomeImage_2.Parent = Home
  1175. HomeImage_2.BackgroundColor3 = Color3.new(1, 1, 1)
  1176. HomeImage_2.BackgroundTransparency = 1
  1177. HomeImage_2.Position = UDim2.new(0, 0, 0, 3)
  1178. HomeImage_2.Size = UDim2.new(0, 25, 0, 24)
  1179. HomeImage_2.Image = "rbxassetid://1022441323"
  1180.  
  1181. TextLabel_5.Parent = Home
  1182. TextLabel_5.BackgroundColor3 = Color3.new(1, 1, 1)
  1183. TextLabel_5.BackgroundTransparency = 1
  1184. TextLabel_5.Position = UDim2.new(0, 33, 0, 0)
  1185. TextLabel_5.Size = UDim2.new(0, 85, 0, 30)
  1186. TextLabel_5.Font = Enum.Font.Arial
  1187. TextLabel_5.FontSize = Enum.FontSize.Size18
  1188. TextLabel_5.Text = "Home"
  1189. TextLabel_5.TextColor3 = Color3.new(1, 1, 1)
  1190. TextLabel_5.TextSize = 17
  1191. TextLabel_5.TextXAlignment = Enum.TextXAlignment.Left
  1192.  
  1193. Settings.Name = "Settings"
  1194. Settings.Parent = MainFrame
  1195. Settings.BackgroundColor3 = Color3.new(1, 1, 1)
  1196. Settings.BackgroundTransparency = 1
  1197. Settings.Position = UDim2.new(0, 21, 0, 295)
  1198. Settings.Size = UDim2.new(0, 118, 0, 30)
  1199. Settings.Font = Enum.Font.Arial
  1200. Settings.FontSize = Enum.FontSize.Size18
  1201. Settings.Text = ""
  1202. Settings.TextColor3 = Color3.new(1, 1, 1)
  1203. Settings.TextSize = 17
  1204.  
  1205. HomeImage_3.Name = "HomeImage"
  1206. HomeImage_3.Parent = Settings
  1207. HomeImage_3.BackgroundColor3 = Color3.new(1, 1, 1)
  1208. HomeImage_3.BackgroundTransparency = 1
  1209. HomeImage_3.Position = UDim2.new(0, 0, 0, 3)
  1210. HomeImage_3.Size = UDim2.new(0, 25, 0, 24)
  1211. HomeImage_3.Image = "rbxassetid://1022442308"
  1212.  
  1213. TextLabel_6.Parent = Settings
  1214. TextLabel_6.BackgroundColor3 = Color3.new(1, 1, 1)
  1215. TextLabel_6.BackgroundTransparency = 1
  1216. TextLabel_6.Position = UDim2.new(0, 33, 0, 0)
  1217. TextLabel_6.Size = UDim2.new(0, 85, 0, 30)
  1218. TextLabel_6.Font = Enum.Font.Arial
  1219. TextLabel_6.FontSize = Enum.FontSize.Size18
  1220. TextLabel_6.Text = "Settings"
  1221. TextLabel_6.TextColor3 = Color3.new(1, 1, 1)
  1222. TextLabel_6.TextSize = 17
  1223. TextLabel_6.TextXAlignment = Enum.TextXAlignment.Left
  1224.  
  1225. Teleports.Name = "Teleports"
  1226. Teleports.Parent = MainFrame
  1227. Teleports.BackgroundColor3 = Color3.new(1, 1, 1)
  1228. Teleports.BackgroundTransparency = 1
  1229. Teleports.Position = UDim2.new(0, 21, 0, 262)
  1230. Teleports.Size = UDim2.new(0, 118, 0, 30)
  1231. Teleports.Font = Enum.Font.Arial
  1232. Teleports.FontSize = Enum.FontSize.Size18
  1233. Teleports.Text = ""
  1234. Teleports.TextColor3 = Color3.new(1, 1, 1)
  1235. Teleports.TextSize = 17
  1236.  
  1237. HomeImage_4.Name = "HomeImage"
  1238. HomeImage_4.Parent = Teleports
  1239. HomeImage_4.BackgroundColor3 = Color3.new(1, 1, 1)
  1240. HomeImage_4.BackgroundTransparency = 1
  1241. HomeImage_4.Position = UDim2.new(0, 0, 0, 3)
  1242. HomeImage_4.Size = UDim2.new(0, 25, 0, 24)
  1243. HomeImage_4.Image = "rbxassetid://1022517730"
  1244.  
  1245. TextLabel_7.Parent = Teleports
  1246. TextLabel_7.BackgroundColor3 = Color3.new(1, 1, 1)
  1247. TextLabel_7.BackgroundTransparency = 1
  1248. TextLabel_7.Position = UDim2.new(0, 33, 0, 0)
  1249. TextLabel_7.Size = UDim2.new(0, 85, 0, 30)
  1250. TextLabel_7.Font = Enum.Font.Arial
  1251. TextLabel_7.FontSize = Enum.FontSize.Size18
  1252. TextLabel_7.Text = "Teleports"
  1253. TextLabel_7.TextColor3 = Color3.new(1, 1, 1)
  1254. TextLabel_7.TextSize = 17
  1255. TextLabel_7.TextXAlignment = Enum.TextXAlignment.Left
  1256.  
  1257. TabFrames.Name = "TabFrames"
  1258. TabFrames.Parent = MainFrame
  1259. TabFrames.BackgroundColor3 = Color3.new(1, 1, 1)
  1260. TabFrames.BorderSizePixel = 0
  1261. TabFrames.ClipsDescendants = true
  1262. TabFrames.Position = UDim2.new(0, 0, 0, 47)
  1263. TabFrames.Size = UDim2.new(0, 598, 0, 289)
  1264.  
  1265. HomeFrame.Name = "HomeFrame"
  1266. HomeFrame.Parent = TabFrames
  1267. HomeFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  1268. HomeFrame.BorderSizePixel = 0
  1269. HomeFrame.ClipsDescendants = true
  1270. HomeFrame.Size = UDim2.new(0, 598, 0, 289)
  1271. HomeFrame.Visible = true
  1272.  
  1273. TextLabel_8.Parent = HomeFrame
  1274. TextLabel_8.BackgroundColor3 = Color3.new(1, 1, 1)
  1275. TextLabel_8.BackgroundTransparency = 1
  1276. TextLabel_8.Position = UDim2.new(0, 199, 0, 18)
  1277. TextLabel_8.Size = UDim2.new(0, 200, 0, 50)
  1278. TextLabel_8.Font = Enum.Font.Arial
  1279. TextLabel_8.FontSize = Enum.FontSize.Size24
  1280. TextLabel_8.Text = "Welcome To Unjailbreak"
  1281. TextLabel_8.TextColor3 = Color3.new(0, 0, 0)
  1282. TextLabel_8.TextSize = 20
  1283.  
  1284. TextLabel_9.Parent = HomeFrame
  1285. TextLabel_9.BackgroundColor3 = Color3.new(1, 1, 1)
  1286. TextLabel_9.BackgroundTransparency = 1
  1287. TextLabel_9.Position = UDim2.new(0, 199, 0, 53)
  1288. TextLabel_9.Size = UDim2.new(0, 200, 0, 50)
  1289. TextLabel_9.Font = Enum.Font.Arial
  1290. TextLabel_9.FontSize = Enum.FontSize.Size24
  1291. TextLabel_9.Text = "Logo Created by ooga#9523"
  1292. TextLabel_9.TextColor3 = Color3.new(0, 0, 0)
  1293. TextLabel_9.TextSize = 20
  1294.  
  1295. TextLabel_10.Parent = HomeFrame
  1296. TextLabel_10.BackgroundColor3 = Color3.new(1, 1, 1)
  1297. TextLabel_10.BackgroundTransparency = 1
  1298. TextLabel_10.Position = UDim2.new(0, 199, 0, 99)
  1299. TextLabel_10.Size = UDim2.new(0, 200, 0, 25)
  1300. TextLabel_10.Font = Enum.Font.Arial
  1301. TextLabel_10.FontSize = Enum.FontSize.Size24
  1302. TextLabel_10.Text = "Whitelist Created By Aren <3"
  1303. TextLabel_10.TextColor3 = Color3.new(0, 0, 0)
  1304. TextLabel_10.TextSize = 20
  1305.  
  1306. TextLabel_11.Parent = HomeFrame
  1307. TextLabel_11.BackgroundColor3 = Color3.new(1, 1, 1)
  1308. TextLabel_11.BackgroundTransparency = 1
  1309. TextLabel_11.Position = UDim2.new(0, 199, 0, 120)
  1310. TextLabel_11.Size = UDim2.new(0, 200, 0, 50)
  1311. TextLabel_11.Font = Enum.Font.Arial
  1312. TextLabel_11.FontSize = Enum.FontSize.Size24
  1313. TextLabel_11.Text = "Credits To Ezy For Being Cool"
  1314. TextLabel_11.TextColor3 = Color3.new(0, 0, 0)
  1315. TextLabel_11.TextSize = 20
  1316.  
  1317. TextLabel_12.Parent = HomeFrame
  1318. TextLabel_12.BackgroundColor3 = Color3.new(0.337255, 0.337255, 0.337255)
  1319. TextLabel_12.BorderSizePixel = 0
  1320. TextLabel_12.Position = UDim2.new(0, 100, 0, -33)
  1321. TextLabel_12.Size = UDim2.new(0, 33, 0, 409)
  1322. TextLabel_12.Font = Enum.Font.Arial
  1323. TextLabel_12.FontSize = Enum.FontSize.Size24
  1324. TextLabel_12.Text = ""
  1325. TextLabel_12.TextColor3 = Color3.new(0, 0, 0)
  1326. TextLabel_12.TextSize = 20
  1327.  
  1328. TextLabel_13.Parent = HomeFrame
  1329. TextLabel_13.BackgroundColor3 = Color3.new(0.337255, 0.337255, 0.337255)
  1330. TextLabel_13.BorderSizePixel = 0
  1331. TextLabel_13.Position = UDim2.new(0, 82, 0, -60)
  1332. TextLabel_13.Size = UDim2.new(0, 9, 0, 409)
  1333. TextLabel_13.Font = Enum.Font.Arial
  1334. TextLabel_13.FontSize = Enum.FontSize.Size24
  1335. TextLabel_13.Text = ""
  1336. TextLabel_13.TextColor3 = Color3.new(0, 0, 0)
  1337. TextLabel_13.TextSize = 20
  1338.  
  1339. TextLabel_14.Parent = HomeFrame
  1340. TextLabel_14.BackgroundColor3 = Color3.new(0.337255, 0.337255, 0.337255)
  1341. TextLabel_14.BorderSizePixel = 0
  1342. TextLabel_14.Position = UDim2.new(0, 570, 0, -60)
  1343. TextLabel_14.Size = UDim2.new(0, 8, 0, 409)
  1344. TextLabel_14.Font = Enum.Font.Arial
  1345. TextLabel_14.FontSize = Enum.FontSize.Size24
  1346. TextLabel_14.Text = ""
  1347. TextLabel_14.TextColor3 = Color3.new(0, 0, 0)
  1348. TextLabel_14.TextSize = 20
  1349.  
  1350. TextLabel_15.Parent = HomeFrame
  1351. TextLabel_15.BackgroundColor3 = Color3.new(0.921569, 0.431373, 0)
  1352. TextLabel_15.BorderSizePixel = 0
  1353. TextLabel_15.Position = UDim2.new(0, 114, 0, -21)
  1354. TextLabel_15.Size = UDim2.new(0, 10, 0, 409)
  1355. TextLabel_15.Font = Enum.Font.Arial
  1356. TextLabel_15.FontSize = Enum.FontSize.Size24
  1357. TextLabel_15.Text = ""
  1358. TextLabel_15.TextColor3 = Color3.new(0, 0, 0)
  1359. TextLabel_15.TextSize = 20
  1360.  
  1361. TeleportsFrame.Name = "TeleportsFrame"
  1362. TeleportsFrame.Parent = TabFrames
  1363. TeleportsFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  1364. TeleportsFrame.BorderSizePixel = 0
  1365. TeleportsFrame.ClipsDescendants = true
  1366. TeleportsFrame.Size = UDim2.new(0, 598, 0, 289)
  1367. TeleportsFrame.Visible = false
  1368.  
  1369. JewelryStore.Name = "JewelryStore"
  1370. JewelryStore.Parent = TeleportsFrame
  1371. JewelryStore.BackgroundColor3 = Color3.new(0.737255, 0.345098, 0)
  1372. JewelryStore.BorderSizePixel = 0
  1373. JewelryStore.Position = UDim2.new(0, 22, 0, 50)
  1374. JewelryStore.Size = UDim2.new(0, 89, 0, 25)
  1375. JewelryStore.AutoButtonColor = false
  1376. JewelryStore.Font = Enum.Font.Arial
  1377. JewelryStore.FontSize = Enum.FontSize.Size18
  1378. JewelryStore.Text = "Jewelry Store"
  1379. JewelryStore.TextColor3 = Color3.new(1, 1, 1)
  1380. JewelryStore.TextSize = 15
  1381.  
  1382. BankStore.Name = "BankStore"
  1383. BankStore.Parent = TeleportsFrame
  1384. BankStore.BackgroundColor3 = Color3.new(0.737255, 0.345098, 0)
  1385. BankStore.BorderSizePixel = 0
  1386. BankStore.Position = UDim2.new(0, 120, 0, 50)
  1387. BankStore.Size = UDim2.new(0, 89, 0, 25)
  1388. BankStore.AutoButtonColor = false
  1389. BankStore.Font = Enum.Font.Arial
  1390. BankStore.FontSize = Enum.FontSize.Size18
  1391. BankStore.Text = "Bank Store"
  1392. BankStore.TextColor3 = Color3.new(1, 1, 1)
  1393. BankStore.TextSize = 15
  1394.  
  1395. BatCave.Name = "BatCave"
  1396. BatCave.Parent = TeleportsFrame
  1397. BatCave.BackgroundColor3 = Color3.new(0.290196, 0.290196, 0.290196)
  1398. BatCave.BorderSizePixel = 0
  1399. BatCave.Position = UDim2.new(0, 22, 0, 85)
  1400. BatCave.Size = UDim2.new(0, 89, 0, 25)
  1401. BatCave.AutoButtonColor = false
  1402. BatCave.Font = Enum.Font.Arial
  1403. BatCave.FontSize = Enum.FontSize.Size18
  1404. BatCave.Text = "Bat Cave"
  1405. BatCave.TextColor3 = Color3.new(1, 1, 1)
  1406. BatCave.TextSize = 15
  1407.  
  1408. CriminalBase.Name = "CriminalBase"
  1409. CriminalBase.Parent = TeleportsFrame
  1410. CriminalBase.BackgroundColor3 = Color3.new(0.290196, 0.290196, 0.290196)
  1411. CriminalBase.BorderSizePixel = 0
  1412. CriminalBase.Position = UDim2.new(0, 120, 0, 85)
  1413. CriminalBase.Size = UDim2.new(0, 89, 0, 25)
  1414. CriminalBase.AutoButtonColor = false
  1415. CriminalBase.Font = Enum.Font.Arial
  1416. CriminalBase.FontSize = Enum.FontSize.Size18
  1417. CriminalBase.Text = "Criminal Base"
  1418. CriminalBase.TextColor3 = Color3.new(1, 1, 1)
  1419. CriminalBase.TextSize = 15
  1420.  
  1421. PoliceHQ1.Name = "PoliceHQ1"
  1422. PoliceHQ1.Parent = TeleportsFrame
  1423. PoliceHQ1.BackgroundColor3 = Color3.new(0.737255, 0.345098, 0)
  1424. PoliceHQ1.BorderSizePixel = 0
  1425. PoliceHQ1.Position = UDim2.new(0, 22, 0, 120)
  1426. PoliceHQ1.Size = UDim2.new(0, 89, 0, 25)
  1427. PoliceHQ1.AutoButtonColor = false
  1428. PoliceHQ1.Font = Enum.Font.Arial
  1429. PoliceHQ1.FontSize = Enum.FontSize.Size18
  1430. PoliceHQ1.Text = "Police HQ 1"
  1431. PoliceHQ1.TextColor3 = Color3.new(1, 1, 1)
  1432. PoliceHQ1.TextSize = 15
  1433.  
  1434. PoliceHQ2.Name = "PoliceHQ2"
  1435. PoliceHQ2.Parent = TeleportsFrame
  1436. PoliceHQ2.BackgroundColor3 = Color3.new(0.737255, 0.345098, 0)
  1437. PoliceHQ2.BorderSizePixel = 0
  1438. PoliceHQ2.Position = UDim2.new(0, 120, 0, 120)
  1439. PoliceHQ2.Size = UDim2.new(0, 89, 0, 25)
  1440. PoliceHQ2.AutoButtonColor = false
  1441. PoliceHQ2.Font = Enum.Font.Arial
  1442. PoliceHQ2.FontSize = Enum.FontSize.Size18
  1443. PoliceHQ2.Text = "Police HQ 2"
  1444. PoliceHQ2.TextColor3 = Color3.new(1, 1, 1)
  1445. PoliceHQ2.TextSize = 15
  1446.  
  1447. DonutShop.Name = "DonutShop"
  1448. DonutShop.Parent = TeleportsFrame
  1449. DonutShop.BackgroundColor3 = Color3.new(0.290196, 0.290196, 0.290196)
  1450. DonutShop.BorderSizePixel = 0
  1451. DonutShop.Position = UDim2.new(0, 120, 0, 155)
  1452. DonutShop.Size = UDim2.new(0, 89, 0, 25)
  1453. DonutShop.AutoButtonColor = false
  1454. DonutShop.Font = Enum.Font.Arial
  1455. DonutShop.FontSize = Enum.FontSize.Size18
  1456. DonutShop.Text = "Donut Shop"
  1457. DonutShop.TextColor3 = Color3.new(1, 1, 1)
  1458. DonutShop.TextSize = 15
  1459.  
  1460. GasStation.Name = "GasStation"
  1461. GasStation.Parent = TeleportsFrame
  1462. GasStation.BackgroundColor3 = Color3.new(0.290196, 0.290196, 0.290196)
  1463. GasStation.BorderSizePixel = 0
  1464. GasStation.Position = UDim2.new(0, 22, 0, 155)
  1465. GasStation.Size = UDim2.new(0, 89, 0, 25)
  1466. GasStation.AutoButtonColor = false
  1467. GasStation.Font = Enum.Font.Arial
  1468. GasStation.FontSize = Enum.FontSize.Size18
  1469. GasStation.Text = "Gas Station"
  1470. GasStation.TextColor3 = Color3.new(1, 1, 1)
  1471. GasStation.TextSize = 15
  1472.  
  1473. Prison.Name = "Prison"
  1474. Prison.Parent = TeleportsFrame
  1475. Prison.BackgroundColor3 = Color3.new(0.737255, 0.345098, 0)
  1476. Prison.BorderSizePixel = 0
  1477. Prison.Position = UDim2.new(0, 22, 0, 190)
  1478. Prison.Size = UDim2.new(0, 89, 0, 25)
  1479. Prison.AutoButtonColor = false
  1480. Prison.Font = Enum.Font.Arial
  1481. Prison.FontSize = Enum.FontSize.Size18
  1482. Prison.Text = "Prison"
  1483. Prison.TextColor3 = Color3.new(1, 1, 1)
  1484. Prison.TextSize = 15
  1485.  
  1486. Garage.Name = "Garage"
  1487. Garage.Parent = TeleportsFrame
  1488. Garage.BackgroundColor3 = Color3.new(0.737255, 0.345098, 0)
  1489. Garage.BorderSizePixel = 0
  1490. Garage.Position = UDim2.new(0, 120, 0, 190)
  1491. Garage.Size = UDim2.new(0, 89, 0, 25)
  1492. Garage.AutoButtonColor = false
  1493. Garage.Font = Enum.Font.Arial
  1494. Garage.FontSize = Enum.FontSize.Size18
  1495. Garage.Text = "Garage"
  1496. Garage.TextColor3 = Color3.new(1, 1, 1)
  1497. Garage.TextSize = 15
  1498.  
  1499. Bugatti.Name = "Bugatti"
  1500. Bugatti.Parent = TeleportsFrame
  1501. Bugatti.BackgroundColor3 = Color3.new(0.737255, 0.345098, 0)
  1502. Bugatti.BorderSizePixel = 0
  1503. Bugatti.Position = UDim2.new(0, 218, 0, 50)
  1504. Bugatti.Size = UDim2.new(0, 89, 0, 25)
  1505. Bugatti.AutoButtonColor = false
  1506. Bugatti.Font = Enum.Font.Arial
  1507. Bugatti.FontSize = Enum.FontSize.Size18
  1508. Bugatti.Text = "Bugatti"
  1509. Bugatti.TextColor3 = Color3.new(1, 1, 1)
  1510. Bugatti.TextSize = 15
  1511.  
  1512. Lamborghini.Name = "Lamborghini"
  1513. Lamborghini.Parent = TeleportsFrame
  1514. Lamborghini.BackgroundColor3 = Color3.new(0.737255, 0.345098, 0)
  1515. Lamborghini.BorderSizePixel = 0
  1516. Lamborghini.Position = UDim2.new(0, 318, 0, 50)
  1517. Lamborghini.Size = UDim2.new(0, 89, 0, 25)
  1518. Lamborghini.AutoButtonColor = false
  1519. Lamborghini.Font = Enum.Font.Arial
  1520. Lamborghini.FontSize = Enum.FontSize.Size18
  1521. Lamborghini.Text = "Lamborghini"
  1522. Lamborghini.TextColor3 = Color3.new(1, 1, 1)
  1523. Lamborghini.TextSize = 15
  1524.  
  1525. Tesla3.Name = "Tesla3"
  1526. Tesla3.Parent = TeleportsFrame
  1527. Tesla3.BackgroundColor3 = Color3.new(0.290196, 0.290196, 0.290196)
  1528. Tesla3.BorderSizePixel = 0
  1529. Tesla3.Position = UDim2.new(0, 318, 0, 85)
  1530. Tesla3.Size = UDim2.new(0, 89, 0, 25)
  1531. Tesla3.AutoButtonColor = false
  1532. Tesla3.Font = Enum.Font.Arial
  1533. Tesla3.FontSize = Enum.FontSize.Size18
  1534. Tesla3.Text = "Tesla 3"
  1535. Tesla3.TextColor3 = Color3.new(1, 1, 1)
  1536. Tesla3.TextSize = 15
  1537.  
  1538. Porsche.Name = "Porsche"
  1539. Porsche.Parent = TeleportsFrame
  1540. Porsche.BackgroundColor3 = Color3.new(0.290196, 0.290196, 0.290196)
  1541. Porsche.BorderSizePixel = 0
  1542. Porsche.Position = UDim2.new(0, 218, 0, 85)
  1543. Porsche.Size = UDim2.new(0, 89, 0, 25)
  1544. Porsche.AutoButtonColor = false
  1545. Porsche.Font = Enum.Font.Arial
  1546. Porsche.FontSize = Enum.FontSize.Size18
  1547. Porsche.Text = "Porsche"
  1548. Porsche.TextColor3 = Color3.new(1, 1, 1)
  1549. Porsche.TextSize = 15
  1550.  
  1551. SWATVan.Name = "SWATVan"
  1552. SWATVan.Parent = TeleportsFrame
  1553. SWATVan.BackgroundColor3 = Color3.new(0.737255, 0.345098, 0)
  1554. SWATVan.BorderSizePixel = 0
  1555. SWATVan.Position = UDim2.new(0, 318, 0, 120)
  1556. SWATVan.Size = UDim2.new(0, 89, 0, 25)
  1557. SWATVan.AutoButtonColor = false
  1558. SWATVan.Font = Enum.Font.Arial
  1559. SWATVan.FontSize = Enum.FontSize.Size18
  1560. SWATVan.Text = "SWAT Van"
  1561. SWATVan.TextColor3 = Color3.new(1, 1, 1)
  1562. SWATVan.TextSize = 15
  1563.  
  1564. DuneBuggy.Name = "DuneBuggy"
  1565. DuneBuggy.Parent = TeleportsFrame
  1566. DuneBuggy.BackgroundColor3 = Color3.new(0.737255, 0.345098, 0)
  1567. DuneBuggy.BorderSizePixel = 0
  1568. DuneBuggy.Position = UDim2.new(0, 218, 0, 120)
  1569. DuneBuggy.Size = UDim2.new(0, 89, 0, 25)
  1570. DuneBuggy.AutoButtonColor = false
  1571. DuneBuggy.Font = Enum.Font.Arial
  1572. DuneBuggy.FontSize = Enum.FontSize.Size18
  1573. DuneBuggy.Text = "Dune Buggy"
  1574. DuneBuggy.TextColor3 = Color3.new(1, 1, 1)
  1575. DuneBuggy.TextSize = 15
  1576.  
  1577. PickUpTruck.Name = "PickUpTruck"
  1578. PickUpTruck.Parent = TeleportsFrame
  1579. PickUpTruck.BackgroundColor3 = Color3.new(0.290196, 0.290196, 0.290196)
  1580. PickUpTruck.BorderSizePixel = 0
  1581. PickUpTruck.Position = UDim2.new(0, 218, 0, 155)
  1582. PickUpTruck.Size = UDim2.new(0, 89, 0, 25)
  1583. PickUpTruck.AutoButtonColor = false
  1584. PickUpTruck.Font = Enum.Font.Arial
  1585. PickUpTruck.FontSize = Enum.FontSize.Size18
  1586. PickUpTruck.Text = "PickUp Truck"
  1587. PickUpTruck.TextColor3 = Color3.new(1, 1, 1)
  1588. PickUpTruck.TextSize = 15
  1589.  
  1590. MiniCooper.Name = "MiniCooper"
  1591. MiniCooper.Parent = TeleportsFrame
  1592. MiniCooper.BackgroundColor3 = Color3.new(0.737255, 0.345098, 0)
  1593. MiniCooper.BorderSizePixel = 0
  1594. MiniCooper.Position = UDim2.new(0, 218, 0, 190)
  1595. MiniCooper.Size = UDim2.new(0, 89, 0, 25)
  1596. MiniCooper.AutoButtonColor = false
  1597. MiniCooper.Font = Enum.Font.Arial
  1598. MiniCooper.FontSize = Enum.FontSize.Size18
  1599. MiniCooper.Text = "Mini Cooper"
  1600. MiniCooper.TextColor3 = Color3.new(1, 1, 1)
  1601. MiniCooper.TextSize = 15
  1602.  
  1603. Camaro.Name = "Camaro"
  1604. Camaro.Parent = TeleportsFrame
  1605. Camaro.BackgroundColor3 = Color3.new(0.737255, 0.345098, 0)
  1606. Camaro.BorderSizePixel = 0
  1607. Camaro.Position = UDim2.new(0, 318, 0, 190)
  1608. Camaro.Size = UDim2.new(0, 89, 0, 25)
  1609. Camaro.AutoButtonColor = false
  1610. Camaro.Font = Enum.Font.Arial
  1611. Camaro.FontSize = Enum.FontSize.Size18
  1612. Camaro.Text = "Camaro"
  1613. Camaro.TextColor3 = Color3.new(1, 1, 1)
  1614. Camaro.TextSize = 15
  1615.  
  1616. DirtBike.Name = "DirtBike"
  1617. DirtBike.Parent = TeleportsFrame
  1618. DirtBike.BackgroundColor3 = Color3.new(0.290196, 0.290196, 0.290196)
  1619. DirtBike.BorderSizePixel = 0
  1620. DirtBike.Position = UDim2.new(0, 318, 0, 155)
  1621. DirtBike.Size = UDim2.new(0, 89, 0, 25)
  1622. DirtBike.AutoButtonColor = false
  1623. DirtBike.Font = Enum.Font.Arial
  1624. DirtBike.FontSize = Enum.FontSize.Size18
  1625. DirtBike.Text = "Dirt Bike"
  1626. DirtBike.TextColor3 = Color3.new(1, 1, 1)
  1627. DirtBike.TextSize = 15
  1628.  
  1629. sframe.Name = "sframe"
  1630. sframe.Parent = TeleportsFrame
  1631. sframe.BackgroundColor3 = Color3.new(0.290196, 0.290196, 0.290196)
  1632. sframe.BorderSizePixel = 0
  1633. sframe.Position = UDim2.new(0, 418, 0, 51)
  1634. sframe.Size = UDim2.new(0, 180, 0, 164)
  1635. sframe.ScrollBarThickness = 4
  1636.  
  1637. GoTo.Name = "GoTo"
  1638. GoTo.Parent = TeleportsFrame
  1639. GoTo.BackgroundColor3 = Color3.new(0.737255, 0.345098, 0)
  1640. GoTo.BorderSizePixel = 0
  1641. GoTo.Position = UDim2.new(0, 459, 0, 247)
  1642. GoTo.Size = UDim2.new(0, 89, 0, 25)
  1643. GoTo.AutoButtonColor = false
  1644. GoTo.Font = Enum.Font.Arial
  1645. GoTo.FontSize = Enum.FontSize.Size18
  1646. GoTo.Text = "GoTo"
  1647. GoTo.TextColor3 = Color3.new(1, 1, 1)
  1648. GoTo.TextSize = 15
  1649.  
  1650. SPlayer.Name = "SPlayer"
  1651. SPlayer.Parent = TeleportsFrame
  1652. SPlayer.BackgroundColor3 = Color3.new(1, 1, 1)
  1653. SPlayer.BackgroundTransparency = 1
  1654. SPlayer.Position = UDim2.new(0, 407, 0, 221)
  1655. SPlayer.Size = UDim2.new(0, 191, 0, 17)
  1656. SPlayer.Font = Enum.Font.Arial
  1657. SPlayer.FontSize = Enum.FontSize.Size14
  1658. SPlayer.Text = "Player:"
  1659. SPlayer.TextSize = 14
  1660.  
  1661. SettingsFrame.Name = "SettingsFrame"
  1662. SettingsFrame.Parent = TabFrames
  1663. SettingsFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  1664. SettingsFrame.BorderSizePixel = 0
  1665. SettingsFrame.ClipsDescendants = true
  1666. SettingsFrame.Size = UDim2.new(0, 598, 0, 289)
  1667. SettingsFrame.Visible = false
  1668.  
  1669. CDrag.Name = "CDrag"
  1670. CDrag.Parent = SettingsFrame
  1671. CDrag.BackgroundColor3 = Color3.new(1, 1, 1)
  1672. CDrag.BackgroundTransparency = 1
  1673. CDrag.Position = UDim2.new(0, 22, 0, 60)
  1674. CDrag.Size = UDim2.new(0, 25, 0, 25)
  1675. CDrag.Image = "rbxassetid://87913710"
  1676. CDrag.ImageColor3 = Color3.new(0.211765, 0.635294, 0)
  1677.  
  1678. CNotifierB.Name = "CNotifierB"
  1679. CNotifierB.Parent = SettingsFrame
  1680. CNotifierB.BackgroundColor3 = Color3.new(1, 1, 1)
  1681. CNotifierB.BackgroundTransparency = 1
  1682. CNotifierB.Position = UDim2.new(0, 22, 0, 100)
  1683. CNotifierB.Size = UDim2.new(0, 25, 0, 25)
  1684. CNotifierB.Image = "rbxassetid://87913710"
  1685. CNotifierB.ImageColor3 = Color3.new(0.380392, 0.380392, 0.380392)
  1686.  
  1687. TextLabel_16.Parent = SettingsFrame
  1688. TextLabel_16.BackgroundColor3 = Color3.new(1, 1, 1)
  1689. TextLabel_16.BackgroundTransparency = 1
  1690. TextLabel_16.Position = UDim2.new(0, 55, 0, 62)
  1691. TextLabel_16.Size = UDim2.new(0, 56, 0, 17)
  1692. TextLabel_16.Font = Enum.Font.Arial
  1693. TextLabel_16.FontSize = Enum.FontSize.Size18
  1694. TextLabel_16.Text = "Draggable"
  1695. TextLabel_16.TextColor3 = Color3.new(0, 0, 0)
  1696. TextLabel_16.TextSize = 15
  1697. TextLabel_16.TextXAlignment = Enum.TextXAlignment.Left
  1698.  
  1699. TextLabel_17.Parent = SettingsFrame
  1700. TextLabel_17.BackgroundColor3 = Color3.new(1, 1, 1)
  1701. TextLabel_17.BackgroundTransparency = 1
  1702. TextLabel_17.Position = UDim2.new(0, 55, 0, 102)
  1703. TextLabel_17.Size = UDim2.new(0, 56, 0, 17)
  1704. TextLabel_17.Font = Enum.Font.Arial
  1705. TextLabel_17.FontSize = Enum.FontSize.Size18
  1706. TextLabel_17.Text = "Bank Notifier"
  1707. TextLabel_17.TextColor3 = Color3.new(0, 0, 0)
  1708. TextLabel_17.TextSize = 15
  1709. TextLabel_17.TextXAlignment = Enum.TextXAlignment.Left
  1710.  
  1711. CNotifierJ.Name = "CNotifierJ"
  1712. CNotifierJ.Parent = SettingsFrame
  1713. CNotifierJ.BackgroundColor3 = Color3.new(1, 1, 1)
  1714. CNotifierJ.BackgroundTransparency = 1
  1715. CNotifierJ.Position = UDim2.new(0, 22, 0, 140)
  1716. CNotifierJ.Size = UDim2.new(0, 25, 0, 25)
  1717. CNotifierJ.Image = "rbxassetid://87913710"
  1718. CNotifierJ.ImageColor3 = Color3.new(0.380392, 0.380392, 0.380392)
  1719.  
  1720. TextLabel_18.Parent = SettingsFrame
  1721. TextLabel_18.BackgroundColor3 = Color3.new(1, 1, 1)
  1722. TextLabel_18.BackgroundTransparency = 1
  1723. TextLabel_18.Position = UDim2.new(0, 55, 0, 142)
  1724. TextLabel_18.Size = UDim2.new(0, 56, 0, 17)
  1725. TextLabel_18.Font = Enum.Font.Arial
  1726. TextLabel_18.FontSize = Enum.FontSize.Size18
  1727. TextLabel_18.Text = "Jewelry Notifier"
  1728. TextLabel_18.TextColor3 = Color3.new(0, 0, 0)
  1729. TextLabel_18.TextSize = 15
  1730. TextLabel_18.TextXAlignment = Enum.TextXAlignment.Left
  1731.  
  1732. TextLabel_19.Parent = SettingsFrame
  1733. TextLabel_19.BackgroundColor3 = Color3.new(1, 1, 1)
  1734. TextLabel_19.BackgroundTransparency = 1
  1735. TextLabel_19.Position = UDim2.new(0, 271, 0, 210)
  1736. TextLabel_19.Size = UDim2.new(0, 56, 0, 17)
  1737. TextLabel_19.Font = Enum.Font.Arial
  1738. TextLabel_19.FontSize = Enum.FontSize.Size18
  1739. TextLabel_19.Text = "Set Current Position As Custom TP"
  1740. TextLabel_19.TextColor3 = Color3.new(0, 0, 0)
  1741. TextLabel_19.TextSize = 15
  1742.  
  1743. CBigHead.Name = "CBigHead"
  1744. CBigHead.Parent = SettingsFrame
  1745. CBigHead.BackgroundColor3 = Color3.new(1, 1, 1)
  1746. CBigHead.BackgroundTransparency = 1
  1747. CBigHead.Position = UDim2.new(0, 22, 0, 180)
  1748. CBigHead.Size = UDim2.new(0, 25, 0, 25)
  1749. CBigHead.Image = "rbxassetid://87913710"
  1750. CBigHead.ImageColor3 = Color3.new(0.380392, 0.380392, 0.380392)
  1751.  
  1752. TextLabel_20.Parent = SettingsFrame
  1753. TextLabel_20.BackgroundColor3 = Color3.new(1, 1, 1)
  1754. TextLabel_20.BackgroundTransparency = 1
  1755. TextLabel_20.Position = UDim2.new(0, 55, 0, 182)
  1756. TextLabel_20.Size = UDim2.new(0, 56, 0, 17)
  1757. TextLabel_20.Font = Enum.Font.Arial
  1758. TextLabel_20.FontSize = Enum.FontSize.Size18
  1759. TextLabel_20.Text = "Big Head"
  1760. TextLabel_20.TextColor3 = Color3.new(0, 0, 0)
  1761. TextLabel_20.TextSize = 15
  1762. TextLabel_20.TextXAlignment = Enum.TextXAlignment.Left
  1763.  
  1764. CESP.Name = "CESP"
  1765. CESP.Parent = SettingsFrame
  1766. CESP.BackgroundColor3 = Color3.new(1, 1, 1)
  1767. CESP.BackgroundTransparency = 1
  1768. CESP.Position = UDim2.new(0, 22, 0, 220)
  1769. CESP.Size = UDim2.new(0, 25, 0, 25)
  1770. CESP.Image = "rbxassetid://87913710"
  1771. CESP.ImageColor3 = Color3.new(0.380392, 0.380392, 0.380392)
  1772.  
  1773. TextLabel_21.Parent = SettingsFrame
  1774. TextLabel_21.BackgroundColor3 = Color3.new(1, 1, 1)
  1775. TextLabel_21.BackgroundTransparency = 1
  1776. TextLabel_21.Position = UDim2.new(0, 55, 0, 222)
  1777. TextLabel_21.Size = UDim2.new(0, 56, 0, 17)
  1778. TextLabel_21.Font = Enum.Font.Arial
  1779. TextLabel_21.FontSize = Enum.FontSize.Size18
  1780. TextLabel_21.Text = "ESP"
  1781. TextLabel_21.TextColor3 = Color3.new(0, 0, 0)
  1782. TextLabel_21.TextSize = 15
  1783. TextLabel_21.TextXAlignment = Enum.TextXAlignment.Left
  1784.  
  1785. KeybindConFrame.Name = "KeybindConFrame"
  1786. KeybindConFrame.Parent = SettingsFrame
  1787. KeybindConFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  1788. KeybindConFrame.BorderColor3 = Color3.new(0.737255, 0.345098, 0)
  1789. KeybindConFrame.BorderSizePixel = 3
  1790. KeybindConFrame.Position = UDim2.new(0, 164, 0, 70)
  1791. KeybindConFrame.Size = UDim2.new(0, 270, 0, 150)
  1792. KeybindConFrame.Visible = false
  1793. KeybindConFrame.ZIndex = 2
  1794.  
  1795. TextLabel_22.Parent = KeybindConFrame
  1796. TextLabel_22.BackgroundColor3 = Color3.new(1, 1, 1)
  1797. TextLabel_22.BackgroundTransparency = 1
  1798. TextLabel_22.Position = UDim2.new(0, 74, 0, 10)
  1799. TextLabel_22.Size = UDim2.new(0, 122, 0, 19)
  1800. TextLabel_22.Font = Enum.Font.Arial
  1801. TextLabel_22.FontSize = Enum.FontSize.Size18
  1802. TextLabel_22.Text = "Are You Sure You Want To Continue?"
  1803. TextLabel_22.TextSize = 15
  1804. TextLabel_22.ZIndex = 2
  1805.  
  1806. JewelryKeyy.Name = "JewelryKeyy"
  1807. JewelryKeyy.Parent = KeybindConFrame
  1808. JewelryKeyy.BackgroundColor3 = Color3.new(1, 1, 1)
  1809. JewelryKeyy.BackgroundTransparency = 1
  1810. JewelryKeyy.Position = UDim2.new(0, 13, 0, 39)
  1811. JewelryKeyy.Size = UDim2.new(0, 122, 0, 19)
  1812. JewelryKeyy.Font = Enum.Font.Arial
  1813. JewelryKeyy.FontSize = Enum.FontSize.Size18
  1814. JewelryKeyy.Text = "Jewelry Key Set:"
  1815. JewelryKeyy.TextSize = 15
  1816. JewelryKeyy.TextXAlignment = Enum.TextXAlignment.Left
  1817. JewelryKeyy.ZIndex = 2
  1818.  
  1819. BankKeyy.Name = "BankKeyy"
  1820. BankKeyy.Parent = KeybindConFrame
  1821. BankKeyy.BackgroundColor3 = Color3.new(1, 1, 1)
  1822. BankKeyy.BackgroundTransparency = 1
  1823. BankKeyy.Position = UDim2.new(0, 13, 0, 56)
  1824. BankKeyy.Size = UDim2.new(0, 122, 0, 19)
  1825. BankKeyy.Font = Enum.Font.Arial
  1826. BankKeyy.FontSize = Enum.FontSize.Size18
  1827. BankKeyy.Text = "Bank Key Set:"
  1828. BankKeyy.TextSize = 15
  1829. BankKeyy.TextXAlignment = Enum.TextXAlignment.Left
  1830. BankKeyy.ZIndex = 2
  1831.  
  1832. CriminalKeyy.Name = "CriminalKeyy"
  1833. CriminalKeyy.Parent = KeybindConFrame
  1834. CriminalKeyy.BackgroundColor3 = Color3.new(1, 1, 1)
  1835. CriminalKeyy.BackgroundTransparency = 1
  1836. CriminalKeyy.Position = UDim2.new(0, 13, 0, 73)
  1837. CriminalKeyy.Size = UDim2.new(0, 122, 0, 19)
  1838. CriminalKeyy.Font = Enum.Font.Arial
  1839. CriminalKeyy.FontSize = Enum.FontSize.Size18
  1840. CriminalKeyy.Text = "Criminal Key Set:"
  1841. CriminalKeyy.TextSize = 15
  1842. CriminalKeyy.TextXAlignment = Enum.TextXAlignment.Left
  1843. CriminalKeyy.ZIndex = 2
  1844.  
  1845. KeyContinue.Name = "KeyContinue"
  1846. KeyContinue.Parent = KeybindConFrame
  1847. KeyContinue.BackgroundColor3 = Color3.new(0.737255, 0.345098, 0)
  1848. KeyContinue.BorderSizePixel = 0
  1849. KeyContinue.Position = UDim2.new(0, 16, 0, 104)
  1850. KeyContinue.Size = UDim2.new(0, 100, 0, 30)
  1851. KeyContinue.Font = Enum.Font.Arial
  1852. KeyContinue.FontSize = Enum.FontSize.Size18
  1853. KeyContinue.Text = "Continue"
  1854. KeyContinue.TextColor3 = Color3.new(1, 1, 1)
  1855. KeyContinue.TextSize = 16
  1856. KeyContinue.ZIndex = 2
  1857.  
  1858. KeyCancel.Name = "KeyCancel"
  1859. KeyCancel.Parent = KeybindConFrame
  1860. KeyCancel.BackgroundColor3 = Color3.new(0.737255, 0.345098, 0)
  1861. KeyCancel.BorderSizePixel = 0
  1862. KeyCancel.Position = UDim2.new(0, 155, 0, 104)
  1863. KeyCancel.Size = UDim2.new(0, 100, 0, 30)
  1864. KeyCancel.Font = Enum.Font.Arial
  1865. KeyCancel.FontSize = Enum.FontSize.Size18
  1866. KeyCancel.Text = "Cancel"
  1867. KeyCancel.TextColor3 = Color3.new(1, 1, 1)
  1868. KeyCancel.TextSize = 16
  1869. KeyCancel.ZIndex = 2
  1870.  
  1871. CustomTP.Name = "CustomTP"
  1872. CustomTP.Parent = SettingsFrame
  1873. CustomTP.BackgroundColor3 = Color3.new(0.737255, 0.345098, 0)
  1874. CustomTP.BorderSizePixel = 0
  1875. CustomTP.Position = UDim2.new(0, 248, 0, 170)
  1876. CustomTP.Size = UDim2.new(0, 101, 0, 29)
  1877. CustomTP.Font = Enum.Font.Arial
  1878. CustomTP.FontSize = Enum.FontSize.Size18
  1879. CustomTP.Text = "GoPoint"
  1880. CustomTP.TextColor3 = Color3.new(1, 1, 1)
  1881. CustomTP.TextSize = 17
  1882.  
  1883. JewelryKeyBox.Name = "JewelryKeyBox"
  1884. JewelryKeyBox.Parent = SettingsFrame
  1885. JewelryKeyBox.BackgroundColor3 = Color3.new(1, 1, 1)
  1886. JewelryKeyBox.BorderColor3 = Color3.new(0.737255, 0.345098, 0)
  1887. JewelryKeyBox.ClipsDescendants = true
  1888. JewelryKeyBox.Position = UDim2.new(0, 234, 0, 70)
  1889. JewelryKeyBox.Size = UDim2.new(0, 30, 0, 29)
  1890. JewelryKeyBox.ClearTextOnFocus = false
  1891. JewelryKeyBox.Font = Enum.Font.Arial
  1892. JewelryKeyBox.FontSize = Enum.FontSize.Size18
  1893. JewelryKeyBox.Text = "J"
  1894. JewelryKeyBox.TextSize = 16
  1895.  
  1896. CrimBaseBox.Name = "CrimBaseBox"
  1897. CrimBaseBox.Parent = SettingsFrame
  1898. CrimBaseBox.BackgroundColor3 = Color3.new(1, 1, 1)
  1899. CrimBaseBox.BorderColor3 = Color3.new(0.737255, 0.345098, 0)
  1900. CrimBaseBox.ClipsDescendants = true
  1901. CrimBaseBox.Position = UDim2.new(0, 284, 0, 70)
  1902. CrimBaseBox.Size = UDim2.new(0, 30, 0, 29)
  1903. CrimBaseBox.ClearTextOnFocus = false
  1904. CrimBaseBox.Font = Enum.Font.Arial
  1905. CrimBaseBox.FontSize = Enum.FontSize.Size18
  1906. CrimBaseBox.Text = "C"
  1907. CrimBaseBox.TextSize = 16
  1908.  
  1909. BankKeyBox.Name = "BankKeyBox"
  1910. BankKeyBox.Parent = SettingsFrame
  1911. BankKeyBox.BackgroundColor3 = Color3.new(1, 1, 1)
  1912. BankKeyBox.BorderColor3 = Color3.new(0.737255, 0.345098, 0)
  1913. BankKeyBox.ClipsDescendants = true
  1914. BankKeyBox.Position = UDim2.new(0, 334, 0, 70)
  1915. BankKeyBox.Size = UDim2.new(0, 30, 0, 29)
  1916. BankKeyBox.ClearTextOnFocus = false
  1917. BankKeyBox.Font = Enum.Font.Arial
  1918. BankKeyBox.FontSize = Enum.FontSize.Size18
  1919. BankKeyBox.Text = "B"
  1920. BankKeyBox.TextSize = 16
  1921.  
  1922. SetKeybind.Name = "SetKeybind"
  1923. SetKeybind.Parent = SettingsFrame
  1924. SetKeybind.BackgroundColor3 = Color3.new(0.737255, 0.345098, 0)
  1925. SetKeybind.BorderSizePixel = 0
  1926. SetKeybind.Position = UDim2.new(0, 265, 0, 120)
  1927. SetKeybind.Size = UDim2.new(0, 67, 0, 29)
  1928. SetKeybind.Font = Enum.Font.Arial
  1929. SetKeybind.FontSize = Enum.FontSize.Size18
  1930. SetKeybind.Text = "Set"
  1931. SetKeybind.TextColor3 = Color3.new(1, 1, 1)
  1932. SetKeybind.TextSize = 17
  1933.  
  1934. TextLabel_23.Parent = SettingsFrame
  1935. TextLabel_23.BackgroundColor3 = Color3.new(1, 1, 1)
  1936. TextLabel_23.BackgroundTransparency = 1
  1937. TextLabel_23.Position = UDim2.new(0, 271, 0, 35)
  1938. TextLabel_23.Size = UDim2.new(0, 56, 0, 17)
  1939. TextLabel_23.Font = Enum.Font.Arial
  1940. TextLabel_23.FontSize = Enum.FontSize.Size18
  1941. TextLabel_23.Text = "Keybind"
  1942. TextLabel_23.TextColor3 = Color3.new(0, 0, 0)
  1943. TextLabel_23.TextSize = 15
  1944.  
  1945. Coords.Name = "Coords"
  1946. Coords.Parent = SettingsFrame
  1947. Coords.BackgroundColor3 = Color3.new(0.737255, 0.345098, 0)
  1948. Coords.BorderSizePixel = 0
  1949. Coords.Position = UDim2.new(0, 248, 0, 240)
  1950. Coords.Size = UDim2.new(0, 101, 0, 29)
  1951. Coords.Font = Enum.Font.Arial
  1952. Coords.FontSize = Enum.FontSize.Size18
  1953. Coords.Text = "Checkpoint"
  1954. Coords.TextColor3 = Color3.new(1, 1, 1)
  1955. Coords.TextSize = 17
  1956.  
  1957. UIColorButton.Name = "UIColorButton"
  1958. UIColorButton.Parent = SettingsFrame
  1959. UIColorButton.BackgroundColor3 = Color3.new(0.737255, 0.345098, 0)
  1960. UIColorButton.BorderSizePixel = 0
  1961. UIColorButton.Position = UDim2.new(0, 450, 0, 130)
  1962. UIColorButton.Size = UDim2.new(0, 101, 0, 29)
  1963. UIColorButton.Font = Enum.Font.Arial
  1964. UIColorButton.FontSize = Enum.FontSize.Size18
  1965. UIColorButton.Text = "UI Color"
  1966. UIColorButton.TextColor3 = Color3.new(1, 1, 1)
  1967. UIColorButton.TextSize = 17
  1968.  
  1969. Reset.Name = "Reset"
  1970. Reset.Parent = SettingsFrame
  1971. Reset.BackgroundColor3 = Color3.new(0.333333, 0.333333, 0.333333)
  1972. Reset.BorderSizePixel = 0
  1973. Reset.Position = UDim2.new(0, 450, 0, 240)
  1974. Reset.Size = UDim2.new(0, 101, 0, 29)
  1975. Reset.Font = Enum.Font.Arial
  1976. Reset.FontSize = Enum.FontSize.Size18
  1977. Reset.Text = "RESET!"
  1978. Reset.TextColor3 = Color3.new(0.666667, 0, 0)
  1979. Reset.TextSize = 17
  1980.  
  1981. CForceField.Name = "CForceField"
  1982. CForceField.Parent = SettingsFrame
  1983. CForceField.BackgroundColor3 = Color3.new(1, 1, 1)
  1984. CForceField.BackgroundTransparency = 1
  1985. CForceField.Position = UDim2.new(0, 22, 0, 260)
  1986. CForceField.Size = UDim2.new(0, 25, 0, 25)
  1987. CForceField.Image = "rbxassetid://87913710"
  1988. CForceField.ImageColor3 = Color3.new(0.380392, 0.380392, 0.380392)
  1989.  
  1990. TextLabel_24.Parent = SettingsFrame
  1991. TextLabel_24.BackgroundColor3 = Color3.new(1, 1, 1)
  1992. TextLabel_24.BackgroundTransparency = 1
  1993. TextLabel_24.Position = UDim2.new(0, 55, 0, 262)
  1994. TextLabel_24.Size = UDim2.new(0, 56, 0, 17)
  1995. TextLabel_24.Font = Enum.Font.Arial
  1996. TextLabel_24.FontSize = Enum.FontSize.Size18
  1997. TextLabel_24.Text = "ForceField"
  1998. TextLabel_24.TextColor3 = Color3.new(0, 0, 0)
  1999. TextLabel_24.TextSize = 15
  2000. TextLabel_24.TextXAlignment = Enum.TextXAlignment.Left
  2001.  
  2002. Explorer.Name = "Explorer"
  2003. Explorer.Parent = SettingsFrame
  2004. Explorer.BackgroundColor3 = Color3.new(0.737255, 0.345098, 0)
  2005. Explorer.BorderSizePixel = 0
  2006. Explorer.Position = UDim2.new(0, 450, 0, 185)
  2007. Explorer.Size = UDim2.new(0, 101, 0, 29)
  2008. Explorer.Font = Enum.Font.Arial
  2009. Explorer.FontSize = Enum.FontSize.Size18
  2010. Explorer.Text = "Explorer"
  2011. Explorer.TextColor3 = Color3.new(1, 1, 1)
  2012. Explorer.TextSize = 17
  2013.  
  2014. GameFrame.Name = "GameFrame"
  2015. GameFrame.Parent = TabFrames
  2016. GameFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  2017. GameFrame.BorderSizePixel = 0
  2018. GameFrame.ClipsDescendants = true
  2019. GameFrame.Size = UDim2.new(0, 598, 0, 289)
  2020. GameFrame.Visible = false
  2021.  
  2022. InfiniteAmmo.Name = "InfiniteAmmo"
  2023. InfiniteAmmo.Parent = GameFrame
  2024. InfiniteAmmo.BackgroundColor3 = Color3.new(0.737255, 0.345098, 0)
  2025. InfiniteAmmo.BorderSizePixel = 0
  2026. InfiniteAmmo.Position = UDim2.new(0, 318, 0, 50)
  2027. InfiniteAmmo.Size = UDim2.new(0, 89, 0, 25)
  2028. InfiniteAmmo.AutoButtonColor = false
  2029. InfiniteAmmo.Font = Enum.Font.Arial
  2030. InfiniteAmmo.FontSize = Enum.FontSize.Size18
  2031. InfiniteAmmo.Text = "Ammo: OFF"
  2032. InfiniteAmmo.TextColor3 = Color3.new(1, 1, 1)
  2033. InfiniteAmmo.TextSize = 15
  2034.  
  2035. JumpPower.Name = "JumpPower"
  2036. JumpPower.Parent = GameFrame
  2037. JumpPower.BackgroundColor3 = Color3.new(0.737255, 0.345098, 0)
  2038. JumpPower.BorderSizePixel = 0
  2039. JumpPower.Position = UDim2.new(0, 218, 0, 50)
  2040. JumpPower.Size = UDim2.new(0, 89, 0, 25)
  2041. JumpPower.AutoButtonColor = false
  2042. JumpPower.Font = Enum.Font.Arial
  2043. JumpPower.FontSize = Enum.FontSize.Size18
  2044. JumpPower.Text = "Jump: OFF"
  2045. JumpPower.TextColor3 = Color3.new(1, 1, 1)
  2046. JumpPower.TextSize = 15
  2047.  
  2048. NoClip.Name = "NoClip"
  2049. NoClip.Parent = GameFrame
  2050. NoClip.BackgroundColor3 = Color3.new(0.737255, 0.345098, 0)
  2051. NoClip.BorderSizePixel = 0
  2052. NoClip.Position = UDim2.new(0, 22, 0, 50)
  2053. NoClip.Size = UDim2.new(0, 89, 0, 25)
  2054. NoClip.AutoButtonColor = false
  2055. NoClip.Font = Enum.Font.Arial
  2056. NoClip.FontSize = Enum.FontSize.Size18
  2057. NoClip.Text = "NoClip: OFF"
  2058. NoClip.TextColor3 = Color3.new(1, 1, 1)
  2059. NoClip.TextSize = 15
  2060.  
  2061. Gravity.Name = "Gravity"
  2062. Gravity.Parent = GameFrame
  2063. Gravity.BackgroundColor3 = Color3.new(0.737255, 0.345098, 0)
  2064. Gravity.BorderSizePixel = 0
  2065. Gravity.Position = UDim2.new(0, 120, 0, 50)
  2066. Gravity.Size = UDim2.new(0, 89, 0, 25)
  2067. Gravity.AutoButtonColor = false
  2068. Gravity.Font = Enum.Font.Arial
  2069. Gravity.FontSize = Enum.FontSize.Size18
  2070. Gravity.Text = "Gravity: OFF"
  2071. Gravity.TextColor3 = Color3.new(1, 1, 1)
  2072. Gravity.TextSize = 15
  2073.  
  2074. RemoveAll.Name = "RemoveAll"
  2075. RemoveAll.Parent = GameFrame
  2076. RemoveAll.BackgroundColor3 = Color3.new(0.290196, 0.290196, 0.290196)
  2077. RemoveAll.BorderSizePixel = 0
  2078. RemoveAll.Position = UDim2.new(0, 22, 0, 85)
  2079. RemoveAll.Size = UDim2.new(0, 89, 0, 25)
  2080. RemoveAll.AutoButtonColor = false
  2081. RemoveAll.Font = Enum.Font.Arial
  2082. RemoveAll.FontSize = Enum.FontSize.Size18
  2083. RemoveAll.Text = "Remove All"
  2084. RemoveAll.TextColor3 = Color3.new(1, 1, 1)
  2085. RemoveAll.TextSize = 15
  2086.  
  2087. AnnoyServer.Name = "AnnoyServer"
  2088. AnnoyServer.Parent = GameFrame
  2089. AnnoyServer.BackgroundColor3 = Color3.new(0.737255, 0.345098, 0)
  2090. AnnoyServer.BorderSizePixel = 0
  2091. AnnoyServer.Position = UDim2.new(0, 318, 0, 120)
  2092. AnnoyServer.Size = UDim2.new(0, 89, 0, 25)
  2093. AnnoyServer.AutoButtonColor = false
  2094. AnnoyServer.Font = Enum.Font.Arial
  2095. AnnoyServer.FontSize = Enum.FontSize.Size18
  2096. AnnoyServer.Text = "Annoy Server"
  2097. AnnoyServer.TextColor3 = Color3.new(1, 1, 1)
  2098. AnnoyServer.TextSize = 15
  2099.  
  2100. VehicleSpeed.Name = "VehicleSpeed"
  2101. VehicleSpeed.Parent = GameFrame
  2102. VehicleSpeed.BackgroundColor3 = Color3.new(0.290196, 0.290196, 0.290196)
  2103. VehicleSpeed.BorderSizePixel = 0
  2104. VehicleSpeed.Position = UDim2.new(0, 218, 0, 85)
  2105. VehicleSpeed.Size = UDim2.new(0, 89, 0, 25)
  2106. VehicleSpeed.AutoButtonColor = false
  2107. VehicleSpeed.Font = Enum.Font.Arial
  2108. VehicleSpeed.FontSize = Enum.FontSize.Size18
  2109. VehicleSpeed.Text = "Car Speed"
  2110. VehicleSpeed.TextColor3 = Color3.new(1, 1, 1)
  2111. VehicleSpeed.TextSize = 15
  2112.  
  2113. WalkSpeed.Name = "WalkSpeed"
  2114. WalkSpeed.Parent = GameFrame
  2115. WalkSpeed.BackgroundColor3 = Color3.new(0.290196, 0.290196, 0.290196)
  2116. WalkSpeed.BorderSizePixel = 0
  2117. WalkSpeed.Position = UDim2.new(0, 120, 0, 85)
  2118. WalkSpeed.Size = UDim2.new(0, 89, 0, 25)
  2119. WalkSpeed.AutoButtonColor = false
  2120. WalkSpeed.Font = Enum.Font.Arial
  2121. WalkSpeed.FontSize = Enum.FontSize.Size18
  2122. WalkSpeed.Text = "Walk Speed"
  2123. WalkSpeed.TextColor3 = Color3.new(1, 1, 1)
  2124. WalkSpeed.TextSize = 15
  2125.  
  2126. GodMode.Name = "GodMode"
  2127. GodMode.Parent = GameFrame
  2128. GodMode.BackgroundColor3 = Color3.new(0.737255, 0.345098, 0)
  2129. GodMode.BorderSizePixel = 0
  2130. GodMode.Position = UDim2.new(0, 218, 0, 120)
  2131. GodMode.Size = UDim2.new(0, 89, 0, 25)
  2132. GodMode.AutoButtonColor = false
  2133. GodMode.Font = Enum.Font.Arial
  2134. GodMode.FontSize = Enum.FontSize.Size18
  2135. GodMode.Text = "God Mode"
  2136. GodMode.TextColor3 = Color3.new(1, 1, 1)
  2137. GodMode.TextSize = 15
  2138.  
  2139. AK47.Name = "AK47"
  2140. AK47.Parent = GameFrame
  2141. AK47.BackgroundColor3 = Color3.new(0.290196, 0.290196, 0.290196)
  2142. AK47.BorderSizePixel = 0
  2143. AK47.Position = UDim2.new(0, 218, 0, 155)
  2144. AK47.Size = UDim2.new(0, 89, 0, 25)
  2145. AK47.AutoButtonColor = false
  2146. AK47.Font = Enum.Font.Arial
  2147. AK47.FontSize = Enum.FontSize.Size18
  2148. AK47.Text = "AK-47"
  2149. AK47.TextColor3 = Color3.new(1, 1, 1)
  2150. AK47.TextSize = 15
  2151.  
  2152. ClickTP.Name = "ClickTP"
  2153. ClickTP.Parent = GameFrame
  2154. ClickTP.BackgroundColor3 = Color3.new(0.737255, 0.345098, 0)
  2155. ClickTP.BorderSizePixel = 0
  2156. ClickTP.Position = UDim2.new(0, 218, 0, 190)
  2157. ClickTP.Size = UDim2.new(0, 89, 0, 25)
  2158. ClickTP.AutoButtonColor = false
  2159. ClickTP.Font = Enum.Font.Arial
  2160. ClickTP.FontSize = Enum.FontSize.Size18
  2161. ClickTP.Text = "Click TP"
  2162. ClickTP.TextColor3 = Color3.new(1, 1, 1)
  2163. ClickTP.TextSize = 15
  2164.  
  2165. AutoRob.Name = "AutoRob"
  2166. AutoRob.Parent = GameFrame
  2167. AutoRob.BackgroundColor3 = Color3.new(0.737255, 0.345098, 0)
  2168. AutoRob.BorderSizePixel = 0
  2169. AutoRob.Position = UDim2.new(0, 318, 0, 190)
  2170. AutoRob.Size = UDim2.new(0, 89, 0, 25)
  2171. AutoRob.AutoButtonColor = false
  2172. AutoRob.Font = Enum.Font.Arial
  2173. AutoRob.FontSize = Enum.FontSize.Size18
  2174. AutoRob.Text = "Auto Rob"
  2175. AutoRob.TextColor3 = Color3.new(1, 1, 1)
  2176. AutoRob.TextSize = 15
  2177.  
  2178. ShotGun.Name = "ShotGun"
  2179. ShotGun.Parent = GameFrame
  2180. ShotGun.BackgroundColor3 = Color3.new(0.290196, 0.290196, 0.290196)
  2181. ShotGun.BorderSizePixel = 0
  2182. ShotGun.Position = UDim2.new(0, 318, 0, 155)
  2183. ShotGun.Size = UDim2.new(0, 89, 0, 25)
  2184. ShotGun.AutoButtonColor = false
  2185. ShotGun.Font = Enum.Font.Arial
  2186. ShotGun.FontSize = Enum.FontSize.Size18
  2187. ShotGun.Text = "Shot Gun"
  2188. ShotGun.TextColor3 = Color3.new(1, 1, 1)
  2189. ShotGun.TextSize = 15
  2190.  
  2191. Btools.Name = "Btools"
  2192. Btools.Parent = GameFrame
  2193. Btools.BackgroundColor3 = Color3.new(0.290196, 0.290196, 0.290196)
  2194. Btools.BorderSizePixel = 0
  2195. Btools.Position = UDim2.new(0, 318, 0, 85)
  2196. Btools.Size = UDim2.new(0, 89, 0, 25)
  2197. Btools.AutoButtonColor = false
  2198. Btools.Font = Enum.Font.Arial
  2199. Btools.FontSize = Enum.FontSize.Size18
  2200. Btools.Text = "Btools"
  2201. Btools.TextColor3 = Color3.new(1, 1, 1)
  2202. Btools.TextSize = 15
  2203.  
  2204. Pistol.Name = "Pistol"
  2205. Pistol.Parent = GameFrame
  2206. Pistol.BackgroundColor3 = Color3.new(0.737255, 0.345098, 0)
  2207. Pistol.BorderSizePixel = 0
  2208. Pistol.Position = UDim2.new(0, 22, 0, 190)
  2209. Pistol.Size = UDim2.new(0, 89, 0, 25)
  2210. Pistol.AutoButtonColor = false
  2211. Pistol.Font = Enum.Font.Arial
  2212. Pistol.FontSize = Enum.FontSize.Size18
  2213. Pistol.Text = "Pistol"
  2214. Pistol.TextColor3 = Color3.new(1, 1, 1)
  2215. Pistol.TextSize = 15
  2216.  
  2217. SpamArrest.Name = "SpamArrest"
  2218. SpamArrest.Parent = GameFrame
  2219. SpamArrest.BackgroundColor3 = Color3.new(0.737255, 0.345098, 0)
  2220. SpamArrest.BorderSizePixel = 0
  2221. SpamArrest.Position = UDim2.new(0, 22, 0, 120)
  2222. SpamArrest.Size = UDim2.new(0, 89, 0, 25)
  2223. SpamArrest.AutoButtonColor = false
  2224. SpamArrest.Font = Enum.Font.Arial
  2225. SpamArrest.FontSize = Enum.FontSize.Size18
  2226. SpamArrest.Text = "Spam Arrest"
  2227. SpamArrest.TextColor3 = Color3.new(1, 1, 1)
  2228. SpamArrest.TextSize = 15
  2229.  
  2230. KeyCard.Name = "KeyCard"
  2231. KeyCard.Parent = GameFrame
  2232. KeyCard.BackgroundColor3 = Color3.new(0.737255, 0.345098, 0)
  2233. KeyCard.BorderSizePixel = 0
  2234. KeyCard.Position = UDim2.new(0, 120, 0, 120)
  2235. KeyCard.Size = UDim2.new(0, 89, 0, 25)
  2236. KeyCard.AutoButtonColor = false
  2237. KeyCard.Font = Enum.Font.Arial
  2238. KeyCard.FontSize = Enum.FontSize.Size18
  2239. KeyCard.Text = "Key Card"
  2240. KeyCard.TextColor3 = Color3.new(1, 1, 1)
  2241. KeyCard.TextSize = 15
  2242.  
  2243. M4A4.Name = "M4A4"
  2244. M4A4.Parent = GameFrame
  2245. M4A4.BackgroundColor3 = Color3.new(0.290196, 0.290196, 0.290196)
  2246. M4A4.BorderSizePixel = 0
  2247. M4A4.Position = UDim2.new(0, 120, 0, 155)
  2248. M4A4.Size = UDim2.new(0, 89, 0, 25)
  2249. M4A4.AutoButtonColor = false
  2250. M4A4.Font = Enum.Font.Arial
  2251. M4A4.FontSize = Enum.FontSize.Size18
  2252. M4A4.Text = "M4A4"
  2253. M4A4.TextColor3 = Color3.new(1, 1, 1)
  2254. M4A4.TextSize = 15
  2255.  
  2256. Fly.Name = "Fly"
  2257. Fly.Parent = GameFrame
  2258. Fly.BackgroundColor3 = Color3.new(0.290196, 0.290196, 0.290196)
  2259. Fly.BorderSizePixel = 0
  2260. Fly.Position = UDim2.new(0, 22, 0, 155)
  2261. Fly.Size = UDim2.new(0, 89, 0, 25)
  2262. Fly.AutoButtonColor = false
  2263. Fly.Font = Enum.Font.Arial
  2264. Fly.FontSize = Enum.FontSize.Size18
  2265. Fly.Text = "Fly: OFF"
  2266. Fly.TextColor3 = Color3.new(1, 1, 1)
  2267. Fly.TextSize = 15
  2268.  
  2269. FlashLight.Name = "FlashLight"
  2270. FlashLight.Parent = GameFrame
  2271. FlashLight.BackgroundColor3 = Color3.new(0.737255, 0.345098, 0)
  2272. FlashLight.BorderSizePixel = 0
  2273. FlashLight.Position = UDim2.new(0, 120, 0, 190)
  2274. FlashLight.Size = UDim2.new(0, 89, 0, 25)
  2275. FlashLight.AutoButtonColor = false
  2276. FlashLight.Font = Enum.Font.Arial
  2277. FlashLight.FontSize = Enum.FontSize.Size18
  2278. FlashLight.Text = "Flash Light"
  2279. FlashLight.TextColor3 = Color3.new(1, 1, 1)
  2280. FlashLight.TextSize = 15
  2281.  
  2282. TextLabel_25.Parent = GameFrame
  2283. TextLabel_25.BackgroundColor3 = Color3.new(0.337255, 0.337255, 0.337255)
  2284. TextLabel_25.BorderSizePixel = 0
  2285. TextLabel_25.Position = UDim2.new(0, 527, 0, -60)
  2286. TextLabel_25.Size = UDim2.new(0, 8, 0, 409)
  2287. TextLabel_25.Font = Enum.Font.Arial
  2288. TextLabel_25.FontSize = Enum.FontSize.Size24
  2289. TextLabel_25.Text = ""
  2290. TextLabel_25.TextColor3 = Color3.new(0, 0, 0)
  2291. TextLabel_25.TextSize = 20
  2292.  
  2293. TextLabel_26.Parent = GameFrame
  2294. TextLabel_26.BackgroundColor3 = Color3.new(0.337255, 0.337255, 0.337255)
  2295. TextLabel_26.BorderSizePixel = 0
  2296. TextLabel_26.Position = UDim2.new(0, 486, 0, -60)
  2297. TextLabel_26.Size = UDim2.new(0, 31, 0, 409)
  2298. TextLabel_26.Font = Enum.Font.Arial
  2299. TextLabel_26.FontSize = Enum.FontSize.Size24
  2300. TextLabel_26.Text = ""
  2301. TextLabel_26.TextColor3 = Color3.new(0, 0, 0)
  2302. TextLabel_26.TextSize = 20
  2303.  
  2304. TextLabel_27.Parent = GameFrame
  2305. TextLabel_27.BackgroundColor3 = Color3.new(0.921569, 0.431373, 0)
  2306. TextLabel_27.BorderSizePixel = 0
  2307. TextLabel_27.Position = UDim2.new(0, 467, 0, -60)
  2308. TextLabel_27.Size = UDim2.new(0, 10, 0, 409)
  2309. TextLabel_27.Font = Enum.Font.Arial
  2310. TextLabel_27.FontSize = Enum.FontSize.Size24
  2311. TextLabel_27.Text = ""
  2312. TextLabel_27.TextColor3 = Color3.new(0, 0, 0)
  2313. TextLabel_27.TextSize = 20
  2314.  
  2315. MainLogo2.Name = "MainLogo2"
  2316. MainLogo2.Parent = GameFrame
  2317. MainLogo2.BackgroundColor3 = Color3.new(1, 1, 1)
  2318. MainLogo2.BackgroundTransparency = 1
  2319. MainLogo2.Position = UDim2.new(0, 444, 0, 84)
  2320. MainLogo2.Size = UDim2.new(0, 120, 0, 120)
  2321. MainLogo2.Image = "rbxassetid://1101478778"
  2322.  
  2323. Tabs.Name = "Tabs"
  2324. Tabs.Parent = TabFrames
  2325. Tabs.BackgroundColor3 = Color3.new(0.290196, 0.290196, 0.290196)
  2326. Tabs.BackgroundTransparency = 1
  2327. Tabs.ClipsDescendants = true
  2328. Tabs.Position = UDim2.new(0, 7, 0, 7)
  2329. Tabs.Size = UDim2.new(0, 26, 0, 27)
  2330. Tabs.Image = "rbxassetid://1037417986"
  2331. Tabs.ImageColor3 = Color3.new(0.290196, 0.290196, 0.290196)
  2332.  
  2333. Dark.Name = "Dark"
  2334. Dark.Parent = TabFrames
  2335. Dark.BackgroundColor3 = Color3.new(0, 0, 0)
  2336. Dark.BorderSizePixel = 0
  2337. Dark.ClipsDescendants = true
  2338. Dark.Size = UDim2.new(0, 598, 0, 289)
  2339. Dark.Visible = false
  2340.  
  2341. MainLogo.Name = "MainLogo"
  2342. MainLogo.Parent = Unjailbreak
  2343. MainLogo.BackgroundColor3 = Color3.new(1, 1, 1)
  2344. MainLogo.BackgroundTransparency = 1
  2345. MainLogo.Position = UDim2.new(0.460416675, 0, 0.411829144, 0)
  2346. MainLogo.Size = UDim2.new(0, 160, 0, 160)
  2347. MainLogo.Image = "rbxassetid://1101478778"
  2348. MainLogo.ImageTransparency = 1
  2349.  
  2350. TextLabel_28.Parent = MainLogo
  2351. TextLabel_28.BackgroundColor3 = Color3.new(1, 1, 1)
  2352. TextLabel_28.BackgroundTransparency = 1
  2353. TextLabel_28.Position = UDim2.new(-0.125, 0, 1, 0)
  2354. TextLabel_28.Size = UDim2.new(0, 200, 0, 50)
  2355. TextLabel_28.Font = Enum.Font.Arial
  2356. TextLabel_28.FontSize = Enum.FontSize.Size28
  2357. TextLabel_28.Text = "Created By Unlisting"
  2358. TextLabel_28.TextColor3 = Color3.new(0.890196, 0.890196, 0.890196)
  2359. TextLabel_28.TextSize = 25
  2360. TextLabel_28.TextTransparency = 1
  2361.  
  2362. JNotifierOpen.Name = "JNotifierOpen"
  2363. JNotifierOpen.Parent = Unjailbreak
  2364. JNotifierOpen.BackgroundColor3 = Color3.new(1, 1, 1)
  2365. JNotifierOpen.BorderSizePixel = 0
  2366. JNotifierOpen.Position = UDim2.new(1, 0, 0.720000029, 0)
  2367. JNotifierOpen.Size = UDim2.new(0.10520833, 0, 0.0799561888, 0)
  2368.  
  2369. TextLabel_29.Parent = JNotifierOpen
  2370. TextLabel_29.BackgroundColor3 = Color3.new(1, 1, 1)
  2371. TextLabel_29.BackgroundTransparency = 1
  2372. TextLabel_29.Size = UDim2.new(0, 202, 0, 37)
  2373. TextLabel_29.Font = Enum.Font.Cartoon
  2374. TextLabel_29.FontSize = Enum.FontSize.Size24
  2375. TextLabel_29.Text = "Jewelry Store Is Open!"
  2376. TextLabel_29.TextColor3 = Color3.new(0, 0, 0)
  2377. TextLabel_29.TextSize = 20
  2378.  
  2379. GotoJewelry.Name = "GotoJewelry"
  2380. GotoJewelry.Parent = JNotifierOpen
  2381. GotoJewelry.BackgroundColor3 = Color3.new(0.290196, 0.290196, 0.290196)
  2382. GotoJewelry.BorderSizePixel = 0
  2383. GotoJewelry.Position = UDim2.new(0, 51, 0, 37)
  2384. GotoJewelry.Size = UDim2.new(0, 99, 0, 36)
  2385. GotoJewelry.Font = Enum.Font.Cartoon
  2386. GotoJewelry.FontSize = Enum.FontSize.Size24
  2387. GotoJewelry.Text = "Goto"
  2388. GotoJewelry.TextColor3 = Color3.new(1, 1, 1)
  2389. GotoJewelry.TextSize = 20
  2390.  
  2391. BNotifierOpen.Name = "BNotifierOpen"
  2392. BNotifierOpen.Parent = Unjailbreak
  2393. BNotifierOpen.BackgroundColor3 = Color3.new(1, 1, 1)
  2394. BNotifierOpen.BorderSizePixel = 0
  2395. BNotifierOpen.Position = UDim2.new(1, 0, 0.633000016, 0)
  2396. BNotifierOpen.Size = UDim2.new(0.10520833, 0, 0.0799561888, 0)
  2397.  
  2398. TextLabel_30.Parent = BNotifierOpen
  2399. TextLabel_30.BackgroundColor3 = Color3.new(1, 1, 1)
  2400. TextLabel_30.BackgroundTransparency = 1
  2401. TextLabel_30.Size = UDim2.new(0, 202, 0, 45)
  2402. TextLabel_30.Font = Enum.Font.Cartoon
  2403. TextLabel_30.FontSize = Enum.FontSize.Size24
  2404. TextLabel_30.Text = "Bank Is Now Open!"
  2405. TextLabel_30.TextColor3 = Color3.new(0, 0, 0)
  2406. TextLabel_30.TextSize = 20
  2407.  
  2408. GotoBank.Name = "GotoBank"
  2409. GotoBank.Parent = BNotifierOpen
  2410. GotoBank.BackgroundColor3 = Color3.new(0.290196, 0.290196, 0.290196)
  2411. GotoBank.BorderSizePixel = 0
  2412. GotoBank.Position = UDim2.new(0, 51, 0, 37)
  2413. GotoBank.Size = UDim2.new(0, 99, 0, 36)
  2414. GotoBank.Font = Enum.Font.Cartoon
  2415. GotoBank.FontSize = Enum.FontSize.Size24
  2416. GotoBank.Text = "Goto"
  2417. GotoBank.TextColor3 = Color3.new(1, 1, 1)
  2418. GotoBank.TextSize = 20
  2419.  
  2420. LPlayerDetect.Name = "LPlayerDetect"
  2421. LPlayerDetect.Parent = Unjailbreak
  2422. LPlayerDetect.BackgroundColor3 = Color3.new(0.282353, 0.282353, 0.282353)
  2423. LPlayerDetect.BorderSizePixel = 0
  2424. LPlayerDetect.ClipsDescendants = true
  2425. LPlayerDetect.Position = UDim2.new(0.404687494, 0, 0.0339539982, 0)
  2426.  
  2427. PlayerNameDetected.Name = "PlayerNameDetected"
  2428. PlayerNameDetected.Parent = LPlayerDetect
  2429. PlayerNameDetected.BackgroundColor3 = Color3.new(1, 1, 1)
  2430. PlayerNameDetected.BackgroundTransparency = 1
  2431. PlayerNameDetected.Position = UDim2.new(0, 83, 0, 15)
  2432. PlayerNameDetected.Size = UDim2.new(0, 200, 0, 34)
  2433. PlayerNameDetected.Font = Enum.Font.Arial
  2434. PlayerNameDetected.FontSize = Enum.FontSize.Size32
  2435. PlayerNameDetected.Text = "Player Name Here"
  2436. PlayerNameDetected.TextColor3 = Color3.new(1, 1, 1)
  2437. PlayerNameDetected.TextSize = 30
  2438.  
  2439. TextLabel_31.Parent = LPlayerDetect
  2440. TextLabel_31.BackgroundColor3 = Color3.new(1, 1, 1)
  2441. TextLabel_31.BackgroundTransparency = 1
  2442. TextLabel_31.Position = UDim2.new(0, 83, 0, 72)
  2443. TextLabel_31.Size = UDim2.new(0, 200, 0, 34)
  2444. TextLabel_31.Font = Enum.Font.Arial
  2445. TextLabel_31.FontSize = Enum.FontSize.Size24
  2446. TextLabel_31.Text = "You Were Detected As An Admin"
  2447. TextLabel_31.TextColor3 = Color3.new(1, 1, 1)
  2448. TextLabel_31.TextSize = 20
  2449.  
  2450. TextLabel_32.Parent = LPlayerDetect
  2451. TextLabel_32.BackgroundColor3 = Color3.new(1, 1, 1)
  2452. TextLabel_32.BackgroundTransparency = 1
  2453. TextLabel_32.Position = UDim2.new(0, 83, 0, 89)
  2454. TextLabel_32.Size = UDim2.new(0, 200, 0, 34)
  2455. TextLabel_32.Font = Enum.Font.Arial
  2456. TextLabel_32.FontSize = Enum.FontSize.Size24
  2457. TextLabel_32.Text = "On Unjailbreak"
  2458. TextLabel_32.TextColor3 = Color3.new(1, 1, 1)
  2459. TextLabel_32.TextSize = 20
  2460.  
  2461. TextLabel_33.Parent = LPlayerDetect
  2462. TextLabel_33.BackgroundColor3 = Color3.new(1, 1, 1)
  2463. TextLabel_33.BackgroundTransparency = 1
  2464. TextLabel_33.Position = UDim2.new(0, 83, 0, 126)
  2465. TextLabel_33.Size = UDim2.new(0, 200, 0, 34)
  2466. TextLabel_33.Font = Enum.Font.Arial
  2467. TextLabel_33.FontSize = Enum.FontSize.Size24
  2468. TextLabel_33.Text = "Your Name Has Been Announced"
  2469. TextLabel_33.TextColor3 = Color3.new(1, 1, 1)
  2470. TextLabel_33.TextSize = 20
  2471.  
  2472. TextLabel_34.Parent = LPlayerDetect
  2473. TextLabel_34.BackgroundColor3 = Color3.new(1, 1, 1)
  2474. TextLabel_34.BackgroundTransparency = 1
  2475. TextLabel_34.Position = UDim2.new(0, 83, 0, 143)
  2476. TextLabel_34.Size = UDim2.new(0, 200, 0, 34)
  2477. TextLabel_34.Font = Enum.Font.Arial
  2478. TextLabel_34.FontSize = Enum.FontSize.Size24
  2479. TextLabel_34.Text = "To Other Players Using Unjailbreak On"
  2480. TextLabel_34.TextColor3 = Color3.new(1, 1, 1)
  2481. TextLabel_34.TextSize = 20
  2482.  
  2483. TextLabel_35.Parent = LPlayerDetect
  2484. TextLabel_35.BackgroundColor3 = Color3.new(1, 1, 1)
  2485. TextLabel_35.BackgroundTransparency = 1
  2486. TextLabel_35.Position = UDim2.new(0, 83, 0, 161)
  2487. TextLabel_35.Size = UDim2.new(0, 200, 0, 34)
  2488. TextLabel_35.Font = Enum.Font.Arial
  2489. TextLabel_35.FontSize = Enum.FontSize.Size24
  2490. TextLabel_35.Text = "This Server!"
  2491. TextLabel_35.TextColor3 = Color3.new(1, 1, 1)
  2492. TextLabel_35.TextSize = 20
  2493.  
  2494. AdminJoined.Name = "AdminJoined"
  2495. AdminJoined.Parent = Unjailbreak
  2496. AdminJoined.BackgroundColor3 = Color3.new(0.282353, 0.282353, 0.282353)
  2497. AdminJoined.BorderSizePixel = 0
  2498. AdminJoined.ClipsDescendants = true
  2499. AdminJoined.Position = UDim2.new(0.404687494, 0, 0.0339539982, 0)
  2500.  
  2501. AdminDetected.Name = "AdminDetected"
  2502. AdminDetected.Parent = AdminJoined
  2503. AdminDetected.BackgroundColor3 = Color3.new(1, 1, 1)
  2504. AdminDetected.BackgroundTransparency = 1
  2505. AdminDetected.Position = UDim2.new(0, 83, 0, 15)
  2506. AdminDetected.Size = UDim2.new(0, 200, 0, 34)
  2507. AdminDetected.Font = Enum.Font.Arial
  2508. AdminDetected.FontSize = Enum.FontSize.Size32
  2509. AdminDetected.Text = "Player Name Here"
  2510. AdminDetected.TextColor3 = Color3.new(1, 1, 1)
  2511. AdminDetected.TextSize = 30
  2512.  
  2513. TextLabel_36.Parent = AdminJoined
  2514. TextLabel_36.BackgroundColor3 = Color3.new(1, 1, 1)
  2515. TextLabel_36.BackgroundTransparency = 1
  2516. TextLabel_36.Position = UDim2.new(0, 83, 0, 50)
  2517. TextLabel_36.Size = UDim2.new(0, 200, 0, 34)
  2518. TextLabel_36.Font = Enum.Font.Arial
  2519. TextLabel_36.FontSize = Enum.FontSize.Size24
  2520. TextLabel_36.Text = "Has Joined Your Server"
  2521. TextLabel_36.TextColor3 = Color3.new(1, 1, 1)
  2522. TextLabel_36.TextSize = 20
  2523.  
  2524. TextLabel_37.Parent = AdminJoined
  2525. TextLabel_37.BackgroundColor3 = Color3.new(1, 1, 1)
  2526. TextLabel_37.BackgroundTransparency = 1
  2527. TextLabel_37.Position = UDim2.new(0, 83, 0, 72)
  2528. TextLabel_37.Size = UDim2.new(0, 200, 0, 34)
  2529. TextLabel_37.Font = Enum.Font.Arial
  2530. TextLabel_37.FontSize = Enum.FontSize.Size24
  2531. TextLabel_37.Text = "And Is An Admin On Unjailbreak"
  2532. TextLabel_37.TextColor3 = Color3.new(1, 1, 1)
  2533. TextLabel_37.TextSize = 20
  2534.  
  2535. TextLabel_38.Parent = AdminJoined
  2536. TextLabel_38.BackgroundColor3 = Color3.new(1, 1, 1)
  2537. TextLabel_38.BackgroundTransparency = 1
  2538. TextLabel_38.Position = UDim2.new(0, 83, 0, 106)
  2539. TextLabel_38.Size = UDim2.new(0, 200, 0, 34)
  2540. TextLabel_38.Font = Enum.Font.Arial
  2541. TextLabel_38.FontSize = Enum.FontSize.Size24
  2542. TextLabel_38.Text = "Go Say Hi To The Admin!"
  2543. TextLabel_38.TextColor3 = Color3.new(1, 1, 1)
  2544. TextLabel_38.TextSize = 20
  2545.  
  2546. TextLabel_39.Parent = AdminJoined
  2547. TextLabel_39.BackgroundColor3 = Color3.new(1, 1, 1)
  2548. TextLabel_39.BackgroundTransparency = 1
  2549. TextLabel_39.Position = UDim2.new(0, 83, 0, 146)
  2550. TextLabel_39.Size = UDim2.new(0, 200, 0, 34)
  2551. TextLabel_39.Font = Enum.Font.Arial
  2552. TextLabel_39.FontSize = Enum.FontSize.Size24
  2553. TextLabel_39.Text = "All Admins Are Dope!"
  2554. TextLabel_39.TextColor3 = Color3.new(1, 1, 1)
  2555. TextLabel_39.TextSize = 20
  2556.  
  2557. UIColorFrame.Name = "UIColorFrame"
  2558. UIColorFrame.Parent = Unjailbreak
  2559. UIColorFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  2560. UIColorFrame.BorderSizePixel = 0
  2561. UIColorFrame.ClipsDescendants = true
  2562. UIColorFrame.Position = UDim2.new(0.460999995, 0, 0.730000019, 0)
  2563. UIColorFrame.Size = UDim2.new(0, 147, 0, 244)
  2564. UIColorFrame.Visible = false
  2565.  
  2566. TextLabel_40.Parent = UIColorFrame
  2567. TextLabel_40.BackgroundColor3 = Color3.new(0.290196, 0.290196, 0.290196)
  2568. TextLabel_40.BorderSizePixel = 0
  2569. TextLabel_40.Position = UDim2.new(0, 0, 0, 234)
  2570. TextLabel_40.Size = UDim2.new(0, 147, 0, 10)
  2571. TextLabel_40.Font = Enum.Font.SourceSans
  2572. TextLabel_40.FontSize = Enum.FontSize.Size14
  2573. TextLabel_40.Text = ""
  2574. TextLabel_40.TextSize = 14
  2575.  
  2576. TextLabel_41.Parent = UIColorFrame
  2577. TextLabel_41.BackgroundColor3 = Color3.new(0.737255, 0.345098, 0)
  2578. TextLabel_41.BorderSizePixel = 0
  2579. TextLabel_41.Size = UDim2.new(0, 147, 0, 7)
  2580. TextLabel_41.Font = Enum.Font.SourceSans
  2581. TextLabel_41.FontSize = Enum.FontSize.Size14
  2582. TextLabel_41.Text = ""
  2583. TextLabel_41.TextSize = 14
  2584.  
  2585. Commands.Name = "Commands"
  2586. Commands.Parent = Unjailbreak
  2587. Commands.BackgroundColor3 = Color3.new(0.266667, 0.266667, 0.266667)
  2588. Commands.BorderSizePixel = 0
  2589. Commands.Position = UDim2.new(-0.142000005, 0, 0.333999991, 0)
  2590. Commands.Size = UDim2.new(0, 272, 0, 304)
  2591.  
  2592. TextLabel_42.Parent = Commands
  2593. TextLabel_42.BackgroundColor3 = Color3.new(1, 1, 1)
  2594. TextLabel_42.BackgroundTransparency = 1
  2595. TextLabel_42.Position = UDim2.new(0, 36, 0, 0)
  2596. TextLabel_42.Size = UDim2.new(0, 200, 0, 39)
  2597. TextLabel_42.Font = Enum.Font.Arial
  2598. TextLabel_42.FontSize = Enum.FontSize.Size24
  2599. TextLabel_42.Text = "Unjailbreak Commands"
  2600. TextLabel_42.TextColor3 = Color3.new(1, 1, 1)
  2601. TextLabel_42.TextSize = 20
  2602.  
  2603. ScrollingFrame.Parent = Commands
  2604. ScrollingFrame.BackgroundColor3 = Color3.new(0.266667, 0.266667, 0.266667)
  2605. ScrollingFrame.BorderSizePixel = 0
  2606. ScrollingFrame.Position = UDim2.new(0, 0, 0, 51)
  2607. ScrollingFrame.Size = UDim2.new(0, 272, 0, 253)
  2608. ScrollingFrame.BottomImage = ""
  2609. ScrollingFrame.ScrollBarThickness = 5
  2610. ScrollingFrame.TopImage = ""
  2611.  
  2612. TextLabel_43.Parent = ScrollingFrame
  2613. TextLabel_43.BackgroundColor3 = Color3.new(1, 1, 1)
  2614. TextLabel_43.BackgroundTransparency = 1
  2615. TextLabel_43.Size = UDim2.new(0, 272, 0, 21)
  2616. TextLabel_43.Font = Enum.Font.Arial
  2617. TextLabel_43.FontSize = Enum.FontSize.Size14
  2618. TextLabel_43.Text = " ;help - Opens The Unjailbreak Command List"
  2619. TextLabel_43.TextColor3 = Color3.new(1, 1, 1)
  2620. TextLabel_43.TextSize = 13
  2621. TextLabel_43.TextXAlignment = Enum.TextXAlignment.Left
  2622.  
  2623. TextLabel_44.Parent = ScrollingFrame
  2624. TextLabel_44.BackgroundColor3 = Color3.new(1, 1, 1)
  2625. TextLabel_44.BackgroundTransparency = 1
  2626. TextLabel_44.Position = UDim2.new(0, 0, 0, 23)
  2627. TextLabel_44.Size = UDim2.new(0, 272, 0, 21)
  2628. TextLabel_44.Font = Enum.Font.Arial
  2629. TextLabel_44.FontSize = Enum.FontSize.Size14
  2630. TextLabel_44.Text = " ;open - Opens The GUI"
  2631. TextLabel_44.TextColor3 = Color3.new(1, 1, 1)
  2632. TextLabel_44.TextSize = 13
  2633. TextLabel_44.TextXAlignment = Enum.TextXAlignment.Left
  2634.  
  2635. TextLabel_45.Parent = ScrollingFrame
  2636. TextLabel_45.BackgroundColor3 = Color3.new(1, 1, 1)
  2637. TextLabel_45.BackgroundTransparency = 1
  2638. TextLabel_45.Position = UDim2.new(0, 0, 0, 48)
  2639. TextLabel_45.Size = UDim2.new(0, 272, 0, 21)
  2640. TextLabel_45.Font = Enum.Font.Arial
  2641. TextLabel_45.FontSize = Enum.FontSize.Size14
  2642. TextLabel_45.Text = " ;close - Closes The GUI"
  2643. TextLabel_45.TextColor3 = Color3.new(1, 1, 1)
  2644. TextLabel_45.TextSize = 13
  2645. TextLabel_45.TextXAlignment = Enum.TextXAlignment.Left
  2646.  
  2647. TextLabel_46.Parent = ScrollingFrame
  2648. TextLabel_46.BackgroundColor3 = Color3.new(1, 1, 1)
  2649. TextLabel_46.BackgroundTransparency = 1
  2650. TextLabel_46.Position = UDim2.new(0, 0, 0, 73)
  2651. TextLabel_46.Size = UDim2.new(0, 272, 0, 21)
  2652. TextLabel_46.Font = Enum.Font.Arial
  2653. TextLabel_46.FontSize = Enum.FontSize.Size14
  2654. TextLabel_46.Text = " ;godmode - Puts You In GodMode"
  2655. TextLabel_46.TextColor3 = Color3.new(1, 1, 1)
  2656. TextLabel_46.TextSize = 13
  2657. TextLabel_46.TextXAlignment = Enum.TextXAlignment.Left
  2658.  
  2659. TextLabel_47.Parent = ScrollingFrame
  2660. TextLabel_47.BackgroundColor3 = Color3.new(1, 1, 1)
  2661. TextLabel_47.BackgroundTransparency = 1
  2662. TextLabel_47.Position = UDim2.new(0, 0, 0, 97)
  2663. TextLabel_47.Size = UDim2.new(0, 272, 0, 21)
  2664. TextLabel_47.Font = Enum.Font.Arial
  2665. TextLabel_47.FontSize = Enum.FontSize.Size14
  2666. TextLabel_47.Text = " ;fly on - Puts You In Fly Mode"
  2667. TextLabel_47.TextColor3 = Color3.new(1, 1, 1)
  2668. TextLabel_47.TextSize = 13
  2669. TextLabel_47.TextXAlignment = Enum.TextXAlignment.Left
  2670.  
  2671. TextLabel_48.Parent = ScrollingFrame
  2672. TextLabel_48.BackgroundColor3 = Color3.new(1, 1, 1)
  2673. TextLabel_48.BackgroundTransparency = 1
  2674. TextLabel_48.Position = UDim2.new(0, 0, 0, 121)
  2675. TextLabel_48.Size = UDim2.new(0, 272, 0, 21)
  2676. TextLabel_48.Font = Enum.Font.Arial
  2677. TextLabel_48.FontSize = Enum.FontSize.Size14
  2678. TextLabel_48.Text = " ;fly off - Removes Fly Mode"
  2679. TextLabel_48.TextColor3 = Color3.new(1, 1, 1)
  2680. TextLabel_48.TextSize = 13
  2681. TextLabel_48.TextXAlignment = Enum.TextXAlignment.Left
  2682.  
  2683. TextLabel_49.Parent = ScrollingFrame
  2684. TextLabel_49.BackgroundColor3 = Color3.new(1, 1, 1)
  2685. TextLabel_49.BackgroundTransparency = 1
  2686. TextLabel_49.Position = UDim2.new(0, 0, 0, 145)
  2687. TextLabel_49.Size = UDim2.new(0, 272, 0, 21)
  2688. TextLabel_49.Font = Enum.Font.Arial
  2689. TextLabel_49.FontSize = Enum.FontSize.Size14
  2690. TextLabel_49.Text = " ;esp on - Turns ESP On"
  2691. TextLabel_49.TextColor3 = Color3.new(1, 1, 1)
  2692. TextLabel_49.TextSize = 13
  2693. TextLabel_49.TextXAlignment = Enum.TextXAlignment.Left
  2694.  
  2695. TextLabel_50.Parent = ScrollingFrame
  2696. TextLabel_50.BackgroundColor3 = Color3.new(1, 1, 1)
  2697. TextLabel_50.BackgroundTransparency = 1
  2698. TextLabel_50.Position = UDim2.new(0, 0, 0, 169)
  2699. TextLabel_50.Size = UDim2.new(0, 272, 0, 21)
  2700. TextLabel_50.Font = Enum.Font.Arial
  2701. TextLabel_50.FontSize = Enum.FontSize.Size14
  2702. TextLabel_50.Text = " ;esp off - Turns ESP Off"
  2703. TextLabel_50.TextColor3 = Color3.new(1, 1, 1)
  2704. TextLabel_50.TextSize = 13
  2705. TextLabel_50.TextXAlignment = Enum.TextXAlignment.Left
  2706.  
  2707. TextLabel_51.Parent = ScrollingFrame
  2708. TextLabel_51.BackgroundColor3 = Color3.new(1, 1, 1)
  2709. TextLabel_51.BackgroundTransparency = 1
  2710. TextLabel_51.Position = UDim2.new(0, 0, 0, 194)
  2711. TextLabel_51.Size = UDim2.new(0, 272, 0, 21)
  2712. TextLabel_51.Font = Enum.Font.Arial
  2713. TextLabel_51.FontSize = Enum.FontSize.Size14
  2714. TextLabel_51.Text = " ;reset - Resets Your Character"
  2715. TextLabel_51.TextColor3 = Color3.new(1, 1, 1)
  2716. TextLabel_51.TextSize = 13
  2717. TextLabel_51.TextXAlignment = Enum.TextXAlignment.Left
  2718.  
  2719. TextLabel_52.Parent = ScrollingFrame
  2720. TextLabel_52.BackgroundColor3 = Color3.new(1, 1, 1)
  2721. TextLabel_52.BackgroundTransparency = 1
  2722. TextLabel_52.Position = UDim2.new(0, 0, 0, 216)
  2723. TextLabel_52.Size = UDim2.new(0, 272, 0, 21)
  2724. TextLabel_52.Font = Enum.Font.Arial
  2725. TextLabel_52.FontSize = Enum.FontSize.Size14
  2726. TextLabel_52.Text = " ;remove - Removes The Whole UI"
  2727. TextLabel_52.TextColor3 = Color3.new(1, 1, 1)
  2728. TextLabel_52.TextSize = 13
  2729. TextLabel_52.TextXAlignment = Enum.TextXAlignment.Left
  2730.  
  2731. CommandClose.Name = "CommandClose"
  2732. CommandClose.Parent = Commands
  2733. CommandClose.BackgroundColor3 = Color3.new(1, 1, 1)
  2734. CommandClose.BackgroundTransparency = 1
  2735. CommandClose.Position = UDim2.new(0, 247, 0, 0)
  2736. CommandClose.Size = UDim2.new(0, 25, 0, 26)
  2737. CommandClose.Font = Enum.Font.SourceSans
  2738. CommandClose.FontSize = Enum.FontSize.Size32
  2739. CommandClose.Text = "X"
  2740. CommandClose.TextColor3 = Color3.new(1, 1, 1)
  2741. CommandClose.TextSize = 30
  2742. CommandClose.TextWrapped = true
  2743.  
  2744. StarterFrame.Name = "StarterFrame"
  2745. StarterFrame.Parent = Unjailbreak
  2746. StarterFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  2747. StarterFrame.BorderSizePixel = 0
  2748. StarterFrame.ClipsDescendants = true
  2749. StarterFrame.Position = UDim2.new(0.377083331, 0, 0.35377875, 0)
  2750.  
  2751. StarterMainFrame.Name = "StarterMainFrame"
  2752. StarterMainFrame.Parent = StarterFrame
  2753. StarterMainFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  2754. StarterMainFrame.Size = UDim2.new(0, 944, 0, 267)
  2755.  
  2756. ContinueCustomization.Name = "ContinueCustomization"
  2757. ContinueCustomization.Parent = StarterMainFrame
  2758. ContinueCustomization.BackgroundColor3 = Color3.new(0.737255, 0.345098, 0)
  2759. ContinueCustomization.BorderSizePixel = 0
  2760. ContinueCustomization.Position = UDim2.new(0, 187, 0, 190)
  2761. ContinueCustomization.Size = UDim2.new(0, 100, 0, 30)
  2762. ContinueCustomization.Font = Enum.Font.Arial
  2763. ContinueCustomization.FontSize = Enum.FontSize.Size18
  2764. ContinueCustomization.Text = "Customize"
  2765. ContinueCustomization.TextColor3 = Color3.new(1, 1, 1)
  2766. ContinueCustomization.TextSize = 16
  2767.  
  2768. TextLabel_53.Parent = StarterMainFrame
  2769. TextLabel_53.BackgroundColor3 = Color3.new(1, 1, 1)
  2770. TextLabel_53.BackgroundTransparency = 1
  2771. TextLabel_53.Position = UDim2.new(0, 135, 0, 85)
  2772. TextLabel_53.Size = UDim2.new(0, 200, 0, 19)
  2773. TextLabel_53.Font = Enum.Font.Arial
  2774. TextLabel_53.FontSize = Enum.FontSize.Size18
  2775. TextLabel_53.Text = "Settings Has Been Updated And You Can Now"
  2776. TextLabel_53.TextColor3 = Color3.new(0, 0, 0)
  2777. TextLabel_53.TextSize = 16
  2778.  
  2779. TextLabel_54.Parent = StarterMainFrame
  2780. TextLabel_54.BackgroundColor3 = Color3.new(1, 1, 1)
  2781. TextLabel_54.BackgroundTransparency = 1
  2782. TextLabel_54.Position = UDim2.new(0, 825, 0, 190)
  2783. TextLabel_54.Size = UDim2.new(0, 93, 0, 19)
  2784. TextLabel_54.Font = Enum.Font.Arial
  2785. TextLabel_54.FontSize = Enum.FontSize.Size18
  2786. TextLabel_54.Text = "WARNING:"
  2787. TextLabel_54.TextColor3 = Color3.new(1, 0.666667, 0)
  2788. TextLabel_54.TextSize = 16
  2789.  
  2790. TextLabel_55.Parent = StarterMainFrame
  2791. TextLabel_55.BackgroundColor3 = Color3.new(0.290196, 0.290196, 0.290196)
  2792. TextLabel_55.BorderSizePixel = 0
  2793. TextLabel_55.Position = UDim2.new(0, 0, 0, 19)
  2794. TextLabel_55.Size = UDim2.new(0, 944, 0, 22)
  2795. TextLabel_55.Font = Enum.Font.SourceSans
  2796. TextLabel_55.FontSize = Enum.FontSize.Size14
  2797. TextLabel_55.Text = ""
  2798. TextLabel_55.TextSize = 14
  2799.  
  2800. TextLabel_56.Parent = StarterMainFrame
  2801. TextLabel_56.BackgroundColor3 = Color3.new(1, 1, 1)
  2802. TextLabel_56.BackgroundTransparency = 1
  2803. TextLabel_56.Position = UDim2.new(0, 135, 0, 63)
  2804. TextLabel_56.Size = UDim2.new(0, 200, 0, 19)
  2805. TextLabel_56.Font = Enum.Font.Arial
  2806. TextLabel_56.FontSize = Enum.FontSize.Size18
  2807. TextLabel_56.Text = "Welcome To Unjailbreak Full Release!"
  2808. TextLabel_56.TextColor3 = Color3.new(0, 0, 0)
  2809. TextLabel_56.TextSize = 16
  2810.  
  2811. TextLabel_57.Parent = StarterMainFrame
  2812. TextLabel_57.BackgroundColor3 = Color3.new(1, 1, 1)
  2813. TextLabel_57.BackgroundTransparency = 1
  2814. TextLabel_57.Position = UDim2.new(0, 135, 0, 21)
  2815. TextLabel_57.Size = UDim2.new(0, 200, 0, 19)
  2816. TextLabel_57.Font = Enum.Font.Arial
  2817. TextLabel_57.FontSize = Enum.FontSize.Size24
  2818. TextLabel_57.Text = "U N J A I L B R E A K"
  2819. TextLabel_57.TextColor3 = Color3.new(1, 1, 1)
  2820. TextLabel_57.TextSize = 20
  2821.  
  2822. TextLabel_58.Parent = StarterMainFrame
  2823. TextLabel_58.BackgroundColor3 = Color3.new(1, 1, 1)
  2824. TextLabel_58.BackgroundTransparency = 1
  2825. TextLabel_58.Position = UDim2.new(0, 825, 0, 210)
  2826. TextLabel_58.Size = UDim2.new(0, 93, 0, 19)
  2827. TextLabel_58.Font = Enum.Font.Arial
  2828. TextLabel_58.FontSize = Enum.FontSize.Size18
  2829. TextLabel_58.Text = "Aimbot Is Very"
  2830. TextLabel_58.TextColor3 = Color3.new(1, 0.666667, 0)
  2831. TextLabel_58.TextSize = 16
  2832.  
  2833. TextLabel_59.Parent = StarterMainFrame
  2834. TextLabel_59.BackgroundColor3 = Color3.new(1, 1, 1)
  2835. TextLabel_59.BackgroundTransparency = 1
  2836. TextLabel_59.Position = UDim2.new(0, 825, 0, 230)
  2837. TextLabel_59.Size = UDim2.new(0, 93, 0, 19)
  2838. TextLabel_59.Font = Enum.Font.Arial
  2839. TextLabel_59.FontSize = Enum.FontSize.Size18
  2840. TextLabel_59.Text = "Unstable And Laggy"
  2841. TextLabel_59.TextColor3 = Color3.new(1, 0.666667, 0)
  2842. TextLabel_59.TextSize = 16
  2843.  
  2844. TextLabel_60.Parent = StarterMainFrame
  2845. TextLabel_60.BackgroundColor3 = Color3.new(1, 1, 1)
  2846. TextLabel_60.BackgroundTransparency = 1
  2847. TextLabel_60.Position = UDim2.new(0, 135, 0, 134)
  2848. TextLabel_60.Size = UDim2.new(0, 200, 0, 19)
  2849. TextLabel_60.Font = Enum.Font.Arial
  2850. TextLabel_60.FontSize = Enum.FontSize.Size18
  2851. TextLabel_60.Text = "Anyways Enjoy The Full Release!"
  2852. TextLabel_60.TextColor3 = Color3.new(0, 0, 0)
  2853. TextLabel_60.TextSize = 16
  2854.  
  2855. TextLabel_61.Parent = StarterMainFrame
  2856. TextLabel_61.BackgroundColor3 = Color3.new(1, 1, 1)
  2857. TextLabel_61.BackgroundTransparency = 1
  2858. TextLabel_61.Position = UDim2.new(0, 135, 0, 110)
  2859. TextLabel_61.Size = UDim2.new(0, 200, 0, 19)
  2860. TextLabel_61.Font = Enum.Font.Arial
  2861. TextLabel_61.FontSize = Enum.FontSize.Size18
  2862. TextLabel_61.Text = "Set Up The Bank And Jewelry Notifiers In Settings"
  2863. TextLabel_61.TextColor3 = Color3.new(0, 0, 0)
  2864. TextLabel_61.TextSize = 16
  2865.  
  2866. TextLabel_62.Parent = StarterMainFrame
  2867. TextLabel_62.BackgroundColor3 = Color3.new(1, 1, 1)
  2868. TextLabel_62.BackgroundTransparency = 1
  2869. TextLabel_62.Position = UDim2.new(0, 610, 0, 21)
  2870. TextLabel_62.Size = UDim2.new(0, 200, 0, 19)
  2871. TextLabel_62.Font = Enum.Font.Arial
  2872. TextLabel_62.FontSize = Enum.FontSize.Size24
  2873. TextLabel_62.Text = "C U S T O M I Z A T I O N"
  2874. TextLabel_62.TextColor3 = Color3.new(1, 1, 1)
  2875. TextLabel_62.TextSize = 20
  2876.  
  2877. MainContinue.Name = "MainContinue"
  2878. MainContinue.Parent = StarterMainFrame
  2879. MainContinue.BackgroundColor3 = Color3.new(0.737255, 0.345098, 0)
  2880. MainContinue.BorderSizePixel = 0
  2881. MainContinue.Position = UDim2.new(0, 658, 0, 230)
  2882. MainContinue.Size = UDim2.new(0, 100, 0, 30)
  2883. MainContinue.Font = Enum.Font.Arial
  2884. MainContinue.FontSize = Enum.FontSize.Size18
  2885. MainContinue.Text = "Continue"
  2886. MainContinue.TextColor3 = Color3.new(1, 1, 1)
  2887. MainContinue.TextSize = 16
  2888.  
  2889. TextLabel_63.Parent = StarterMainFrame
  2890. TextLabel_63.BackgroundColor3 = Color3.new(1, 1, 1)
  2891. TextLabel_63.BackgroundTransparency = 1
  2892. TextLabel_63.Position = UDim2.new(0, 610, 0, 51)
  2893. TextLabel_63.Size = UDim2.new(0, 200, 0, 19)
  2894. TextLabel_63.Font = Enum.Font.Arial
  2895. TextLabel_63.FontSize = Enum.FontSize.Size18
  2896. TextLabel_63.Text = "Here You Customize Your UI"
  2897. TextLabel_63.TextColor3 = Color3.new(0, 0, 0)
  2898. TextLabel_63.TextSize = 16
  2899.  
  2900. TextLabel_64.Parent = StarterMainFrame
  2901. TextLabel_64.BackgroundColor3 = Color3.new(1, 1, 1)
  2902. TextLabel_64.BackgroundTransparency = 1
  2903. TextLabel_64.Position = UDim2.new(0, 495, 0, 81)
  2904. TextLabel_64.Size = UDim2.new(0, 93, 0, 19)
  2905. TextLabel_64.Font = Enum.Font.Arial
  2906. TextLabel_64.FontSize = Enum.FontSize.Size18
  2907. TextLabel_64.Text = "Border Color"
  2908. TextLabel_64.TextColor3 = Color3.new(0, 0, 0)
  2909. TextLabel_64.TextSize = 16
  2910.  
  2911. BlueColor.Name = "BlueColor"
  2912. BlueColor.Parent = StarterMainFrame
  2913. BlueColor.BackgroundColor3 = Color3.new(0, 0.666667, 1)
  2914. BlueColor.BorderSizePixel = 0
  2915. BlueColor.Position = UDim2.new(0, 493, 0, 104)
  2916. BlueColor.Size = UDim2.new(0, 100, 0, 30)
  2917. BlueColor.Font = Enum.Font.Arial
  2918. BlueColor.FontSize = Enum.FontSize.Size18
  2919. BlueColor.Text = "Blue"
  2920. BlueColor.TextColor3 = Color3.new(1, 1, 1)
  2921. BlueColor.TextSize = 16
  2922.  
  2923. RedColor.Name = "RedColor"
  2924. RedColor.Parent = StarterMainFrame
  2925. RedColor.BackgroundColor3 = Color3.new(1, 0, 0)
  2926. RedColor.BorderSizePixel = 0
  2927. RedColor.Position = UDim2.new(0, 493, 0, 135)
  2928. RedColor.Size = UDim2.new(0, 100, 0, 30)
  2929. RedColor.Font = Enum.Font.Arial
  2930. RedColor.FontSize = Enum.FontSize.Size18
  2931. RedColor.Text = "Red"
  2932. RedColor.TextColor3 = Color3.new(1, 1, 1)
  2933. RedColor.TextSize = 16
  2934.  
  2935. OrangeColor.Name = "OrangeColor"
  2936. OrangeColor.Parent = StarterMainFrame
  2937. OrangeColor.BackgroundColor3 = Color3.new(0.737255, 0.345098, 0)
  2938. OrangeColor.BorderSizePixel = 0
  2939. OrangeColor.Position = UDim2.new(0, 493, 0, 166)
  2940. OrangeColor.Size = UDim2.new(0, 100, 0, 30)
  2941. OrangeColor.Font = Enum.Font.Arial
  2942. OrangeColor.FontSize = Enum.FontSize.Size18
  2943. OrangeColor.Text = "Orange"
  2944. OrangeColor.TextColor3 = Color3.new(1, 1, 1)
  2945. OrangeColor.TextSize = 16
  2946.  
  2947. BlackColor.Name = "BlackColor"
  2948. BlackColor.Parent = StarterMainFrame
  2949. BlackColor.BackgroundColor3 = Color3.new(0, 0, 0)
  2950. BlackColor.BorderSizePixel = 0
  2951. BlackColor.Position = UDim2.new(0, 493, 0, 197)
  2952. BlackColor.Size = UDim2.new(0, 100, 0, 30)
  2953. BlackColor.Font = Enum.Font.Arial
  2954. BlackColor.FontSize = Enum.FontSize.Size18
  2955. BlackColor.Text = "Black"
  2956. BlackColor.TextColor3 = Color3.new(1, 1, 1)
  2957. BlackColor.TextSize = 16
  2958.  
  2959. PurpleColor.Name = "PurpleColor"
  2960. PurpleColor.Parent = StarterMainFrame
  2961. PurpleColor.BackgroundColor3 = Color3.new(0.333333, 0, 0.498039)
  2962. PurpleColor.BorderSizePixel = 0
  2963. PurpleColor.Position = UDim2.new(0, 493, 0, 228)
  2964. PurpleColor.Size = UDim2.new(0, 100, 0, 30)
  2965. PurpleColor.Font = Enum.Font.Arial
  2966. PurpleColor.FontSize = Enum.FontSize.Size18
  2967. PurpleColor.Text = "Purple"
  2968. PurpleColor.TextColor3 = Color3.new(1, 1, 1)
  2969. PurpleColor.TextSize = 16
  2970.  
  2971. TextLabel_65.Parent = StarterMainFrame
  2972. TextLabel_65.BackgroundColor3 = Color3.new(1, 1, 1)
  2973. TextLabel_65.BackgroundTransparency = 1
  2974. TextLabel_65.Position = UDim2.new(0, 662, 0, 81)
  2975. TextLabel_65.Size = UDim2.new(0, 93, 0, 19)
  2976. TextLabel_65.Font = Enum.Font.Arial
  2977. TextLabel_65.FontSize = Enum.FontSize.Size18
  2978. TextLabel_65.Text = "UI Keybind"
  2979. TextLabel_65.TextColor3 = Color3.new(0, 0, 0)
  2980. TextLabel_65.TextSize = 16
  2981.  
  2982. UIKeybind.Name = "UIKeybind"
  2983. UIKeybind.Parent = StarterMainFrame
  2984. UIKeybind.BackgroundColor3 = Color3.new(1, 1, 1)
  2985. UIKeybind.BorderSizePixel = 0
  2986. UIKeybind.Position = UDim2.new(0, 660, 0, 110)
  2987. UIKeybind.Size = UDim2.new(0, 102, 0, 24)
  2988. UIKeybind.Font = Enum.Font.Arial
  2989. UIKeybind.FontSize = Enum.FontSize.Size18
  2990. UIKeybind.Text = ""
  2991. UIKeybind.TextSize = 15
  2992. UIKeybind.TextXAlignment = Enum.TextXAlignment.Left
  2993.  
  2994. TextLabel_66.Parent = StarterMainFrame
  2995. TextLabel_66.BackgroundColor3 = Color3.new(0.333333, 0.666667, 1)
  2996. TextLabel_66.BorderSizePixel = 0
  2997. TextLabel_66.Position = UDim2.new(0, 660, 0, 135)
  2998. TextLabel_66.Size = UDim2.new(0, 102, 0, 3)
  2999. TextLabel_66.Font = Enum.Font.Arial
  3000. TextLabel_66.FontSize = Enum.FontSize.Size18
  3001. TextLabel_66.Text = ""
  3002. TextLabel_66.TextColor3 = Color3.new(0, 0, 0)
  3003. TextLabel_66.TextSize = 16
  3004.  
  3005. TextLabel_67.Parent = StarterMainFrame
  3006. TextLabel_67.BackgroundColor3 = Color3.new(1, 1, 1)
  3007. TextLabel_67.BackgroundTransparency = 1
  3008. TextLabel_67.Position = UDim2.new(0, 662, 0, 150)
  3009. TextLabel_67.Size = UDim2.new(0, 93, 0, 19)
  3010. TextLabel_67.Font = Enum.Font.Arial
  3011. TextLabel_67.FontSize = Enum.FontSize.Size18
  3012. TextLabel_67.Text = "Normal Keybind"
  3013. TextLabel_67.TextColor3 = Color3.new(0, 0, 0)
  3014. TextLabel_67.TextSize = 16
  3015.  
  3016. TextLabel_68.Parent = StarterMainFrame
  3017. TextLabel_68.BackgroundColor3 = Color3.new(1, 1, 1)
  3018. TextLabel_68.BackgroundTransparency = 1
  3019. TextLabel_68.Position = UDim2.new(0, 662, 0, 165)
  3020. TextLabel_68.Size = UDim2.new(0, 93, 0, 19)
  3021. TextLabel_68.Font = Enum.Font.Arial
  3022. TextLabel_68.FontSize = Enum.FontSize.Size18
  3023. TextLabel_68.Text = "\"V\""
  3024. TextLabel_68.TextColor3 = Color3.new(0, 0, 0)
  3025. TextLabel_68.TextSize = 16
  3026.  
  3027. MainPreview.Name = "MainPreview"
  3028. MainPreview.Parent = StarterMainFrame
  3029. MainPreview.BackgroundColor3 = Color3.new(0.737255, 0.345098, 0)
  3030. MainPreview.BorderSizePixel = 0
  3031. MainPreview.Position = UDim2.new(0, 528, 0, 49)
  3032. MainPreview.Size = UDim2.new(0, 32, 0, 29)
  3033. MainPreview.Font = Enum.Font.Arial
  3034. MainPreview.FontSize = Enum.FontSize.Size18
  3035. MainPreview.Text = ""
  3036. MainPreview.TextColor3 = Color3.new(0, 0, 0)
  3037. MainPreview.TextSize = 16
  3038.  
  3039. TextLabel_69.Parent = StarterMainFrame
  3040. TextLabel_69.BackgroundColor3 = Color3.new(1, 1, 1)
  3041. TextLabel_69.BackgroundTransparency = 1
  3042. TextLabel_69.Position = UDim2.new(0, 825, 0, 81)
  3043. TextLabel_69.Size = UDim2.new(0, 93, 0, 19)
  3044. TextLabel_69.Font = Enum.Font.Arial
  3045. TextLabel_69.FontSize = Enum.FontSize.Size18
  3046. TextLabel_69.Text = "Aimbot Keybind"
  3047. TextLabel_69.TextColor3 = Color3.new(0, 0, 0)
  3048. TextLabel_69.TextSize = 16
  3049.  
  3050. Aimbotkeybind.Name = "Aimbotkeybind"
  3051. Aimbotkeybind.Parent = StarterMainFrame
  3052. Aimbotkeybind.BackgroundColor3 = Color3.new(1, 1, 1)
  3053. Aimbotkeybind.BorderSizePixel = 0
  3054. Aimbotkeybind.Position = UDim2.new(0, 822, 0, 110)
  3055. Aimbotkeybind.Size = UDim2.new(0, 102, 0, 24)
  3056. Aimbotkeybind.Font = Enum.Font.Arial
  3057. Aimbotkeybind.FontSize = Enum.FontSize.Size18
  3058. Aimbotkeybind.Text = ""
  3059. Aimbotkeybind.TextSize = 15
  3060. Aimbotkeybind.TextXAlignment = Enum.TextXAlignment.Left
  3061.  
  3062. TextLabel_70.Parent = StarterMainFrame
  3063. TextLabel_70.BackgroundColor3 = Color3.new(1, 1, 1)
  3064. TextLabel_70.BackgroundTransparency = 1
  3065. TextLabel_70.Position = UDim2.new(0, 825, 0, 150)
  3066. TextLabel_70.Size = UDim2.new(0, 93, 0, 19)
  3067. TextLabel_70.Font = Enum.Font.Arial
  3068. TextLabel_70.FontSize = Enum.FontSize.Size18
  3069. TextLabel_70.Text = "Set A Keybind To"
  3070. TextLabel_70.TextColor3 = Color3.new(0, 0, 0)
  3071. TextLabel_70.TextSize = 16
  3072.  
  3073. TextLabel_71.Parent = StarterMainFrame
  3074. TextLabel_71.BackgroundColor3 = Color3.new(0.333333, 0.666667, 1)
  3075. TextLabel_71.BorderSizePixel = 0
  3076. TextLabel_71.Position = UDim2.new(0, 821, 0, 135)
  3077. TextLabel_71.Size = UDim2.new(0, 102, 0, 3)
  3078. TextLabel_71.Font = Enum.Font.Arial
  3079. TextLabel_71.FontSize = Enum.FontSize.Size18
  3080. TextLabel_71.Text = ""
  3081. TextLabel_71.TextColor3 = Color3.new(0, 0, 0)
  3082. TextLabel_71.TextSize = 16
  3083.  
  3084. TextLabel_72.Parent = StarterMainFrame
  3085. TextLabel_72.BackgroundColor3 = Color3.new(1, 1, 1)
  3086. TextLabel_72.BackgroundTransparency = 1
  3087. TextLabel_72.Position = UDim2.new(0, 825, 0, 165)
  3088. TextLabel_72.Size = UDim2.new(0, 93, 0, 19)
  3089. TextLabel_72.Font = Enum.Font.Arial
  3090. TextLabel_72.FontSize = Enum.FontSize.Size18
  3091. TextLabel_72.Text = "Turn On Aimbot"
  3092. TextLabel_72.TextColor3 = Color3.new(0, 0, 0)
  3093. TextLabel_72.TextSize = 16
  3094.  
  3095. TextLabel_73.Parent = StarterMainFrame
  3096. TextLabel_73.BackgroundColor3 = Color3.new(1, 1, 1)
  3097. TextLabel_73.BackgroundTransparency = 1
  3098. TextLabel_73.Position = UDim2.new(0, 662, 0, 190)
  3099. TextLabel_73.Size = UDim2.new(0, 93, 0, 19)
  3100. TextLabel_73.Font = Enum.Font.Arial
  3101. TextLabel_73.FontSize = Enum.FontSize.Size18
  3102. TextLabel_73.Text = "Make All Keybinds Lower Case"
  3103. TextLabel_73.TextColor3 = Color3.new(0, 0, 0)
  3104. TextLabel_73.TextSize = 16
  3105.  
  3106. TextLabel_74.Parent = StarterMainFrame
  3107. TextLabel_74.BackgroundColor3 = Color3.new(0.290196, 0.290196, 0.290196)
  3108. TextLabel_74.BorderSizePixel = 0
  3109. TextLabel_74.Position = UDim2.new(0, 40, 0, 0)
  3110. TextLabel_74.Size = UDim2.new(0, 19, 0, 267)
  3111. TextLabel_74.Font = Enum.Font.Arial
  3112. TextLabel_74.FontSize = Enum.FontSize.Size24
  3113. TextLabel_74.Text = ""
  3114. TextLabel_74.TextColor3 = Color3.new(1, 1, 1)
  3115. TextLabel_74.TextSize = 20
  3116.  
  3117. TextLabel_75.Parent = StarterMainFrame
  3118. TextLabel_75.BackgroundColor3 = Color3.new(0.290196, 0.290196, 0.290196)
  3119. TextLabel_75.BorderSizePixel = 0
  3120. TextLabel_75.Position = UDim2.new(0, 26, 0, 0)
  3121. TextLabel_75.Size = UDim2.new(0, 7, 0, 267)
  3122. TextLabel_75.Font = Enum.Font.Arial
  3123. TextLabel_75.FontSize = Enum.FontSize.Size24
  3124. TextLabel_75.Text = ""
  3125. TextLabel_75.TextColor3 = Color3.new(1, 1, 1)
  3126. TextLabel_75.TextSize = 20
  3127.  
  3128. TextLabel_76.Parent = StarterMainFrame
  3129. TextLabel_76.BackgroundColor3 = Color3.new(0.290196, 0.290196, 0.290196)
  3130. TextLabel_76.BorderSizePixel = 0
  3131. TextLabel_76.Position = UDim2.new(0, 408, 0, 29)
  3132. TextLabel_76.Size = UDim2.new(0, 10, 0, 238)
  3133. TextLabel_76.Font = Enum.Font.Arial
  3134. TextLabel_76.FontSize = Enum.FontSize.Size24
  3135. TextLabel_76.Text = ""
  3136. TextLabel_76.TextColor3 = Color3.new(1, 1, 1)
  3137. TextLabel_76.TextSize = 20
  3138.  
  3139. ActiveMenu.Parent = UIColorFrame
  3140. ActiveMenu.Name = "ActiveMenu"
  3141.  
  3142. ButtonWheelMenu.Parent = ActiveMenu
  3143. ButtonWheelMenu.Name = "ButtonWheelMenu"
  3144. ButtonWheelMenu.Position = UDim2.new(0,10,0,10)
  3145. ButtonWheelMenu.Size = UDim2.new(1,-20,1,-20)
  3146. ButtonWheelMenu.Visible = true
  3147.  
  3148. Hue.Parent = ButtonWheelMenu
  3149. Hue.Name = "Hue"
  3150.  
  3151. Lig.Parent = ButtonWheelMenu
  3152. Lig.Name = "Lig"
  3153.  
  3154. Sat.Parent = ButtonWheelMenu
  3155. Sat.Name = "Sat"
  3156.  
  3157. HueBox.Parent = ButtonWheelMenu
  3158. HueBox.Size = UDim2.new(0,50,0,25)
  3159. HueBox.Text = "Hue: 70"
  3160. HueBox.Font = Enum.Font.Arial
  3161. HueBox.FontSize = Enum.FontSize.Size14
  3162.  
  3163. GetColor.Parent = ActiveMenu
  3164.  
  3165. local plrname = game:GetService("Players").LocalPlayer.Name
  3166.  
  3167. if plrname == "Unlisting" or plrname == "AyeJoey" or plrname == "ColdEzy" or plrname == "NumNum00" or plrname == "Decryptance" then
  3168. game.CoreGui.Unjailbreak.LPlayerDetect.PlayerNameDetected.Text = plrname
  3169. game.CoreGui.Unjailbreak.LPlayerDetect:TweenSize(UDim2.new(0, 366,0, 212),"Out","Quint",1.5,true)
  3170. wait(2)
  3171. game.CoreGui.Unjailbreak.LPlayerDetect:TweenSize(UDim2.new(0, 0,0, 0),"Out","Quint",1.5,true)
  3172. end
  3173.  
  3174. game:GetService("Players").PlayerAdded:connect(function(plr)
  3175. if plr.Name ~= game.Players.LocalPlayer.Name then
  3176. if plr.Name == "Unlisting" or plr.Name == "ColdEzy" or plr.Name == "AyeJoey" or plr.Name == "NumNum00" or plr.Name == "Decryptance" then
  3177. game.CoreGui.Unjailbreak.AdminJoined.AdminDetected.Text = plr.Name.." Has Joined"
  3178. game.CoreGui.Unjailbreak.AdminJoined:TweenSize(UDim2.new(0, 366,0, 212),"Out","Quint",1.5,true)
  3179. wait(2)
  3180. game.CoreGui.Unjailbreak.AdminJoined:TweenSize(UDim2.new(0, 0,0, 0),"Out","Quint",1.5,true)
  3181. end
  3182. end
  3183. end)
  3184.  
  3185. game.CoreGui.Unjailbreak.MainLogo.ImageTransparency = 1
  3186. game.CoreGui.Unjailbreak.MainLogo.TextLabel.TextTransparency = 1
  3187. wait(0.03)
  3188. game.CoreGui.Unjailbreak.MainLogo.ImageTransparency = 0.9
  3189. game.CoreGui.Unjailbreak.MainLogo.TextLabel.TextTransparency = 0.9
  3190. wait(0.03)
  3191. game.CoreGui.Unjailbreak.MainLogo.ImageTransparency = 0.8
  3192. game.CoreGui.Unjailbreak.MainLogo.TextLabel.TextTransparency = 0.8
  3193. wait(0.03)
  3194. game.CoreGui.Unjailbreak.MainLogo.ImageTransparency = 0.7
  3195. game.CoreGui.Unjailbreak.MainLogo.TextLabel.TextTransparency = 0.7
  3196. wait(0.03)
  3197. game.CoreGui.Unjailbreak.MainLogo.ImageTransparency = 0.6
  3198. game.CoreGui.Unjailbreak.MainLogo.TextLabel.TextTransparency = 0.6
  3199. wait(0.03)
  3200. game.CoreGui.Unjailbreak.MainLogo.ImageTransparency = 0.5
  3201. game.CoreGui.Unjailbreak.MainLogo.TextLabel.TextTransparency = 0.5
  3202. wait(0.03)
  3203. game.CoreGui.Unjailbreak.MainLogo.ImageTransparency = 0.4
  3204. game.CoreGui.Unjailbreak.MainLogo.TextLabel.TextTransparency = 0.4
  3205. wait(0.03)
  3206. game.CoreGui.Unjailbreak.MainLogo.ImageTransparency = 0.3
  3207. game.CoreGui.Unjailbreak.MainLogo.TextLabel.TextTransparency = 0.3
  3208. wait(0.03)
  3209. game.CoreGui.Unjailbreak.MainLogo.ImageTransparency = 0.2
  3210. game.CoreGui.Unjailbreak.MainLogo.TextLabel.TextTransparency = 0.2
  3211. wait(0.03)
  3212. game.CoreGui.Unjailbreak.MainLogo.TextLabel.TextTransparency = 0.1
  3213. game.CoreGui.Unjailbreak.MainLogo.ImageTransparency = 0.1
  3214. wait(0.03)
  3215. game.CoreGui.Unjailbreak.MainLogo.TextLabel.TextTransparency = 0
  3216. game.CoreGui.Unjailbreak.MainLogo.ImageTransparency = 0
  3217.  
  3218. wait(3.5)
  3219. game.CoreGui.Unjailbreak.MainLogo.ImageTransparency = 0.1
  3220. game.CoreGui.Unjailbreak.MainLogo.TextLabel.TextTransparency = 0.1
  3221. wait(0.03)
  3222. game.CoreGui.Unjailbreak.MainLogo.ImageTransparency = 0.2
  3223. game.CoreGui.Unjailbreak.MainLogo.TextLabel.TextTransparency = 0.2
  3224. wait(0.03)
  3225. game.CoreGui.Unjailbreak.MainLogo.ImageTransparency = 0.3
  3226. game.CoreGui.Unjailbreak.MainLogo.TextLabel.TextTransparency = 0.3
  3227. wait(0.03)
  3228. game.CoreGui.Unjailbreak.MainLogo.ImageTransparency = 0.4
  3229. game.CoreGui.Unjailbreak.MainLogo.TextLabel.TextTransparency = 0.4
  3230. wait(0.03)
  3231. game.CoreGui.Unjailbreak.MainLogo.ImageTransparency = 0.5
  3232. game.CoreGui.Unjailbreak.MainLogo.TextLabel.TextTransparency = 0.5
  3233. wait(0.03)
  3234. game.CoreGui.Unjailbreak.MainLogo.ImageTransparency = 0.6
  3235. game.CoreGui.Unjailbreak.MainLogo.TextLabel.TextTransparency = 0.6
  3236. wait(0.03)
  3237. game.CoreGui.Unjailbreak.MainLogo.ImageTransparency = 0.7
  3238. game.CoreGui.Unjailbreak.MainLogo.TextLabel.TextTransparency = 0.7
  3239. wait(0.03)
  3240. game.CoreGui.Unjailbreak.MainLogo.ImageTransparency = 0.8
  3241. game.CoreGui.Unjailbreak.MainLogo.TextLabel.TextTransparency = 0.8
  3242. wait(0.03)
  3243. game.CoreGui.Unjailbreak.MainLogo.ImageTransparency = 0.9
  3244. game.CoreGui.Unjailbreak.MainLogo.TextLabel.TextTransparency = 0.9
  3245. wait(0.03)
  3246. game.CoreGui.Unjailbreak.MainLogo.TextLabel.TextTransparency = 1
  3247. game.CoreGui.Unjailbreak.MainLogo.ImageTransparency = 1
  3248. game.CoreGui.Unjailbreak.MainLogo.Visible = false
  3249.  
  3250. wait(0.1)
  3251. game.CoreGui.Unjailbreak.StarterFrame:TweenSize(UDim2.new(0, 472,0, 267),"Out","Quint",1.5,true)
  3252.  
  3253. ContinueCustomization.MouseButton1Down:connect(function()
  3254. game.CoreGui.Unjailbreak.StarterFrame.StarterMainFrame:TweenPosition(UDim2.new(0, -472,0, 0),"Out","Quint",2,true)
  3255. end)
  3256.  
  3257. ENABLED = false
  3258. PLAYER = game:GetService("Players").LocalPlayer
  3259. MOUSE = PLAYER:GetMouse()
  3260. CC = game:GetService("Workspace").CurrentCamera
  3261. _G.FREE_FOR_ALL = false
  3262. _G.AIM_AT = 'Head'
  3263. local player = game:GetService("Players").LocalPlayer
  3264. local esp = false
  3265. local track = false
  3266.  
  3267. function Create(base, team)
  3268. local bb = Instance.new("BillboardGui",player.PlayerGui)
  3269. bb.Adornee = base
  3270. bb.ExtentsOffset = Vector3.new(0,1,0)
  3271. bb.AlwaysOnTop = true
  3272. bb.Size = UDim2.new(0,5,0,5)
  3273. bb.StudsOffset = Vector3.new(0,1,0)
  3274. bb.Name = "tracker"
  3275. local frame = Instance.new("Frame",bb)
  3276. frame.ZIndex = 10
  3277. frame.BackgroundTransparency = 0.3
  3278. frame.Size = UDim2.new(1,0,1,0)
  3279. frame.Position = UDim2.new(0,0,0)
  3280. frame.Transparency = 1
  3281. local txtlbl = Instance.new("TextLabel",bb)
  3282. txtlbl.ZIndex = 10
  3283. txtlbl.Text = (string.upper(base.Parent.Name))
  3284. txtlbl.BackgroundTransparency = 1
  3285. txtlbl.Position = UDim2.new(0,0,0,-35)
  3286. txtlbl.Size = UDim2.new(1,0,10,0)
  3287. txtlbl.Font = "SourceSansBold"
  3288. txtlbl.FontSize = "Size10"
  3289. txtlbl.TextStrokeTransparency = 0.5
  3290.  
  3291. local txtlbl2 = Instance.new("TextLabel",bb)
  3292. txtlbl2.ZIndex = 10
  3293. txtlbl2.Text = (math.floor(base.Parent.Humanoid.Health*100)/100)
  3294. txtlbl2.BackgroundTransparency = 1
  3295. txtlbl2.Position = UDim2.new(0,0,0,-25)
  3296. txtlbl2.Size = UDim2.new(1,0,10,0)
  3297. txtlbl2.Font = "SourceSansBold"
  3298. txtlbl2.FontSize = "Size10"
  3299.  
  3300. txtlbl2.TextStrokeTransparency = 0.5
  3301. if team then
  3302. txtlbl.TextColor3 = Color3.new(85,0,127)
  3303. txtlbl2.TextColor3 = Color3.new(85,0,127)
  3304. frame.BackgroundColor3 = Color3.new(85,0,127)
  3305.  
  3306. elseif base.Parent.Name == "Decryptance" or base.Parent.Name == "Unlisting" then
  3307. txtlbl.TextColor3 = Color3.new(0,255,0)
  3308. txtlbl2.TextColor3 = Color3.new(0,255,0)
  3309. frame.BackgroundColor3 = Color3.new(0,255,0)
  3310. txtlbl.Text = "FRIEND"
  3311. txtlbl.FontSize = "Size14"
  3312. txtlbl2.FontSize = "Size14"
  3313.  
  3314.  
  3315.  
  3316. elseif base.Parent.Name == game:GetService("Players").LocalPlayer.Name then
  3317. txtlbl2.Transparency = 1
  3318. txtlbl.Transparency = 1
  3319. frame.Transparency = 1
  3320. else
  3321. txtlbl.TextColor3 = Color3.new(85,0,127)
  3322. txtlbl2.TextColor3 = Color3.new(85,0,127)
  3323. frame.BackgroundColor3 = Color3.new(85,0,127)
  3324.  
  3325. end
  3326. end
  3327.  
  3328.  
  3329. function Find()
  3330. Clear()
  3331. track = true
  3332. spawn(function()
  3333. while wait() do
  3334. if track then
  3335. Clear()
  3336. for _,v in pairs(game:GetService("Players"):players()) do
  3337.  
  3338. if v.Character and v.Character.Head then
  3339. Create(v.Character.Head, false)
  3340. end
  3341. end
  3342. end
  3343. end
  3344. wait(1)
  3345. end)
  3346. end
  3347. function Clear()
  3348. for _,v in pairs(player.PlayerGui:children()) do
  3349. if v.Name == "tracker" and v:isA("BillboardGui") then
  3350. v:Destroy()
  3351. end
  3352. end
  3353. end
  3354.  
  3355. CESP.MouseButton1Down:connect(function()
  3356. if not esp then
  3357. Find()
  3358. warn("Jailbreak ESP Enabled")
  3359. game.CoreGui.Unjailbreak.MainFrame.TabFrames.SettingsFrame.CESP.ImageColor3 = Color3.new(0.211765, 0.635294, 0)
  3360. esp = true
  3361. else
  3362. Clear()
  3363. track = false
  3364. warn("Jailbreak ESP Disabled")
  3365. game.CoreGui.Unjailbreak.MainFrame.TabFrames.SettingsFrame.CESP.ImageColor3 = Color3.new(0.380392, 0.380392, 0.380392)
  3366. esp = false
  3367. end
  3368. end)
  3369.  
  3370. BlueColor.MouseButton1Down:connect(function()
  3371. game.CoreGui.Unjailbreak.MainFrame.BackgroundColor3 = Color3.new(0, 0.666667, 1)
  3372. game.CoreGui.Unjailbreak.MainFrame.BottomLine.BackgroundColor3 = Color3.new(0, 0.666667, 1)
  3373. game.CoreGui.Unjailbreak.StarterFrame.StarterMainFrame.MainPreview.BackgroundColor3 = Color3.new(0, 0.666667, 1)
  3374. end)
  3375.  
  3376. RedColor.MouseButton1Down:connect(function()
  3377. game.CoreGui.Unjailbreak.MainFrame.BackgroundColor3 = Color3.new(1, 0, 0)
  3378. game.CoreGui.Unjailbreak.MainFrame.BottomLine.BackgroundColor3 = Color3.new(1, 0, 0)
  3379. game.CoreGui.Unjailbreak.StarterFrame.StarterMainFrame.MainPreview.BackgroundColor3 = Color3.new(1, 0, 0)
  3380. end)
  3381.  
  3382. OrangeColor.MouseButton1Down:connect(function()
  3383. game.CoreGui.Unjailbreak.MainFrame.BackgroundColor3 = Color3.new(0.737255, 0.345098, 0)
  3384. game.CoreGui.Unjailbreak.MainFrame.BottomLine.BackgroundColor3 = Color3.new(0.737255, 0.345098, 0)
  3385. game.CoreGui.Unjailbreak.StarterFrame.StarterMainFrame.MainPreview.BackgroundColor3 = Color3.new(0.737255, 0.345098, 0)
  3386. end)
  3387.  
  3388. BlackColor.MouseButton1Down:connect(function()
  3389. game.CoreGui.Unjailbreak.MainFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  3390. game.CoreGui.Unjailbreak.MainFrame.BottomLine.BackgroundColor3 = Color3.new(0, 0, 0)
  3391. game.CoreGui.Unjailbreak.StarterFrame.StarterMainFrame.MainPreview.BackgroundColor3 = Color3.new(0, 0, 0)
  3392. end)
  3393.  
  3394. PurpleColor.MouseButton1Down:connect(function()
  3395. game.CoreGui.Unjailbreak.MainFrame.BackgroundColor3 = Color3.new(0.333333, 0, 0.498039)
  3396. game.CoreGui.Unjailbreak.MainFrame.BottomLine.BackgroundColor3 = Color3.new(0.333333, 0, 0.498039)
  3397. game.CoreGui.Unjailbreak.StarterFrame.StarterMainFrame.MainPreview.BackgroundColor3 = Color3.new(0.333333, 0, 0.498039)
  3398. end)
  3399.  
  3400. function Aimbot()
  3401.  
  3402. end
  3403.  
  3404. MainContinue.MouseButton1Down:connect(function()
  3405. game.CoreGui.Unjailbreak.StarterFrame:TweenSize(UDim2.new(0, 0,0, 0),"Out","Quint",1.5,true)
  3406. if game.CoreGui.Unjailbreak.StarterFrame.StarterMainFrame.UIKeybind.Text == "" then
  3407. local mouse1 = game:GetService("Players").LocalPlayer:GetMouse()
  3408. mouse1.KeyDown:connect(function(key)
  3409. if key == "v" then
  3410. if Openn == true then
  3411. Openn = false
  3412. game.CoreGui.Unjailbreak.MainFrame:TweenPosition(UDim2.new(0.344, 0,1.1, 0),"Out","Quint",1,true)
  3413. else
  3414. Openn = true
  3415. game.CoreGui.Unjailbreak.MainFrame:TweenPosition(UDim2.new(0.344, 0,0.307, 0),"Out","Quint",1,true)
  3416. end
  3417. end
  3418. end)
  3419. else
  3420. local mouse1 = game:GetService("Players").LocalPlayer:GetMouse()
  3421. mouse1.KeyDown:connect(function(key)
  3422. if key == UIKeybind.Text then
  3423. if Openn == true then
  3424. Openn = false
  3425. game.CoreGui.Unjailbreak.MainFrame:TweenPosition(UDim2.new(0.344, 0,1.1, 0),"Out","Quint",1,true)
  3426. else
  3427. Openn = true
  3428. game.CoreGui.Unjailbreak.MainFrame:TweenPosition(UDim2.new(0.344, 0,0.307, 0),"Out","Quint",1,true)
  3429. end
  3430. end
  3431. end)
  3432. end
  3433. end)
  3434.  
  3435. local i=20 do
  3436. wait()
  3437. game.CoreGui.Unjailbreak.MainFrame.PlayerImage.Image = "https://assetgame.roblox.com/Thumbs/Avatar.ashx?x=250&y=250&Format=Png&username="..game:GetService("Players").LocalPlayer.Name
  3438. end
  3439.  
  3440. Tabs.MouseButton1Down:connect(function()
  3441. game.CoreGui.Unjailbreak.MainFrame.TabFrames:TweenPosition(UDim2.new(0, 150,0, 47), 'Out', 'Quint', 1, true)
  3442. game.CoreGui.Unjailbreak.MainFrame.TabFrames.Dark.Visible = true
  3443. game.CoreGui.Unjailbreak.MainFrame.TabFrames.Dark.Transparency = 0.5
  3444. end)
  3445.  
  3446. Home.MouseButton1Down:connect(function()
  3447. game.CoreGui.Unjailbreak.MainFrame.TabFrames.HomeFrame.Visible = true
  3448. game.CoreGui.Unjailbreak.MainFrame.TabFrames.GameFrame.Visible = false
  3449. game.CoreGui.Unjailbreak.MainFrame.TabFrames.TeleportsFrame.Visible = false
  3450. game.CoreGui.Unjailbreak.MainFrame.TabFrames.SettingsFrame.Visible = false
  3451. game.CoreGui.Unjailbreak.MainFrame.TabFrames:TweenPosition(UDim2.new(0, 0,0, 47), 'Out', 'Quint', 1, true)
  3452. game.CoreGui.Unjailbreak.MainFrame.TabFrames.Dark.Visible = false
  3453. end)
  3454.  
  3455. Game.MouseButton1Down:connect(function()
  3456. game.CoreGui.Unjailbreak.MainFrame.TabFrames.HomeFrame.Visible = false
  3457. game.CoreGui.Unjailbreak.MainFrame.TabFrames.GameFrame.Visible = true
  3458. game.CoreGui.Unjailbreak.MainFrame.TabFrames.TeleportsFrame.Visible = false
  3459. game.CoreGui.Unjailbreak.MainFrame.TabFrames.SettingsFrame.Visible = false
  3460. game.CoreGui.Unjailbreak.MainFrame.TabFrames:TweenPosition(UDim2.new(0, 0,0, 47), 'Out', 'Quint', 1, true)
  3461. game.CoreGui.Unjailbreak.MainFrame.TabFrames.Dark.Visible = false
  3462. end)
  3463.  
  3464. Teleports.MouseButton1Down:connect(function()
  3465. game.CoreGui.Unjailbreak.MainFrame.TabFrames.HomeFrame.Visible = false
  3466. game.CoreGui.Unjailbreak.MainFrame.TabFrames.GameFrame.Visible = false
  3467. game.CoreGui.Unjailbreak.MainFrame.TabFrames.TeleportsFrame.Visible = true
  3468. game.CoreGui.Unjailbreak.MainFrame.TabFrames.SettingsFrame.Visible = false
  3469. game.CoreGui.Unjailbreak.MainFrame.TabFrames:TweenPosition(UDim2.new(0, 0,0, 47), 'Out', 'Quint', 1, true)
  3470. game.CoreGui.Unjailbreak.MainFrame.TabFrames.Dark.Visible = false
  3471. end)
  3472.  
  3473. Settings.MouseButton1Down:connect(function()
  3474. game.CoreGui.Unjailbreak.MainFrame.TabFrames.HomeFrame.Visible = false
  3475. game.CoreGui.Unjailbreak.MainFrame.TabFrames.GameFrame.Visible = false
  3476. game.CoreGui.Unjailbreak.MainFrame.TabFrames.TeleportsFrame.Visible = false
  3477. game.CoreGui.Unjailbreak.MainFrame.TabFrames.SettingsFrame.Visible = true
  3478. game.CoreGui.Unjailbreak.MainFrame.TabFrames:TweenPosition(UDim2.new(0, 0,0, 47), 'Out', 'Quint', 1, true)
  3479. game.CoreGui.Unjailbreak.MainFrame.TabFrames.Dark.Visible = false
  3480. end)
  3481.  
  3482. SetKeybind.MouseButton1Down:connect(function()
  3483. game.CoreGui.Unjailbreak.MainFrame.TabFrames.SettingsFrame.KeybindConFrame.Visible = true
  3484. game.CoreGui.Unjailbreak.MainFrame.TabFrames.SettingsFrame.KeybindConFrame.JewelryKeyy.Text = "Jewelry Color Set: "..JewelryKeyBox.Text
  3485. game.CoreGui.Unjailbreak.MainFrame.TabFrames.SettingsFrame.KeybindConFrame.CriminalKeyy.Text = "Criminal Key Set: "..CrimBaseBox.Text
  3486. game.CoreGui.Unjailbreak.MainFrame.TabFrames.SettingsFrame.KeybindConFrame.BankKeyy.Text = "Bank Key Set: "..BankKeyBox.Text
  3487. end)
  3488.  
  3489. KeyContinue.MouseButton1Down:connect(function()
  3490. game.CoreGui.Unjailbreak.MainFrame.TabFrames.SettingsFrame.KeybindConFrame.Visible = false
  3491.  
  3492. --Jewelry
  3493. game.Players.LocalPlayer:GetMouse().KeyDown:connect(function(key)
  3494. if string.lower(key) == game.CoreGui.Unjailbreak.MainFrame.TabFrames.SettingsFrame.KeybindConFrame.JewelryKeyy.Text then
  3495. for i=1,20 do
  3496. wait()
  3497. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(137.325, 17.878, 1320.123) + Vector3.new(1,0,0)
  3498. end
  3499. end
  3500. end)
  3501.  
  3502.  
  3503. --Bank
  3504. game.Players.LocalPlayer:GetMouse().KeyDown:connect(function(key)
  3505. if string.lower(key) == game.CoreGui.Unjailbreak.MainFrame.TabFrames.SettingsFrame.KeybindConFrame.BankKeyy.Text then
  3506. for i=1,20 do
  3507. wait()
  3508. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-11.036747, 17.9193821, 797.971521) + Vector3.new(1,0,0)
  3509. end
  3510. end
  3511. end)
  3512.  
  3513.  
  3514. --Criminal
  3515. game.Players.LocalPlayer:GetMouse().KeyDown:connect(function(key)
  3516. if string.lower(key) == game.CoreGui.Unjailbreak.MainFrame.TabFrames.SettingsFrame.KeybindConFrame.CriminalKeyy.Text then
  3517. for i=1,20 do
  3518. wait()
  3519. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-222.339157, 17.9125443, 1575.82336) + Vector3.new(1,0,0)
  3520. end
  3521. end
  3522. end)
  3523. end)
  3524.  
  3525. KeyCancel.MouseButton1Click:connect(function()
  3526. game.CoreGui.Unjailbreak.MainFrame.TabFrames.SettingsFrame.KeybindConFrame.Visible = false
  3527. end)
  3528.  
  3529. CDrag.MouseButton1Down:connect(function()
  3530. if Dragg == true then
  3531. Dragg = false
  3532. game.CoreGui.Unjailbreak.MainFrame.Draggable = true
  3533. game.CoreGui.Unjailbreak.MainFrame.TabFrames.SettingsFrame.CDrag.ImageColor3 = Color3.new(0.211765, 0.635294, 0)
  3534. else
  3535. Dragg = true
  3536. game.CoreGui.Unjailbreak.MainFrame.Draggable = false
  3537. game.CoreGui.Unjailbreak.MainFrame.TabFrames.SettingsFrame.CDrag.ImageColor3 = Color3.new(0.380392, 0.380392, 0.380392)
  3538. end
  3539. end)
  3540.  
  3541. local ee = true
  3542. CNotifierB.MouseButton1Down:connect(function()
  3543. if BNotif == true then
  3544. BNotif = false
  3545. game.CoreGui.Unjailbreak.MainFrame.TabFrames.SettingsFrame.CNotifierB.ImageColor3 = Color3.new(0.380392, 0.380392, 0.380392)
  3546. ee = false
  3547. else
  3548. ee = true
  3549. BNotif = true
  3550. game.CoreGui.Unjailbreak.MainFrame.TabFrames.SettingsFrame.CNotifierB.ImageColor3 = Color3.new(0.211765, 0.635294, 0)
  3551. for i, v in pairs(game:GetService("Workspace").Banks:GetChildren()) do
  3552. while ee do
  3553. wait(1)
  3554. if v.Extra.Light.SurfaceLight.Enabled == true then
  3555. game.CoreGui.Unjailbreak.BNotifierOpen:TweenPosition(UDim2.new(0, 1718,0, 578),"Out","Quint",2,true)
  3556. else
  3557. game.CoreGui.Unjailbreak.BNotifierOpen:TweenPosition(UDim2.new(0, 1950,0, 578),"Out","Quint",2,true)
  3558. end
  3559. end
  3560. end
  3561. end
  3562. end)
  3563.  
  3564. local eeee = true
  3565. CNotifierJ.MouseButton1Down:connect(function()
  3566. if JNotif == true then
  3567. JNotif = false
  3568. game.CoreGui.Unjailbreak.MainFrame.TabFrames.SettingsFrame.CNotifierJ.ImageColor3 = Color3.new(0.380392, 0.380392, 0.380392)
  3569. eeee = false
  3570. else
  3571. eeee = true
  3572. JNotif = true
  3573. game.CoreGui.Unjailbreak.MainFrame.TabFrames.SettingsFrame.CNotifierJ.ImageColor3 = Color3.new(0.211765, 0.635294, 0)
  3574. for i, v in pairs(game:GetService("Workspace").Jewelrys:GetChildren()) do
  3575. while eeee do
  3576. wait(1)
  3577. if v.Extra.Light.SurfaceLight.Enabled == true then
  3578. game.CoreGui.Unjailbreak.JNotifierOpen:TweenPosition(UDim2.new(0, 1718,0, 657),"Out","Quint",2,true)
  3579. else
  3580. game.CoreGui.Unjailbreak.JNotifierOpen:TweenPosition(UDim2.new(0, 1950,0, 657),"Out","Quint",2,true)
  3581. end
  3582. end
  3583. end
  3584. end
  3585. end)
  3586.  
  3587. function bigggHead()
  3588. for i, v in pairs(game:GetService("Players"):GetChildren()) do
  3589. if v.TeamValue.Value == "Police" then
  3590. v.Character.HumanoidRootPart.Transparency = 0
  3591. v.Character.HumanoidRootPart.BrickColor = BrickColor.new("Blue")
  3592. v.Character.HumanoidRootPart.Size = Vector3.new(16,16,16)
  3593. end
  3594. end
  3595. end
  3596.  
  3597. CBigHead.MouseButton1Down:connect(function()
  3598. if bigheadd == true then
  3599. bigheadd = false
  3600. bigggHead(false)
  3601. game.CoreGui.Unjailbreak.MainFrame.TabFrames.SettingsFrame.CBigHead.ImageColor3 = Color3.new(0.380392, 0.380392, 0.380392)
  3602. else
  3603. bigheadd = true
  3604. bigggHead(true)
  3605. game.CoreGui.Unjailbreak.MainFrame.TabFrames.SettingsFrame.CBigHead.ImageColor3 = Color3.new(0.211765, 0.635294, 0)
  3606. end
  3607. end)
  3608.  
  3609. CForceField.MouseButton1Down:connect(function()
  3610. if forcefieldd == true then
  3611. forcefieldd = false
  3612. game.CoreGui.Unjailbreak.MainFrame.TabFrames.SettingsFrame.CForceField.ImageColor3 = Color3.new(0.380392, 0.380392, 0.380392)
  3613. else
  3614. forcefieldd = true
  3615. game.CoreGui.Unjailbreak.MainFrame.TabFrames.SettingsFrame.CForceField.ImageColor3 = Color3.new(0.211765, 0.635294, 0)
  3616. local es = true
  3617. while es do
  3618. wait(0.1)
  3619. for i, v in pairs(game:GetService("Players"):GetChildren()) do
  3620. if v.TeamValue.Value == "Police" then
  3621. if (game:GetService("Players").Character.Torso.Position - v.Position).magnitude <= 5 then
  3622. for i=1,20 do
  3623. wait()
  3624. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-222.339157, 17.9125443, 1575.82336) + Vector3.new(1,0,0)
  3625. end
  3626. end
  3627. end
  3628. end
  3629. end
  3630. end
  3631. end)
  3632.  
  3633. local Checkpoint = {}
  3634. Coords.MouseButton1Down:connect(function()
  3635. table.remove(Checkpoint, 1)
  3636. table.insert(Checkpoint, game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position)
  3637. end)
  3638.  
  3639. CustomTP.MouseButton1Down:connect(function()
  3640. for i=1, 20 do
  3641. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Checkpoint[1]) + Vector3.new(1,0,0)
  3642. end
  3643. end)
  3644.  
  3645. Reset.MouseButton1Down:connect(function()
  3646. game.CoreGui.Unjailbreak:Remove()
  3647. end)
  3648.  
  3649. InfiniteAmmo.MouseButton1Down:connect(function()
  3650. if magInf == true then
  3651. magInf = false
  3652. game:GetService("Players").LocalPlayer.PlayerGui.ScreenGui.Ammo.MagSize.RobloxLocked = false
  3653. game.CoreGui.Unjailbreak.MainFrame.TabFrames.GameFrame.InfiniteAmmo.Text = "Ammo: OFF"
  3654. else
  3655. magInf = true
  3656. game:GetService("Players").LocalPlayer.PlayerGui.ScreenGui.Ammo.MagSize.RobloxLocked = true
  3657. game.CoreGui.Unjailbreak.MainFrame.TabFrames.GameFrame.InfiniteAmmo.Text = "Ammo: ON"
  3658. end
  3659. end)
  3660.  
  3661. Prison.MouseButton1Down:connect(function()
  3662. for i=1,20 do
  3663. wait()
  3664. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1138.66, 18.009, -1430.01) + Vector3.new(1,0,0)
  3665. end
  3666. end)
  3667.  
  3668. CriminalBase.MouseButton1Down:connect(function()
  3669. for i=1,20 do
  3670. wait()
  3671. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-222.339157, 17.9125443, 1575.82336) + Vector3.new(1,0,0)
  3672. end
  3673. end)
  3674.  
  3675. BatCave.MouseButton1Down:connect(function()
  3676. for i=1,20 do
  3677. wait()
  3678. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1579.4823, 49.787693, -1759.61438) + Vector3.new(1,0,0)
  3679. end
  3680. end)
  3681.  
  3682. PoliceHQ1.MouseButton1Click:connect(function()
  3683. for i=1,20 do
  3684. wait()
  3685. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1130.11426, 17.950058, -1593.09766) + Vector3.new(1,0,0)
  3686. end
  3687. end)
  3688.  
  3689. PoliceHQ2.MouseButton1Down:connect(function()
  3690. for i=1,20 do
  3691. wait()
  3692. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(736.232239, 38.1125107, 1130.04456) + Vector3.new(1,0,0)
  3693. end
  3694. end)
  3695.  
  3696. Garage.MouseButton1Click:connect(function()
  3697. for i=1,20 do
  3698. wait()
  3699. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-341.0529, 19.644, 1182.502) + Vector3.new(1,0,0)
  3700. end
  3701. end)
  3702.  
  3703. BankStore.MouseButton1Down:connect(function()
  3704. for i=1,20 do
  3705. wait()
  3706. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(32.214, 2.67609, 818.648926) + Vector3.new(1,0,0)
  3707. end
  3708. end)
  3709.  
  3710. JewelryStore.MouseButton1Down:connect(function()
  3711. for i=1,20 do
  3712. wait()
  3713. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(137.325, 17.878, 1320.123) + Vector3.new(1,0,0)
  3714. end
  3715. end)
  3716.  
  3717. GasStation.MouseButton1Click:connect(function()
  3718. for i=1,20 do
  3719. wait()
  3720. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1548.20093, 17.7475166, 701.546997) + Vector3.new(1,0,0)
  3721. end
  3722. end)
  3723.  
  3724. DonutShop.MouseButton1Down:connect(function()
  3725. for i=1,20 do
  3726. wait()
  3727. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(267.315552, 17.6180038, -1796.33093) + Vector3.new(1,0,0)
  3728. end
  3729. end)
  3730.  
  3731. Lamborghini.MouseButton1Down:connect(function()
  3732. for i=1,20 do
  3733. wait()
  3734. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(144.794067, 17.6189003, 768.572693) + Vector3.new(1,0,0)
  3735. end
  3736. end)
  3737.  
  3738. Bugatti.MouseButton1Down:connect(function()
  3739. for i=1,20 do
  3740. wait()
  3741. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(245.938766, 17.6064777, 1372.15076) + Vector3.new(1,0,0)
  3742. end
  3743. end)
  3744.  
  3745. SWATVan.MouseButton1Down:connect(function()
  3746. for i=1,20 do
  3747. wait()
  3748. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1355.2417, 18, -1531.86047) + Vector3.new(1,0,0)
  3749. end
  3750. end)
  3751.  
  3752. DuneBuggy.MouseButton1Down:connect(function()
  3753. for i=1,20 do
  3754. wait()
  3755. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(571.526733, 16.66436, -470.50943) + Vector3.new(1,0,0)
  3756. end
  3757. end)
  3758.  
  3759. PickUpTruck.MouseButton1Down:connect(function()
  3760. for i=1,20 do
  3761. wait()
  3762. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1541.10388, 17.746624, 729) + Vector3.new(1,0,0)
  3763. end
  3764. end)
  3765.  
  3766. DirtBike.MouseButton1Down:connect(function()
  3767. for i=1,20 do
  3768. wait()
  3769. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1313.71118, 17.3656254, 370.085327) + Vector3.new(1,0,0)
  3770. end
  3771. end)
  3772.  
  3773. Porsche.MouseButton1Down:connect(function()
  3774. for i=1,20 do
  3775. wait()
  3776. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1112.11475, 101.16069, 1290.57654) + Vector3.new(1,0,0)
  3777. end
  3778. end)
  3779.  
  3780. Camaro.MouseButton1Down:connect(function()
  3781. for i=1,20 do
  3782. wait()
  3783. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-956.153564, 19.8500576, -1451.23572) + Vector3.new(1,0,0)
  3784. end
  3785. end)
  3786.  
  3787. MiniCooper.MouseButton1Down:connect(function()
  3788. for i=1,20 do
  3789. wait()
  3790. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(767.823242, 17.3656254, -1216.83643) + Vector3.new(1,0,0)
  3791. end
  3792. end)
  3793.  
  3794. Tesla3.MouseButton1Down:connect(function()
  3795. for i=1,20 do
  3796. wait()
  3797. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-111.571999, 17.6169529, 541.515747) + Vector3.new(1,0,0)
  3798. end
  3799. end)
  3800.  
  3801. GodMode.MouseButton1Down:connect(function()
  3802. game:GetService("Players").LocalPlayer.Character.Humanoid.Name = 1
  3803. local l = game:GetService("Players").LocalPlayer.Character["1"]:Clone()
  3804. l.Parent = game:GetService("Players").LocalPlayer.Character
  3805. l.Name = "Humanoid"
  3806. wait(0.1)
  3807. game:GetService("Players").LocalPlayer.Character["1"]:Destroy()
  3808. game:GetService("Workspace").CurrentCamera.CameraSubject = game:GetService("Players").LocalPlayer.Character
  3809. game:GetService("Players").LocalPlayer.Character.Animate.Disabled = true
  3810. wait(0.1)
  3811. game:GetService("Players").LocalPlayer.Character.Animate.Disabled = false
  3812. game:GetService("Players").LocalPlayer.Character.Humanoid.DisplayDistanceType = "None"
  3813. end)
  3814.  
  3815. Btools.MouseButton1Down:connect(function()
  3816. game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, true)
  3817. for index, child in pairs(game:GetService("Workspace"):GetChildren()) do
  3818. if child.ClassName == "Part" then
  3819. child.Locked = false
  3820. end
  3821. if child.ClassName == "MeshPart" then
  3822. child.Locked = false
  3823. end
  3824. if child.ClassName == "UnionOperation" then
  3825. child.Locked = false
  3826. end
  3827. if child.ClassName == "Model" then
  3828. for index, chil in pairs(child:GetChildren()) do
  3829. if chil.ClassName == "Part" then
  3830. chil.Locked = false
  3831. end
  3832. if chil.ClassName == "MeshPart" then
  3833. chil.Locked = false
  3834. end
  3835. if chil.ClassName == "UnionOperation" then
  3836. chil.Locked = false
  3837. end
  3838. if chil.ClassName == "Model" then
  3839. for index, childe in pairs(chil:GetChildren()) do
  3840. if childe.ClassName == "Part" then
  3841. childe.Locked = false
  3842. end
  3843. if childe.ClassName == "MeshPart" then
  3844. childe.Locked = false
  3845. end
  3846. if childe.ClassName == "UnionOperation" then
  3847. childe.Locked = false
  3848. end
  3849. if childe.ClassName == "Model" then
  3850. for index, childeo in pairs(childe:GetChildren()) do
  3851. if childeo.ClassName == "Part" then
  3852. childeo.Locked = false
  3853. end
  3854. if childeo.ClassName == "MeshPart" then
  3855. childeo.Locked = false
  3856. end
  3857. if childeo.ClassName == "UnionOperation" then
  3858. childeo.Locked = false
  3859. end
  3860. if childeo.ClassName == "Model" then
  3861. end
  3862. end
  3863. end
  3864. end
  3865. end
  3866. end
  3867. end
  3868. end
  3869. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  3870. c.BinType = Enum.BinType.Hammer
  3871. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  3872. c.BinType = Enum.BinType.Clone
  3873. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  3874. c.BinType = Enum.BinType.Grab
  3875. end)
  3876.  
  3877. RemoveAll.MouseButton1Down:connect(function()
  3878. for i, v in pairs(game:GetService("Workspace").Jewelrys:GetChildren()) do
  3879. v.Lasers:Remove()
  3880. v.Cameras:Remove()
  3881. v.FloorLasers:Remove()
  3882. end
  3883. game:GetService("Workspace").Cells:Remove()
  3884. game:GetService("Workspace").Doors:Remove()
  3885. game:GetService("Workspace").EscapeRoutes.ExplodeWall:Destroy()
  3886. game:GetService("Workspace").EscapeRoutes.LiftGate:Remove()
  3887. for i, v in pairs(game:GetService("Workspace").Banks:GetChildren()) do
  3888. v.Door:Destroy()
  3889. v.TriggerDoor:Destroy()
  3890. v.Lasers:Remove()
  3891. end
  3892. end)
  3893.  
  3894. AnnoyServer.MouseButton1Down:connect(function()
  3895. if annnoy == true then
  3896. annnoy = false
  3897. e = false
  3898. else
  3899. annnoy = true
  3900. e = true
  3901. while eee do
  3902. for _,plr in pairs(game:GetService("Players"):GetPlayers()) do
  3903. pcall(function()
  3904. for _,obj in pairs(plr.Character.Head:GetChildren()) do
  3905. if obj:IsA("Sound") then
  3906. obj:Play()
  3907. end
  3908. end
  3909. end)
  3910. end
  3911. end
  3912. end
  3913. end)
  3914.  
  3915. SpamArrest.MouseButton1Down:connect(function()
  3916. local Player = game:GetService("Players").LocalPlayer
  3917. wait(0.5)
  3918. for i,v in pairs(game.Teams.Criminal:GetPlayers()) do
  3919. repeat
  3920. wait()
  3921. Player.Character.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame * CFrame.new(0, 0, 1)
  3922. until v.Team.Name ~= "Criminal"
  3923. end
  3924. end)
  3925.  
  3926. noclip = false
  3927. game:GetService('RunService').Stepped:connect(function()
  3928. if noclip then
  3929. game:GetService("Players").LocalPlayer.Character.Humanoid:ChangeState(11)
  3930. end
  3931. end)
  3932.  
  3933. NoClip.MouseButton1Down:connect(function()
  3934. noclip = not noclip
  3935. if NoClip.Text == "NoClip: ON" then
  3936. NoClip.Text = "NoClip: OFF"
  3937. else
  3938. NoClip.Text = "NoClip: ON"
  3939. end
  3940. end)
  3941.  
  3942. WalkSpeed.MouseButton1Down:connect(function()
  3943. down = false
  3944. velocity = Instance.new("BodyVelocity")
  3945. velocity.maxForce = Vector3.new(100000, 0, 100000)
  3946. local speed = 150
  3947. gyro = Instance.new("BodyGyro")
  3948. gyro.maxTorque = Vector3.new(100000, 0, 100000)
  3949.  
  3950. local hum = game:GetService("Players").LocalPlayer.Character.Humanoid
  3951.  
  3952. function onButton1Down(mouse)
  3953. down = true
  3954. velocity.Parent = game:GetService("Players").LocalPlayer.Character.UpperTorso
  3955. velocity.velocity = (hum.MoveDirection) * speed
  3956. gyro.Parent = game:GetService("Players").LocalPlayer.Character.UpperTorso
  3957. while down do
  3958. if not down then break end
  3959. velocity.velocity = (hum.MoveDirection) * speed
  3960. local refpos = gyro.Parent.Position + (gyro.Parent.Position - workspace.CurrentCamera.CoordinateFrame.p).unit * 5
  3961. gyro.cframe = CFrame.new(gyro.Parent.Position, Vector3.new(refpos.x, gyro.Parent.Position.y, refpos.z))
  3962. wait(0.1)
  3963. end
  3964. end
  3965.  
  3966. function onButton1Up(mouse)
  3967. velocity.Parent = nil
  3968. gyro.Parent = nil
  3969. down = false
  3970. end
  3971.  
  3972. function onSelected(mouse)
  3973. mouse.KeyDown:connect(function(k) if k:lower()=="q"then onButton1Down(mouse)end end)
  3974. mouse.KeyUp:connect(function(k) if k:lower()=="q"then onButton1Up(mouse)end end)
  3975. end
  3976.  
  3977. onSelected(game:GetService("Players").LocalPlayer:GetMouse())
  3978. end)
  3979.  
  3980. Gravity.MouseButton1Down:connect(function()
  3981. if Gravity == true then
  3982. Gravity = false
  3983. game:GetService("Workspace").Gravity = 196.2
  3984. game.CoreGui.Unjailbreak.MainFrame.TabFrames.GameFrame.Gravity.Text = "Gravity: OFF"
  3985. else
  3986. Gravity = true
  3987. game.CoreGui.Unjailbreak.MainFrame.TabFrames.GameFrame.Gravity.Text = "Gravity: ON"
  3988. game:GetService("Workspace").Gravity = 45
  3989. end
  3990. end)
  3991.  
  3992. JumpPower.MouseButton1Down:connect(function()
  3993. if Jump == true then
  3994. Jump = false
  3995. game:GetService("Players").LocalPlayer.Character.Humanoid.JumpPower = 50
  3996. game.CoreGui.Unjailbreak.MainFrame.TabFrames.GameFrame.JumpPower.Text = "Jump: OFF"
  3997. else
  3998. Jump = true
  3999. game:GetService("Players").LocalPlayer.Character.Humanoid.JumpPower = 100
  4000. game.CoreGui.Unjailbreak.MainFrame.TabFrames.GameFrame.JumpPower.Text = "Jump: ON"
  4001. end
  4002. end)
  4003.  
  4004. VehicleSpeed.MouseButton1Down:connect(function()
  4005. dir = 0
  4006. gs = game.GetService
  4007. gs(game,"RunService").RenderStepped:connect(function()
  4008. for i,v in next,workspace.Vehicles:children() do
  4009. if v.Name ~= "Heli" then
  4010. if v:FindFirstChild("Engine") then
  4011. local bf,cf = v.Engine:FindFirstChild("NewForce"),v:GetPrimaryPartCFrame().lookVector
  4012. if not bf then
  4013. bf = v.Engine:FindFirstChild("BodyForce") or v.Engine:FindFirstChild("VectorForce")
  4014. if bf then
  4015. bf = bf:Clone()
  4016. bf.Parent = v.Engine
  4017. bf.Name = "NewForce"
  4018. end
  4019. end
  4020. if bf then
  4021. local fa = 1
  4022. if v.Name:lower():find("bike") then fa = .3 elseif v.Name:lower():find("bugg") then fa = .5 end
  4023. if v.Seat.PlayerName.Value ~= game:GetService("Players").LocalPlayer.Name then fa = 0 end
  4024. bf.Force = Vector3.new(cf.X*300000*dir*fa,0,cf.Z*300000*dir*fa)
  4025. end
  4026. end
  4027. end
  4028. end
  4029. end)
  4030. val = {
  4031. {Enum.KeyCode.W,1};
  4032. {Enum.KeyCode.S,-1};
  4033. }
  4034. uis = gs(game,"UserInputService")
  4035. chk = function(k)
  4036. for i,v in next,val do
  4037. if v[1]==k.KeyCode then
  4038. return v[2]
  4039. end
  4040. end
  4041. end
  4042. uis.InputBegan:connect(function(k)
  4043. dir = chk(k) or dir
  4044. end)
  4045. uis.InputEnded:connect(function(k)
  4046. if chk(k) == dir then
  4047. dir = 0
  4048. end
  4049. end)
  4050. end)
  4051.  
  4052. KeyCard.MouseButton1Down:connect(function()
  4053. game:GetService("Players").LocalPlayer.TeamValue.Value= "Police"
  4054. end)
  4055.  
  4056. local mouse=game:GetService("Players").LocalPlayer:GetMouse''
  4057. localplayer=game:GetService("Players").LocalPlayer
  4058. game:GetService("Players").LocalPlayer.Character:WaitForChild("HumanoidRootPart")
  4059. local torso = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  4060. local speed=0
  4061. local keys={a=false,d=false,w=false,s=false}
  4062. local e1
  4063. local e2
  4064. local function start()
  4065. local pos = Instance.new("BodyPosition",torso)
  4066. local gyro = Instance.new("BodyGyro",torso)
  4067. pos.Name="EPIXPOS"
  4068. pos.maxForce = Vector3.new(math.huge, math.huge, math.huge)
  4069. pos.position = torso.Position
  4070. gyro.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  4071. gyro.cframe = torso.CFrame
  4072. repeat
  4073. wait()
  4074. localplayer.Character.Humanoid.PlatformStand=true
  4075. local new=gyro.cframe - gyro.cframe.p + pos.position
  4076. if not keys.w and not keys.s and not keys.a and not keys.d then
  4077. speed=1
  4078. end
  4079. if keys.w then
  4080. new = new + workspace.CurrentCamera.CoordinateFrame.lookVector * speed
  4081. speed=speed+0.01
  4082. end
  4083. if keys.s then
  4084. new = new - workspace.CurrentCamera.CoordinateFrame.lookVector * speed
  4085. speed=speed+0.01
  4086. end
  4087. if keys.d then
  4088. new = new * CFrame.new(speed,0,0)
  4089. speed=speed+0.01
  4090. end
  4091. if keys.a then
  4092. new = new * CFrame.new(-speed,0,0)
  4093. speed=speed+0.01
  4094. end
  4095. if speed>5 then
  4096. speed=5
  4097. end
  4098. pos.position=new.p
  4099. if keys.w then
  4100. gyro.cframe = workspace.CurrentCamera.CoordinateFrame*CFrame.Angles(-math.rad(speed*15),0,0)
  4101. elseif keys.s then
  4102. gyro.cframe = workspace.CurrentCamera.CoordinateFrame*CFrame.Angles(math.rad(speed*15),0,0)
  4103. else
  4104. gyro.cframe = workspace.CurrentCamera.CoordinateFrame
  4105. end
  4106. until not Fly
  4107. if gyro then gyro:Destroy() end
  4108. if pos then pos:Destroy() end
  4109. flying=false
  4110. localplayer.Character.Humanoid.PlatformStand=false
  4111. speed=0
  4112. end
  4113. e1=mouse.KeyDown:connect(function(key)
  4114. if not torso or not torso.Parent then flying=false e1:disconnect() e2:disconnect() return end
  4115. if key=="w" then
  4116. keys.w=true
  4117. elseif key=="s" then
  4118. keys.s=true
  4119. elseif key=="a" then
  4120. keys.a=true
  4121. elseif key=="d" then
  4122. keys.d=true
  4123. end
  4124. end)
  4125. e2=mouse.KeyUp:connect(function(key)
  4126. if key=="w" then
  4127. keys.w=false
  4128. elseif key=="s" then
  4129. keys.s=false
  4130. elseif key=="a" then
  4131. keys.a=false
  4132. elseif key=="d" then
  4133. keys.d=false
  4134. end
  4135. end)
  4136.  
  4137. Fly.MouseButton1Down:connect(function()
  4138. if flyy == true then
  4139. game.CoreGui.Unjailbreak.MainFrame.TabFrames.GameFrame.Fly.Text = "Fly: OFF"
  4140. flyy = false
  4141. Fly = false
  4142. start()
  4143. else
  4144. game.CoreGui.Unjailbreak.MainFrame.TabFrames.GameFrame.Fly.Text = "Fly: ON"
  4145. flyy = true
  4146. Fly = true
  4147. start()
  4148. end
  4149. end)
  4150.  
  4151. FlashLight.MouseButton1Down:connect(function()
  4152. local hit = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  4153.  
  4154. a = Instance.new("Part", workspace)
  4155. a.Anchored = true
  4156. a.Position = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  4157. a.CanCollide = false
  4158.  
  4159. for i, v in pairs(game:GetService("Workspace").Givers:GetChildren()) do
  4160. if v.Name == "Station" then
  4161. for a, b in pairs(v:GetChildren()) do
  4162. if b:IsA("StringValue") then
  4163. if b.Value == "Flashlight" then
  4164. v.CFrame = CFrame.new(hit)
  4165. end
  4166. end
  4167. end
  4168. end
  4169. end
  4170. end)
  4171.  
  4172. M4A4.MouseButton1Down:connect(function()
  4173. local hit = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  4174.  
  4175. a = Instance.new("Part", workspace)
  4176. a.Anchored = true
  4177. a.Position = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  4178. a.CanCollide = false
  4179.  
  4180. for i, v in pairs(game:GetService("Workspace").Givers:GetChildren()) do
  4181. if v.Name == "Station" then
  4182. for a, b in pairs(v:GetChildren()) do
  4183. if b:IsA("StringValue") then
  4184. if b.Value == "RifleSWAT" then
  4185. v.CFrame = CFrame.new(hit)
  4186. end
  4187. end
  4188. end
  4189. end
  4190. end
  4191. end)
  4192.  
  4193. AK47.MouseButton1Down:connect(function()
  4194. local hit = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  4195.  
  4196. a = Instance.new("Part", workspace)
  4197. a.Anchored = true
  4198. a.Position = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  4199. a.CanCollide = false
  4200.  
  4201. for i, v in pairs(game:GetService("Workspace").Givers:GetChildren()) do
  4202. if v.Name == "ShootingRange" then
  4203. for a, b in pairs(v:GetChildren()) do
  4204. if b:IsA("StringValue") then
  4205. if b.Value == "AK47" then
  4206. v.CFrame = CFrame.new(hit)
  4207. end
  4208. end
  4209. end
  4210. end
  4211. end
  4212. end)
  4213.  
  4214. ShotGun.MouseButton1Down:connect(function()
  4215. local hit = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  4216.  
  4217. a = Instance.new("Part", workspace)
  4218. a.Anchored = true
  4219. a.Position = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  4220. a.CanCollide = false
  4221.  
  4222. for i, v in pairs(game:GetService("Workspace").Givers:GetChildren()) do
  4223. if v.Name == "Station" then
  4224. for a, b in pairs(v:GetChildren()) do
  4225. if b:IsA("StringValue") then
  4226. if b.Value == "Shotgun" then
  4227. v.CFrame = CFrame.new(hit)
  4228. end
  4229. end
  4230. end
  4231. end
  4232. end
  4233. end)
  4234.  
  4235. Pistol.MouseButton1Down:connect(function()
  4236. local hit = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  4237.  
  4238. a = Instance.new("Part", workspace)
  4239. a.Anchored = true
  4240. a.Position = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  4241. a.CanCollide = false
  4242.  
  4243. for i, v in pairs(game:GetService("Workspace").Givers:GetChildren()) do
  4244. if v.Name == "Station" then
  4245. for a, b in pairs(v:GetChildren()) do
  4246. if b:IsA("StringValue") then
  4247. if b.Value == "Pistol" then
  4248. v.CFrame = CFrame.new(hit)
  4249. end
  4250. end
  4251. end
  4252. end
  4253. end
  4254. end)
  4255.  
  4256. GotoBank.MouseButton1Down:connect(function()
  4257. for i=1,20 do
  4258. wait()
  4259. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(32.214, 2.67609, 818.648926) + Vector3.new(1,0,0)
  4260. end
  4261. end)
  4262.  
  4263. GotoJewelry.MouseButton1Down:connect(function()
  4264. for i=1,20 do
  4265. wait()
  4266. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(137.325, 17.878, 1320.123) + Vector3.new(1,0,0)
  4267. end
  4268. end);
  4269.  
  4270. GoTo.MouseButton1Down:connect(function()
  4271. p = getPlayer()
  4272. if p then
  4273. for i=1,20 do
  4274. wait()
  4275. PLR.Character.HumanoidRootPart.CFrame = p.Character.HumanoidRootPart.CFrame + Vector3.new(0, 3, 0)
  4276. end
  4277. else
  4278. GoTo.Text = "Retry"; wait(1); GoTo.Text = "GoTo" end
  4279. end)
  4280.  
  4281. Explorer.MouseButton1Down:connect(function()
  4282. TextProperties = {"ZOffset", "CharacterAppearance", "PrimaryPart", "SkyboxBk", "SkyboxDn", "WaterTransparency", "WaterWaveSpeed", "HipHeight","ChatHistory","ConversationDistance", "BlastPressure", "BlastRadius", "InitialPrompt", "CPU", "OSVer", "OsPlatformId", "CpuSpeed", "D", "P", "maxForce", "InstanceCount", "PlaceId", "workspace", "GarbageCollectionFrequency", "BinType", "Grip", "ActivationState", "GarbageCollectionLimit", "ShadowColor", "TargetPoint", "WalkDirection", "WalkToPart", "Image", "Font", "ClearTextOnFocus", "TextTransparency", "WalkToPoint", "ColorShift_Bottom", "ColorShift_Top","MaxSpeed","CartoonFactor","Target","MaxThrust","MaxTorque","TargetOffset","ThrustD", "ThrustP", "TurnD", "TurnP", "profileName", "Resolution", "Shadow", "Bevels", "BatchSize", "AASamples", "Genre", "CreatorType", "CreatorId", "JobId", "SkyboxUp", "SkyboxFt", "SkyboxLf", "StarCount", "ReporterType", "Outfit1", "Outfit2", "Pants", "PlayCount", "Shirt", "MinReportInterval", "VelocitySpread","Rate", "DataSendRate", "DataGCRate", "Archivable", "ClassName","NameDisplayerDistance", "MaxVelocity","PantsTemplate","ShirtTemplate","SoundId","Pitch","IsPlaying","IsPaused","Looped","PlayOnRemove","StudsPerTileU","StudsPerTileV", "Name", "DataCost", "Value", "MaxPlayers" , "PersonalServerRank" ,"NumPlayers" , "Text", "Reflectance","FogEnd", "FogStart","WaterTransparency", "Transparency", "Heat", "TeamName", "WalkSpeed", "Health", "MaxHealth", "Size", "Position", "AccountAge", "TeamColor", "userId", "Brightness", "Ambient", "OsPlatform", "SimulationRadius", "ChatMode", "AccountAgeReplicate", "Character", "Steer", "Style","NetworkOwnerV3", "CanCollide", "CFrame", "TimeOfDay", "FieldOfView", "CameraType", "LinkedSource", "MachineAddress", "Port"}
  4283. BoolProperties = {"Anchored", "AllowInsertFreeModels","SuperSafeChatReplicate", "Player", "HangDetection", "FullScriptCode", "DataModelJobs", "DeviceLost", "SSAO", "SoundEnabled", "SoftwareSound", "TextFits", "TextWrap", "Draggable", "BubbleChat" , "AutoRuns", "Guest", "LocalSaveEnabled", "PlatformStand", "AutoRotate", "CelestialBodiesShown","HasBuildTools" , "ClassicChat" , "DevEnableMouseLock" ,"Netural", "CanCollide", "Disabled", "Outlines" ,"Jump", "Sit", "Visible", "IsSmooth" , "Enabled", "Locked", "FilteringEnabled", "StreamingEnabled", "GlobalShadows", "RobloxLocked", "ScriptsDisabled"}
  4284. BrickColorProperties = {"BrickColor", "Color", "TeamColor", "AllowSweep", "WaterColor", "ParallelPhysics", "Is30FpsThrottleEnabled", "HeadsUpDisplay", "Texture", "Value", "WaterColor", "SkinColor", "SparkleColor", "FogColor", "HeadColor", "LeftArmColor", "RightArmColor", "TorsoColor", "RightLegColor", "LeftLegColor","ShadowColor", "Ambient", "SecondaryColor"}
  4285. s = Instance.new("ScreenGui", game.CoreGui)
  4286. pgr = Instance.new("TextButton")
  4287. pgr.Parent = s
  4288. pgr.Size = UDim2.new(0,100,0,40)
  4289. pgr.Position = UDim2.new(0,30,0,440)
  4290. pgr.Text="Xplorer"
  4291. pgr.BackgroundTransparency = 0.7
  4292. pgr.TextColor = BrickColor.new("Black")
  4293. pgr.BackgroundColor = BrickColor.new("Really Black")
  4294. pgr.BorderColor = BrickColor.new("Black")
  4295. pgr.Font = "ArialBold"
  4296. pgr.FontSize = "Size14"
  4297. pgr.TextStrokeColor3 = Color3.new(0/0,0/0,0/0)
  4298. pgr.TextStrokeTransparency = 0.3
  4299. pgr.BorderSizePixel = 1
  4300. pgr.BorderColor = BrickColor.new("White")
  4301.  
  4302. if game.Players.LocalPlayer.PlayerGui:findFirstChild("Explorer") then
  4303. game.Players.LocalPlayer.PlayerGui:findFirstChild("Explorer"):Remove()
  4304. end
  4305.  
  4306. Banned = {}
  4307.  
  4308.  
  4309.  
  4310. function isBanned()
  4311. for i,v in pairs(game.Players:GetPlayers()) do
  4312. if v.Name == Banned then
  4313. v:Destroy();
  4314. else
  4315. print("Player: "..v.Name.." has passed the test of banishments.");
  4316. end
  4317. end
  4318. end
  4319.  
  4320.  
  4321.  
  4322. local Cloned
  4323. local Deleted
  4324. local DeleteParent
  4325. local Player
  4326. local Search
  4327. local ScriptSearch
  4328. local Gui
  4329. local Cloned = nil
  4330. local Deleted = nil
  4331. local DeleteParent = nil
  4332. local Current = 0
  4333. local CurrentOption = 0
  4334.  
  4335. function Clear()
  4336. if Gui then
  4337. Gui:Remove()
  4338. end
  4339. Current = 0
  4340. CurrentOption = 0
  4341. end
  4342.  
  4343. function AddButton(N, Function, Color, Copy)
  4344. if not N then
  4345. error("RenderButton - No Name Specified")
  4346. end
  4347. if not Function then
  4348. error("RenderButton - No Function Specified")
  4349. end
  4350. if not Color then
  4351. Color = Color3.new(1, 1, 1)
  4352. end
  4353. if Copy == nil then
  4354. Copy = true
  4355. end
  4356. P = Instance.new("TextButton")
  4357. if Copy then
  4358. P.Size = UDim2.new(0, 110, 0, 20)
  4359. else
  4360. P.Size = UDim2.new(0, 130, 0, 20)
  4361. end
  4362. P.Text = N.Name
  4363. P.Name = N.Name
  4364. P.Parent = Gui
  4365. P.BackgroundColor3 = Color
  4366. P.TextColor3 = Color3.new(0, 0, 0)
  4367. P.BackgroundTransparency = 0.5
  4368. P.Position = UDim2.new(0, ((math.modf(Current/30))*150)+300, 0, 50+(20*((Current%30)-1)))
  4369. P.MouseButton1Click:connect(function()
  4370. Function(P)
  4371. end)
  4372. D = Instance.new("TextButton")
  4373. D.Size = UDim2.new(0, 20, 0, 20)
  4374. D.Text = "X"
  4375. D.Name = N.Name
  4376. D.Parent = Gui
  4377. D.BackgroundColor3 = Color3.new(1, 0, 0)
  4378. D.TextColor3 = Color3.new(0, 0, 0)
  4379. D.BackgroundTransparency = 0.5
  4380. D.Position = UDim2.new(0, ((math.modf(Current/30))*150)+300+130, 0, 50+(20*((Current%30)-1)))
  4381. D.MouseButton1Click:connect(function()
  4382. Deleted = N
  4383. DeleteParent = N.Parent
  4384. N.Parent = nil
  4385. Clear()
  4386. Search(DeleteParent)
  4387. end)
  4388. if Copy then
  4389. C = Instance.new("TextButton")
  4390. C.Size = UDim2.new(0, 20, 0, 20)
  4391. C.Text = "C"
  4392. C.Name = N.Name
  4393. C.Parent = Gui
  4394. C.BackgroundColor3 = Color3.new(0, 1, 0.5)
  4395. C.TextColor3 = Color3.new(0, 0, 0)
  4396. C.BackgroundTransparency = 0.5
  4397. C.Position = UDim2.new(0, ((math.modf(Current/30))*150)+300+110, 0, 50+(20*((Current%30)-1)))
  4398. C.MouseButton1Click:connect(function()
  4399. Cloned = N
  4400. Clear()
  4401. Search(N.Parent)
  4402. end)
  4403. end
  4404. Current = Current + 1
  4405. return P
  4406. end
  4407.  
  4408. function AddOption(N, Function, Color, Text)
  4409. if not N then
  4410. error("RenderButton - No Name Specified")
  4411. end
  4412. if not Color then
  4413. Color = Color3.new(1, 1, 1)
  4414. end
  4415. if Text == nil then
  4416. Text = false
  4417. end
  4418. if Text then
  4419. P = Instance.new("TextBox")
  4420. else
  4421. P = Instance.new("TextButton")
  4422. end
  4423. P.Text = N
  4424. P.Name = N
  4425. P.Parent = Gui
  4426. P.BackgroundColor3 = Color
  4427. P.TextColor3 = Color3.new(0, 0, 0)
  4428. P.BackgroundTransparency = 0.5
  4429. P.Size = UDim2.new(0, 150, 0, 20)
  4430. P.Position = UDim2.new(0, ((math.modf(CurrentOption/30))*150)+150, 0, 50+(20*((CurrentOption%30)-1)))
  4431. if not Text and Function then
  4432. P.MouseButton1Click:connect(function() Function(P) end)
  4433. end
  4434. CurrentOption = CurrentOption + 1
  4435. return P
  4436. end
  4437.  
  4438. function AddTextOption(Obj, Prop)
  4439. local Ob = Obj
  4440. local Pro = Prop
  4441. if type(Ob[Pro]) == "number" or type(Ob[Pro]) == "string" then
  4442. CurrentOption = CurrentOption + 1
  4443. local T = AddOption(Ob[Pro], nil, Color3.new(0.1, 0.4, 0.1), true)
  4444. CurrentOption = CurrentOption - 2
  4445. local O = AddOption("Change "..Pro..":", function() Ob[Pro] = T.Text end, Color3.new(0.1, 0.8, 0.1), false)
  4446. CurrentOption = CurrentOption + 1
  4447. end
  4448. end
  4449.  
  4450. function AddBrickColorOption(Obj, Prop)
  4451. local Ob = Obj
  4452. local Pro = Prop
  4453. if BrickColor.new(tostring(Ob[Pro])) == Ob[Pro] then
  4454. CurrentOption = CurrentOption + 1
  4455. local T = AddOption(tostring(Ob[Pro]), nil, Color3.new(0.1, 0.4, 0.1), true)
  4456. CurrentOption = CurrentOption - 2
  4457. local O = AddOption("Change "..Pro..":", function() Ob[Pro] = BrickColor.new(T.Text) end, Color3.new(0.1, 0.8, 0.1), false)
  4458. CurrentOption = CurrentOption + 1
  4459. end
  4460. end
  4461.  
  4462. function UnanchorObject(Objects)
  4463. local function Recurse(Base)
  4464. for _, Object in pairs(Base:GetChildren()) do
  4465. if _G.TestProperty(Object, "Anchored") then
  4466. Object.Anchored = not Object.Anchored
  4467. end
  4468. Recurse(Object)
  4469. end
  4470. end
  4471. Recurse(Objects)
  4472. end
  4473.  
  4474.  
  4475.  
  4476.  
  4477. function AddBoolOption(Obj, Prop)
  4478. local Ob = Obj
  4479. local Pro = Prop
  4480. if type(Ob[Pro]) == "boolean" then
  4481. local O = AddOption(Pro..": "..tostring(Ob[Pro]), nil, Color3.new(0.1, 0.8, 0.1), false)
  4482. O.MouseButton1Click:connect(function()
  4483. if Ob[Pro] then
  4484. Ob[Pro] = false
  4485. O.Text = Pro..": false"
  4486. else
  4487. Ob[Pro] = true
  4488. O.Text = Pro..": true"
  4489. end
  4490. end)
  4491. end
  4492. end
  4493.  
  4494. function TestProperty(Obj, Property)
  4495. Success = pcall(function()
  4496. if Obj[Property] then
  4497. return
  4498. end
  4499. end)
  4500. return Success
  4501. end
  4502.  
  4503. function LoadOptions(Object)
  4504. for Num, Prop in pairs(TextProperties) do
  4505. if TestProperty(Object, Prop) then
  4506. AddTextOption(Object, Prop)
  4507. end
  4508. end
  4509. for Num, Prop in pairs(BoolProperties) do
  4510. if TestProperty(Object, Prop) then
  4511. AddBoolOption(Object, Prop)
  4512. end
  4513. end
  4514. for Num, Prop in pairs(BrickColorProperties) do
  4515. if TestProperty(Object, Prop) then
  4516. AddBrickColorOption(Object, Prop)
  4517. end
  4518. end
  4519. end
  4520.  
  4521.  
  4522. function AddForceField(Player)
  4523. Instance.new("ForceField", Player.Character)
  4524. end
  4525. function Killp(Player)
  4526. Player.Character.Humanoid.Health=0
  4527. end
  4528. function AddExplode(Player)
  4529. Instance.new("Explosion", Player.Character)
  4530. end
  4531. function AddSparkles(Player)
  4532. Instance.new("Sparkles", Player.Character)
  4533. end
  4534.  
  4535.  
  4536. function FreezeParts(b)
  4537. if (b.className == "Part") then
  4538. b.Anchored=true;
  4539. end
  4540. end
  4541.  
  4542. function TPToObject(Object1)
  4543. local localplr = game.Players.LocalPlayer.Character.Torso
  4544. localplr.Position = Object1.Position
  4545. end
  4546.  
  4547.  
  4548. function Search(Object)
  4549. Gui = Instance.new("ScreenGui")
  4550. Gui.Parent = game.Players.LocalPlayer.PlayerGui
  4551. Gui.Name = "Explorer"
  4552. if Object ~= game then
  4553. AddOption("Back", function()
  4554. Clear();
  4555. Search(Object.Parent)
  4556. end, Color3.new(0.5, 1, 1), false)
  4557. end
  4558. if Object:IsA("Sound") then
  4559. AddOption("Copy ID", function() CopyString(tostring(Object.SoundId):sub(14)); warn("Copied."); Clear(); Search(Object); end, Color3.new(1, 0.2, 0), false)
  4560. AddOption("Play", function() Object:Play(); Clear(); Search(Object); end, Color3.new(0, 0, 1), false)
  4561. AddOption("Stop", function() Object:Stop(); Clear(); Search(Object); end, Color3.new(1, 1, 0), false)
  4562. end
  4563. if Object:IsA("Workspace") then
  4564. AddOption("BlackHole", function() local p= game.Players:GetChildren() for i= 1, #p do if p[i] ~= "LocalPlayer" then b = Instance.new("BodyPosition") b.Parent = p[i].Character.Torso b.maxForce = Vector3.new(6000000,60000000,60000000) b.position = Vector3.new(100,10,0)end end end, Color3.new(1, 0.6, 0.1), false)
  4565. end
  4566. if Object:IsA("IntValue") or Object:IsA("StringValue") or Object:IsA("NumberValue") then
  4567. AddOption("Copy Value", function() CopyString(tostring(Object.Value)); warn("Copied."); Clear(); Search(Object); end, Color3.new(1, 0.2, 0), false)
  4568. end
  4569. if Object:IsA("TextLabel") or Object:IsA("TextBox") or Object:IsA("Message") then
  4570. AddOption("Copy Value", function() CopyString(tostring(Object.Text)); warn("Copied."); Clear(); Search(Object); end, Color3.new(1, 0.2, 0), false)
  4571. end
  4572. AddOption("Get Path", function() CopyString(tostring("game." .. Object:GetFullName())) Clear(); Search(Object) end, Color3.new(0.5, 1, 1), false)
  4573. if Object ~= game then
  4574. AddOption("Unanchor Children", function() UnanchorObject(Object); Clear(); Search(Object); end, Color3.new(1, 0.2, 0), false)
  4575. AddOption("ClearAllChildren", function() Object:ClearAllChildren(); Clear(); Search(Object); end, Color3.new(1, 0.6, 0.1), false)
  4576. end
  4577. AddOption("Reload", function() Clear(); Search(Object); end, Color3.new(0.2, 1, 0.2), false)
  4578. if Cloned then
  4579. AddOption("Paste", function() Cloned:Clone().Parent = Object; Clear(); Search(Object); end, Color3.new(0.5, 1, 1), false)
  4580. end
  4581. if Deleted then
  4582. AddOption("Undo", function() Deleted.Parent = DeleteParent; Deleted = nil; DeletedParent = nil; Clear(); Search(Object); end, Color3.new(1, 0.6, 0.1), false)
  4583. end
  4584. if Object:IsA("Player") then
  4585. AddOption("Goto Character", function() Clear(); if Object.Character then Search(Object.Character); end end, Color3.new(1, 1, 1), false)
  4586. AddOption("Kill", function() Killp(Object) end, Color3.new(1,0.6,0.1), false)
  4587. AddOption("ForceField", function() AddForceField(Object); end, Color3.new(1, 0.6, 0.1), false)
  4588. AddOption("Freeze", function() FreezeParts(Object.Character.Torso); end, Color3.new(1, 0.6, 0.1), false)
  4589. AddOption("Unequip Tools", function() Object.Character.Humanoid:UnequipTools() end, Color3.new(1, 0.6, 0.1), false)
  4590. AddOption("Ban", function() table.insert(Banned, Object.Name); end, Color3.new(1,0.6,0.1), false)
  4591. --AddOption("Explode", function() AddExplode(Object); end, Color3.new(1, 0.6, 0.1), false)
  4592. end
  4593. if Object:IsA("Lighting") then
  4594. AddOption("Night", function() Object.TimeOfDay="24:24:24" end, Color3.new(1.,0.6,0.1), false)
  4595. AddOption("Day", function() Object.TimeOfDay="12:12:12" end, Color3.new(1.,0.6,0.1), false)
  4596. end
  4597. if Object:IsA("LocalScript") then
  4598. AddOption("EditScript", function() Clear(); ScriptSearch(Object); end, Color3.new(1, 1, 1), false)
  4599. end
  4600. if Object:IsA("Terrain") then
  4601. AddOption("Clear", function() Object:Clear(); end, Color3.new(1, 1, 1), false)
  4602. end
  4603. if Object:IsA("CornerWedgePart") or Object:IsA("FormFactorPart") or Object:IsA("Part") or Object:IsA("UnionOperation") or Object:IsA("BasePart") or Object:IsA("ParallelRampPart") or Object:IsA("PrismPart") or Object:IsA("PyramidPart") or Object:IsA("RightAngleRampPart") or Object:IsA("TrussPart") or Object:IsA("VehicleSeat") then
  4604. AddOption("Teleport To Part", function() TPToObject(Object); Clear(); Search(Object); end, Color3.new(1, 0.2, 0), false)
  4605. end
  4606.  
  4607. LoadOptions(Object)
  4608. AddOption("Close", Clear, Color3.new(1, 0.2, 0), false)
  4609. if not Object:IsA("Workspace") or not Object:IsA("Player") then
  4610. for Num, Obj in pairs(Object:GetChildren()) do
  4611. --if not Obj:IsA("BasePart") or not Object.Parent == game.Workspace then
  4612. if true then
  4613. if Obj:IsA("LocalScript") then
  4614. AddButton(Obj, function() Clear(); Search(Obj); end, Color3.new(1, 0, 0), true)
  4615. elseif Obj:IsA("Script") or Obj:IsA("StarterScript") or Obj:IsA("CoreScript") then
  4616. AddButton(Obj, function() Clear(); Search(Obj); end, Color3.new(0.5, 0.5, 0.8), true)
  4617. elseif Obj.Parent == game then
  4618. AddButton(Obj, function() Clear(); Search(Obj); end, Color3.new(1, 1, 1), false)
  4619. else
  4620. AddButton(Obj, function() Clear(); Search(Obj); end, Color3.new(1, 1, 1), true)
  4621. end
  4622. end
  4623. end
  4624. end
  4625. function MoveUp(Place, Amount)
  4626. for i,v in pairs(Place:GetChildren()) do
  4627. if v:IsA("TextLabel") or v:IsA("TextBox") then
  4628. v.Position = v.Position + UDim2.new(0,0,0,-Amount)
  4629. end
  4630. end
  4631. end
  4632. function MoveDown(Place, Amount)
  4633. for i,v in pairs(Place:GetChildren()) do
  4634. if v:IsA("TextLabel") or v:IsA("TextBox") then
  4635. v.Position = v.Position + UDim2.new(0,0,0,Amount)
  4636. end
  4637. end
  4638. end
  4639. i=0
  4640. function ScriptSearch(S)
  4641. Script2 = S
  4642. Script = decompile(Script2)
  4643. Table = {}
  4644. Enabled = true
  4645. Gui = Instance.new("ScreenGui")
  4646. Gui.Parent = game.Players.LocalPlayer.PlayerGui
  4647. Gui.Name = "Explorer"
  4648. while Enabled do
  4649. Start, End = string.find(Script, '\n')
  4650. print(Start, End)
  4651. if Start and End then
  4652. table.insert(Table, string.sub(Script, 1, End))
  4653. New = string.sub(Script, End+1, string.len(Script))
  4654. Script = New
  4655. else
  4656. Enabled = false
  4657. table.insert(Table, string.sub(Script, 1, End))
  4658. print("Finished")
  4659. end
  4660. end
  4661. P = Instance.new("TextLabel")
  4662. P.Size = UDim2.new(0, 500, 0, 20)
  4663. P.Text = Script2.Name
  4664. P.Name = "Script Line"
  4665. P.Parent = Gui
  4666. P.BackgroundColor3 = Color3.new(1, 1, 1)
  4667. P.TextColor3 = Color3.new(0, 0, 0)
  4668. P.BackgroundTransparency = 0.5
  4669. P.Position = UDim2.new(0.5, -250, 0, 150+(20*(i-1)))
  4670. P.TextXAlignment = "Left"
  4671. i=i+1
  4672. New = {}
  4673. for I,Val in pairs(Table) do
  4674. print(Val)
  4675. P = Instance.new("TextBox")
  4676. P.ClearTextOnFocus = false
  4677. P.Size = UDim2.new(0, 500, 0, 20)
  4678. P.Text = Val
  4679. P.Name = "Script Line"
  4680. P.Parent = Gui
  4681. P.BackgroundColor3 = Color3.new(1, 1, 1)
  4682. P.TextColor3 = Color3.new(0, 0, 0)
  4683. P.BackgroundTransparency = 0.5
  4684. P.Position = UDim2.new(0.5, -250, 0, 150+(20*(i-1)))
  4685. P.TextXAlignment = "Left"
  4686. table.insert(New, P)
  4687. i=i+1
  4688. end
  4689. i=1
  4690. P = Instance.new("TextButton")
  4691. P.Size = UDim2.new(0, 20, 0, 20)
  4692. P.Text = "^"
  4693. P.Name = "Scroll"
  4694. P.Parent = Gui
  4695. P.BackgroundColor3 = Color3.new(1, 1, 1)
  4696. P.TextColor3 = Color3.new(0, 0, 0)
  4697. P.BackgroundTransparency = 0.5
  4698. P.Position = UDim2.new(0.5, -270, 0, 150+(20*(i-1)))
  4699. P.MouseButton1Click:connect(function()
  4700. MoveUp(Gui, -20)
  4701. end)
  4702. i=i+1
  4703. P = Instance.new("TextButton")
  4704. P.Size = UDim2.new(0, 20, 0, 20)
  4705. P.Text = "v"
  4706. P.Name = "Scroll"
  4707. P.Parent = Gui
  4708. P.BackgroundColor3 = Color3.new(1, 1, 1)
  4709. P.TextColor3 = Color3.new(0, 0, 0)
  4710. P.BackgroundTransparency = 0.5
  4711. P.Position = UDim2.new(0.5, -270, 0, 150+(20*(i-1)))
  4712. P.MouseButton1Click:connect(function()
  4713. MoveDown(Gui, -20)
  4714. end)
  4715. i=i+1
  4716. P = Instance.new("TextButton")
  4717. P.Size = UDim2.new(0, 20, 0, 20)
  4718. P.Text = "^^"
  4719. P.Name = "Scroll"
  4720. P.Parent = Gui
  4721. P.BackgroundColor3 = Color3.new(1, 1, 1)
  4722. P.TextColor3 = Color3.new(0, 0, 0)
  4723. P.BackgroundTransparency = 0.5
  4724. P.Position = UDim2.new(0.5, -270, 0, 150+(20*(i-1)))
  4725. P.MouseButton1Click:connect(function()
  4726. MoveUp(Gui, -200)
  4727. end)
  4728. i=i+1
  4729. P = Instance.new("TextButton")
  4730. P.Size = UDim2.new(0, 20, 0, 20)
  4731. P.Text = "vv"
  4732. P.Name = "Scroll"
  4733. P.Parent = Gui
  4734. P.BackgroundColor3 = Color3.new(1, 1, 1)
  4735. P.TextColor3 = Color3.new(0, 0, 0)
  4736. P.BackgroundTransparency = 0.5
  4737. P.Position = UDim2.new(0.5, -270, 0, 150+(20*(i-1)))
  4738. P.MouseButton1Click:connect(function()
  4739. MoveDown(Gui, -200)
  4740. end)
  4741. i=i+1
  4742. P = Instance.new("TextButton")
  4743. P.Size = UDim2.new(0, 20, 0, 20)
  4744. P.Text = "S"
  4745. P.Name = "Save"
  4746. P.Parent = Gui
  4747. P.BackgroundColor3 = Color3.new(0, 1, 0)
  4748. P.TextColor3 = Color3.new(0, 0, 0)
  4749. P.BackgroundTransparency = 0.5
  4750. P.Position = UDim2.new(0.5, -270, 0, 150+(20*(i-1)))
  4751. P.MouseButton1Click:connect(function()
  4752. StringS = ""
  4753. for Num, Obj in pairs(New) do
  4754. StringS = StringS..Obj.Text..'\n'
  4755. end
  4756. S.Source = StringS
  4757. S.Disabled = true
  4758. S.Disabled = false
  4759. end)
  4760. i=i+1
  4761. P = Instance.new("TextButton")
  4762. P.Size = UDim2.new(0, 20, 0, 20)
  4763. P.Text = "C"
  4764. P.Name = "Copy"
  4765. P.Parent = Gui
  4766. P.BackgroundColor3 = Color3.new(1, 0.2, 0)
  4767. P.TextColor3 = Color3.new(0, 0, 0)
  4768. P.BackgroundTransparency = 0.5
  4769. P.Position = UDim2.new(0.5, -270, 0, 150+(20*(i-1)))
  4770. P.MouseButton1Click:connect(function()
  4771. StringS = ""
  4772. for Num, Obj in pairs(New) do
  4773. StringS = StringS..Obj.Text..'\n'
  4774. end
  4775. CopyString(StringS)
  4776. end)
  4777. i=i+1
  4778. P = Instance.new("TextButton")
  4779. P.Size = UDim2.new(0, 20, 0, 20)
  4780. P.Text = "x"
  4781. P.Name = "Back"
  4782. P.Parent = Gui
  4783. P.BackgroundColor3 = Color3.new(1, 0.2, 0)
  4784. P.TextColor3 = Color3.new(0, 0, 0)
  4785. P.BackgroundTransparency = 0.5
  4786. P.Position = UDim2.new(0.5, -270, 0, 150+(20*(i-1)))
  4787. P.MouseButton1Click:connect(function()
  4788. Clear()
  4789. i=0
  4790. Search(S)
  4791. end)
  4792. i=i+1
  4793. P = Instance.new("TextButton")
  4794. P.Size = UDim2.new(0, 20, 0, 20)
  4795. P.Text = "CB"
  4796. P.Name = "Back"
  4797. P.Parent = Gui
  4798. P.BackgroundColor3 = Color3.new(1, 0.2, 0)
  4799. P.TextColor3 = Color3.new(0, 0, 0)
  4800. P.BackgroundTransparency = 0.5
  4801. P.Position = UDim2.new(0.5, -270, 0, 150+(20*(i-1)))
  4802. P.MouseButton1Click:connect(function()
  4803. CopyString(decompile(Script2,true))
  4804. end)
  4805. i=i+1
  4806. end
  4807. end
  4808.  
  4809. pgr.MouseButton1Click:connect(function()
  4810. Clear()
  4811. Search(game)
  4812. end)
  4813. end)
  4814.  
  4815. UIColorButton.MouseButton1Down:connect(function()
  4816. print("not ready")
  4817. end)
  4818.  
  4819. PLR = game:GetService("Players").LocalPlayer
  4820.  
  4821. Players = game:GetService("Players"):GetPlayers()
  4822.  
  4823. Selected1 = game.CoreGui.Unjailbreak.MainFrame.TabFrames.TeleportsFrame.SPlayer
  4824.  
  4825. val.Name = "Selected"
  4826.  
  4827. function alphabetize(p1, p2)
  4828. Player1 = p1.Name:lower()
  4829. P1 = Player1:sub(1, 1):byte()
  4830. Player2 = p2.Name:lower()
  4831. P2 = Player2:sub(1, 1):byte()
  4832.  
  4833.  
  4834. if P1 < P2 then return true else return false end
  4835. end
  4836. table.sort(Players, alphabetize)
  4837.  
  4838. for i = 1, #Players do
  4839. p = Players[i]
  4840. if p ~= PLR then
  4841. btn = Instance.new("TextButton", sframe)
  4842. btn.Name = p.Name
  4843. btn.Text = p.Name
  4844. btn.Size = UDim2.new(0, 260, 0, 25)
  4845. btn.Font = Enum.Font.Highway
  4846. btn.FontSize = Enum.FontSize.Size14
  4847. btn.TextColor3 = Color3.new(255, 255, 255)
  4848. btn.BackgroundTransparency = 1
  4849. btn.Position = UDim2.new(0, 0, 0, (i * 25) - 25)
  4850. sframe.CanvasSize = UDim2.new(0, 0, 0, (#Players * 25) - 25)
  4851. btn.MouseButton1Click:connect(function()
  4852. val.Value = p
  4853. Selected1.Text = "Player: "..p.Name
  4854. end)
  4855.  
  4856. end
  4857. end
  4858.  
  4859. function update()
  4860.  
  4861. for i, btn in ipairs(sframe:GetChildren()) do if btn:IsA("TextButton") then btn:Destroy() end end
  4862.  
  4863. plrs = game:GetService("Players"):GetPlayers()
  4864. table.sort(plrs, alphabetize)
  4865.  
  4866. for i = 1, #plrs do
  4867.  
  4868. p = plrs[i]
  4869. if p ~= PLR then
  4870.  
  4871. btn = Instance.new("TextButton", sframe)
  4872. btn.Text = p.Name
  4873. btn.Size = UDim2.new(0, 260, 0, 25)
  4874. btn.Font = Enum.Font.Highway
  4875. btn.FontSize = Enum.FontSize.Size14
  4876. btn.TextColor3 = Color3.new(255, 255, 255)
  4877. btn.BackgroundTransparency = 1
  4878. btn.Position = UDim2.new(0, 0, 0, (i * 25) - 25)
  4879.  
  4880. sframe.CanvasSize = UDim2.new(0, 0, 0, (#Players * 25) - 25)
  4881.  
  4882. btn.MouseButton1Click:connect(function()
  4883. val.Value = p
  4884. SPlayer.Text = "Player: "..p.Name
  4885. end)
  4886.  
  4887. end
  4888. end
  4889.  
  4890. end
  4891. game:GetService("Players").PlayerAdded:connect(update)
  4892. game:GetService("Players").PlayerRemoving:connect(update)
  4893.  
  4894. function getPlayer()
  4895. if val.Value:IsA("Player") and val.Value.Character:FindFirstChild("HumanoidRootPart") then return val.Value else return nil end
  4896. end
  4897. end
  4898.  
  4899. if game.PlaceId == 292439477 then
  4900. ESP = true
  4901.  
  4902. Sniper = {"INTERVENTION", "REMINGTON 700", "AWS", "L115A3", "MOSIN NAGANT", "OBREZ"}
  4903. SpecialSniper = {"BFG 50", "SFG 50"}
  4904. WeakSniper = {"MK11", "SKS", "SCAR SSR", "DRAGUNOV SVU", "HENRY 45-70"}
  4905. SMG = {"SCAR-H", "AG-3", "M4A1", "G36C", "M4", "L22", "SCAR PDW", "SR-3M", "P90", "AUG A3 PARA", "AK12", "AN-94", "AS VAL", "SCAR-L", "AUG A1", "M16A4", "G36", "M16A3", "AUG A2", "FAMAS", "AK44", "AUG A3", "L85A2", "HONEY BADGER", "AK74", "AKM", "M231"}
  4906. WeakSMG = {"MP5K", "UMP45", "MP7", "MAC10", "MP5", "COLT SMG 635", "MP5SD", "MP10", "MP5/10", "KRISS VECTOR"}
  4907. ShotGun = {"REMINGTON 870", "KSG 12", "KS-23M", "SERBU SHOTGUN"}
  4908. LMG = {"COLT LMG", "M60", "AUG HBAR", "MG36", "L86 LSW", "RPK", "SCAR HAMR", "RPK74"}
  4909. Other = {"M9", "GLOCK 17", "M1911", "DEAGLE 44", "GLOCK 18", "M93R", "TEC9", "MP412 REX"}
  4910. Melee = {"KNIFE", "MACHETE"}
  4911.  
  4912. warn("Phantom Forces ESP Created By Unlisting")
  4913.  
  4914. if ESP == true then
  4915. for i,v in pairs(game:GetService("Players"):GetChildren()) do
  4916. pass = false
  4917. if workspace:FindFirstChild(v.Name) then
  4918. if v.Team == game:GetService("Players").LocalPlayer.Team then
  4919. if v.Character:FindFirstChild("HumanoidRootPart") then
  4920. if v.Character.HumanoidRootPart:FindFirstChild("ESP") then
  4921. v.Character.HumanoidRootPart.ESP:Destroy()
  4922. end
  4923. end
  4924. end
  4925. if v.Team ~= game:GetService("Players").LocalPlayer.Team then
  4926. if v.Character:FindFirstChild("HumanoidRootPart") then
  4927. for i,v in pairs(v.Character:GetChildren()) do
  4928. if v:IsA("Model") then
  4929. pass = true
  4930. break
  4931. end
  4932. end
  4933.  
  4934. shirt = nil
  4935. passer = false
  4936. for i,v in pairs(v.Character:GetChildren()) do
  4937. if v:IsA("Shirt") then
  4938. shirt = v
  4939. break
  4940. end
  4941. end
  4942.  
  4943. for i,v in pairs(game:GetService("Players").LocalPlayer.Character:GetChildren()) do
  4944. if v:IsA("Shirt") then
  4945. if shirt ~= nil then
  4946. if v.Name ~= shirt.Name then
  4947. passer = true
  4948. break
  4949. end
  4950. end
  4951. end
  4952. end
  4953.  
  4954. if passer == true then
  4955. if v.Character:FindFirstChild("HumanoidRootPart") then
  4956. if v.Character.HumanoidRootPart:FindFirstChild("ESP") then
  4957.  
  4958. v.Character.HumanoidRootPart.ESP.TextLabel.Text = v.Name.." Distance: "..math.floor(((game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position - v.Character.HumanoidRootPart.Position).magnitude))
  4959.  
  4960. hitting = false
  4961.  
  4962.  
  4963. local ray = Ray.new(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame.p, (v.Character.HumanoidRootPart.CFrame.p - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame.p).unit * 2000)
  4964. local part, position = workspace:FindPartOnRayWithIgnoreList(ray, {game:GetService("Players").LocalPlayer.Character, workspace.CurrentCamera, workspace.Ignore}, false, true)
  4965. if part then
  4966. if part.Parent == v.Character then
  4967. hitting = true
  4968. end
  4969. end
  4970. if hitting == false then
  4971. elseif hitting == true then
  4972. v.Character.HumanoidRootPart.ESP.Frame.BackgroundColor3 = Color3.new(0, 1, 0.498039)
  4973. end
  4974.  
  4975. if hitting == false then
  4976. local ray = Ray.new(game:GetService("Players").LocalPlayer.Character.Head.CFrame.p, (v.Character.Head.CFrame.p - game:GetService("Players").LocalPlayer.Character.Head.CFrame.p).unit * 2000)
  4977. local part, position = workspace:FindPartOnRayWithIgnoreList(ray, {game:GetService("Players").LocalPlayer.Character, workspace.CurrentCamera, workspace.Ignore}, false, true)
  4978. if part then
  4979. if part.Parent == v.Character then
  4980. hitting = true
  4981. end
  4982. end
  4983. if hitting == false then
  4984. v.Character.HumanoidRootPart.ESP.Frame.BackgroundColor3 = Color3.new(1, 0, 0)
  4985. elseif hitting == true then
  4986. v.Character.HumanoidRootPart.ESP.Frame.BackgroundColor3 = Color3.new(0, 1, 0.498039)
  4987. end
  4988.  
  4989. if hitting == false then
  4990. elseif hitting == true then
  4991. v.Character.HumanoidRootPart.ESP.Frame.BackgroundColor3 = Color3.new(0, 1, 0.498039)
  4992. end
  4993.  
  4994.  
  4995.  
  4996.  
  4997.  
  4998.  
  4999.  
  5000.  
  5001.  
  5002.  
  5003.  
  5004. if hitting == false then
  5005. local ray = Ray.new(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame.p, (v.Character.HumanoidRootPart.CFrame.p - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame.p).unit * 2000)
  5006. local part, position = workspace:FindPartOnRayWithIgnoreList(ray, {game:GetService("Players").LocalPlayer.Character, workspace.CurrentCamera, workspace.Ignore}, false, true)
  5007. if part then
  5008. if part:IsA("BasePart") then
  5009.  
  5010. CurrentGun = nil
  5011. for i,v in pairs(workspace.CurrentCamera:GetChildren()) do
  5012. if v.Name ~= "Right Arm" and v.Name ~= "Left Arm" then
  5013. if v:IsA("Model") then
  5014. if v:FindFirstChild("Flame") then
  5015. CurrentGun = v
  5016. break
  5017. end
  5018. end
  5019. end
  5020. end
  5021.  
  5022. found = false
  5023.  
  5024. if found == false then
  5025. for i = 1,#Sniper do
  5026. if CurrentGun ~= nil then
  5027. if Sniper[i] == CurrentGun.Name then
  5028. found = true
  5029. Min = 2.75
  5030. Max = 3
  5031. break
  5032. end
  5033. end
  5034. end
  5035. end
  5036.  
  5037. if found == false then
  5038. for i = 1,#SpecialSniper do
  5039. if CurrentGun ~= nil then
  5040. if SpecialSniper[i] == CurrentGun.Name then
  5041. found = true
  5042. Min = 3.25
  5043. Max = 3.5
  5044. break
  5045. end
  5046. end
  5047. end
  5048. end
  5049.  
  5050. if found == false then
  5051. for i = 1,#WeakSniper do
  5052. if CurrentGun ~= nil then
  5053. if WeakSniper[i] == CurrentGun.Name then
  5054. found = true
  5055. Min = 2.75
  5056. Max = 3
  5057. break
  5058. end
  5059. end
  5060. end
  5061. end
  5062.  
  5063. if found == false then
  5064. for i = 1,#WeakSMG do
  5065. if CurrentGun ~= nil then
  5066. if WeakSMG[i] == CurrentGun.Name then
  5067. found = true
  5068. Min = 2.25
  5069. Max = 3
  5070. break
  5071. end
  5072. end
  5073. end
  5074. end
  5075.  
  5076. if found == false then
  5077. for i = 1,#SMG do
  5078. if CurrentGun ~= nil then
  5079. if SMG[i] == CurrentGun.Name then
  5080. found = true
  5081. Min = 2.5
  5082. Max = 3
  5083. break
  5084. end
  5085. end
  5086. end
  5087. end
  5088.  
  5089. if found == false then
  5090. for i = 1,#ShotGun do
  5091. if CurrentGun ~= nil then
  5092. if ShotGun[i] == CurrentGun.Name then
  5093. found = true
  5094. Min = 2.75
  5095. Max = 3
  5096. break
  5097. end
  5098. end
  5099. end
  5100. end
  5101.  
  5102. if found == false then
  5103. for i = 1,#LMG do
  5104. if CurrentGun ~= nil then
  5105. if LMG[i] == CurrentGun.Name then
  5106. found = true
  5107. Min = 2.5
  5108. Max = 3
  5109. break
  5110. end
  5111. end
  5112. end
  5113. end
  5114.  
  5115. if found == false then
  5116. for i = 1,#Other do
  5117. if CurrentGun ~= nil then
  5118. if Other[i] == CurrentGun.Name then
  5119. found = true
  5120. Min = 0
  5121. Max = 0
  5122. break
  5123. end
  5124. end
  5125. end
  5126. end
  5127.  
  5128. if found == false then
  5129. for i = 1,#Melee do
  5130. if CurrentGun ~= nil then
  5131. if Melee[i] == CurrentGun.Name then
  5132. found = true
  5133. Min = 0
  5134. Max = 0
  5135. break
  5136. end
  5137. end
  5138. end
  5139. end
  5140.  
  5141. if found == false then
  5142. Min = 0
  5143. Max = 0
  5144. end
  5145.  
  5146. if part.Parent.Name == "Map" then
  5147. if part.Size.X <= Min and part.Size.Z <= Min and part.Size.Y >= Max then
  5148. hitting = true
  5149. parter = part
  5150. elseif part.Size.X <= Min and part.Size.Z >= Max and part.Size.Y >= Max then
  5151. hitting = true
  5152. parter = part
  5153. elseif part.Size.X <= Min and part.Size.Z >= Max and part.Size.Y <= Min then
  5154. hitting = true
  5155. parter = part
  5156. elseif part.Size.X <= Min and part.Size.Z <= Min and part.Size.Y <= Min then
  5157. hitting = true
  5158. parter = part
  5159. elseif part.Size.X <= Min and part.Size.Z >= Min and part.Size.Y <= Min then
  5160. hitting = true
  5161. parter = part
  5162. elseif part.Size.X >= Max and part.Size.Z <= Min and part.Size.Y <= Min then
  5163. hitting = true
  5164. parter = part
  5165. elseif part.Size.X >= Max and part.Size.Z >= Max and part.Size.Y <= Min-1 then
  5166. hitting = true
  5167. parter = part
  5168. elseif part.Size.X <= Min and part.Size.Z <= Min and part.Size.Y <= Max then
  5169. hitting = true
  5170. parter = part
  5171. elseif part.Size.X <= Min and part.Size.Z <= Min and part.Size.Y >= Max then
  5172. hitting = true
  5173. parter = part
  5174. elseif part.Size.X <= Min or part.Size.Z <= Min or part.Size.Z <= Min then
  5175. hitting = true
  5176. parter = part
  5177. end
  5178. end
  5179. end
  5180. end
  5181. if hitting == true then
  5182. hitting = false
  5183. part = parter
  5184. list = {}
  5185. pos1 = part.Position - (part.Size/2) - Vector3.new(0.01,0.01,0.01)
  5186. pos2 = part.Position + (part.Size/2) + Vector3.new(0.01,0.01,0.01)
  5187. Reg = Region3.new(pos1, pos2)
  5188. TouchingParts = game.Workspace:FindPartsInRegion3(Reg)
  5189. o = 1
  5190. if TouchingParts ~= nil then
  5191. for i,v in pairs(TouchingParts) do
  5192. if v ~= parter then
  5193.  
  5194.  
  5195. part = v
  5196. if part.Parent.Name == "Map" then
  5197. if part.Size.X <= Min and part.Size.Z <= Min and part.Size.Y >= Max then
  5198. hitting = true
  5199. parter = part
  5200. elseif part.Size.X <= Min and part.Size.Z >= Max and part.Size.Y >= Max then
  5201. hitting = true
  5202. parter = part
  5203. elseif part.Size.X <= Min and part.Size.Z >= Max and part.Size.Y <= Min then
  5204. hitting = true
  5205. parter = part
  5206. elseif part.Size.X <= Min and part.Size.Z <= Min and part.Size.Y <= Min then
  5207. hitting = true
  5208. parter = part
  5209. elseif part.Size.X <= Min and part.Size.Z >= Min and part.Size.Y <= Min then
  5210. hitting = true
  5211. parter = part
  5212. elseif part.Size.X >= Max and part.Size.Z <= Min and part.Size.Y <= Min then
  5213. hitting = true
  5214. parter = part
  5215. elseif part.Size.X >= Max and part.Size.Z >= Max and part.Size.Y <= Min-1 then
  5216. hitting = true
  5217. parter = part
  5218. elseif part.Size.X <= Min and part.Size.Z <= Min and part.Size.Y <= Max then
  5219. hitting = true
  5220. parter = part
  5221. elseif part.Size.X <= Min and part.Size.Z <= Min and part.Size.Y >= Max then
  5222. hitting = true
  5223. parter = part
  5224. elseif part.Size.X <= Min or part.Size.Z <= Min or part.Size.Z <= Min then
  5225. hitting = true
  5226. parter = part
  5227. end
  5228. end
  5229.  
  5230.  
  5231. if hitting == true then
  5232. table.insert(list, o, v)
  5233. o = o + 1
  5234. end
  5235. end
  5236. end
  5237. end
  5238.  
  5239. hitting = false
  5240.  
  5241. part = parter
  5242.  
  5243. pos1 = part.Position + (part.Size/2) + Vector3.new(0.01,0.01,0.01)
  5244. pos2 = part.Position - (part.Size/2) - Vector3.new(0.01,0.01,0.01)
  5245.  
  5246. local ray = Ray.new(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame.p, (v.Character.HumanoidRootPart.CFrame.p - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame.p).unit * 2000)
  5247. local part, position = workspace:FindPartOnRayWithIgnoreList(ray, {game:GetService("Players").LocalPlayer.Character, workspace.CurrentCamera, workspace.Ignore, parter, unpack(list)}, false, true)
  5248. if part then
  5249. if part.Parent == v.Character then
  5250. hitting = true
  5251. end
  5252. end
  5253. if hitting == false then
  5254. v.Character.HumanoidRootPart.ESP.Frame.BackgroundColor3 = Color3.new(1, 0, 0)
  5255. elseif hitting == true then
  5256. if ((parter.Position - v.Character.HumanoidRootPart.Position).magnitude) <= 40 then
  5257. v.Character.HumanoidRootPart.ESP.Frame.BackgroundColor3 = Color3.new(1, 0.666667, 0)
  5258. else
  5259. v.Character.HumanoidRootPart.ESP.Frame.BackgroundColor3 = Color3.new(1, 0, 0)
  5260. end
  5261. end
  5262.  
  5263. elseif hitting == false then
  5264. v.Character.HumanoidRootPart.ESP.Frame.BackgroundColor3 = Color3.new(1, 0, 0)
  5265. end
  5266. end
  5267.  
  5268.  
  5269.  
  5270.  
  5271.  
  5272.  
  5273.  
  5274.  
  5275.  
  5276.  
  5277. if hitting == false then
  5278. local ray = Ray.new(game:GetService("Players").LocalPlayer.Character.Head.CFrame.p, (v.Character.Head.CFrame.p - game:GetService("Players").LocalPlayer.Character.Head.CFrame.p).unit * 2000)
  5279. local part, position = workspace:FindPartOnRayWithIgnoreList(ray, {game:GetService("Players").LocalPlayer.Character, workspace.CurrentCamera, workspace.Ignore}, false, true)
  5280. if part then
  5281. if part:IsA("BasePart") then
  5282.  
  5283. CurrentGun = nil
  5284. for i,v in pairs(workspace.CurrentCamera:GetChildren()) do
  5285. if v.Name ~= "Right Arm" and v.Name ~= "Left Arm" then
  5286. if v:IsA("Model") then
  5287. if v:FindFirstChild("Flame") then
  5288. CurrentGun = v
  5289. break
  5290. end
  5291. end
  5292. end
  5293. end
  5294.  
  5295. found = false
  5296.  
  5297. if found == false then
  5298. for i = 1,#Sniper do
  5299. if CurrentGun ~= nil then
  5300. if Sniper[i] == CurrentGun.Name then
  5301. found = true
  5302. Min = 2.75
  5303. Max = 3
  5304. break
  5305. end
  5306. end
  5307. end
  5308. end
  5309.  
  5310. if found == false then
  5311. for i = 1,#SpecialSniper do
  5312. if CurrentGun ~= nil then
  5313. if SpecialSniper[i] == CurrentGun.Name then
  5314. found = true
  5315. Min = 3.25
  5316. Max = 3.5
  5317. break
  5318. end
  5319. end
  5320. end
  5321. end
  5322.  
  5323. if found == false then
  5324. for i = 1,#WeakSniper do
  5325. if CurrentGun ~= nil then
  5326. if WeakSniper[i] == CurrentGun.Name then
  5327. found = true
  5328. Min = 2.75
  5329. Max = 3
  5330. break
  5331. end
  5332. end
  5333. end
  5334. end
  5335.  
  5336. if found == false then
  5337. for i = 1,#WeakSMG do
  5338. if CurrentGun ~= nil then
  5339. if WeakSMG[i] == CurrentGun.Name then
  5340. found = true
  5341. Min = 2.25
  5342. Max = 3
  5343. break
  5344. end
  5345. end
  5346. end
  5347. end
  5348.  
  5349. if found == false then
  5350. for i = 1,#SMG do
  5351. if CurrentGun ~= nil then
  5352. if SMG[i] == CurrentGun.Name then
  5353. found = true
  5354. Min = 2.5
  5355. Max = 3
  5356. break
  5357. end
  5358. end
  5359. end
  5360. end
  5361.  
  5362. if found == false then
  5363. for i = 1,#ShotGun do
  5364. if CurrentGun ~= nil then
  5365. if ShotGun[i] == CurrentGun.Name then
  5366. found = true
  5367. Min = 2.75
  5368. Max = 3
  5369. break
  5370. end
  5371. end
  5372. end
  5373. end
  5374.  
  5375. if found == false then
  5376. for i = 1,#LMG do
  5377. if CurrentGun ~= nil then
  5378. if LMG[i] == CurrentGun.Name then
  5379. found = true
  5380. Min = 2.5
  5381. Max = 3
  5382. break
  5383. end
  5384. end
  5385. end
  5386. end
  5387.  
  5388. if found == false then
  5389. for i = 1,#Other do
  5390. if CurrentGun ~= nil then
  5391. if Other[i] == CurrentGun.Name then
  5392. found = true
  5393. Min = 0
  5394. Max = 0
  5395. break
  5396. end
  5397. end
  5398. end
  5399. end
  5400.  
  5401. if found == false then
  5402. for i = 1,#Melee do
  5403. if CurrentGun ~= nil then
  5404. if Melee[i] == CurrentGun.Name then
  5405. found = true
  5406. Min = 0
  5407. Max = 0
  5408. break
  5409. end
  5410. end
  5411. end
  5412. end
  5413.  
  5414. if found == false then
  5415. Min = 0
  5416. Max = 0
  5417. end
  5418.  
  5419. if part.Parent.Name == "Map" then
  5420. if part.Size.X <= Min and part.Size.Z <= Min and part.Size.Y >= Max then
  5421. hitting = true
  5422. parter = part
  5423. elseif part.Size.X <= Min and part.Size.Z >= Max and part.Size.Y >= Max then
  5424. hitting = true
  5425. parter = part
  5426. elseif part.Size.X <= Min and part.Size.Z >= Max and part.Size.Y <= Min then
  5427. hitting = true
  5428. parter = part
  5429. elseif part.Size.X <= Min and part.Size.Z <= Min and part.Size.Y <= Min then
  5430. hitting = true
  5431. parter = part
  5432. elseif part.Size.X <= Min and part.Size.Z >= Min and part.Size.Y <= Min then
  5433. hitting = true
  5434. parter = part
  5435. elseif part.Size.X >= Max and part.Size.Z <= Min and part.Size.Y <= Min then
  5436. hitting = true
  5437. parter = part
  5438. elseif part.Size.X >= Max and part.Size.Z >= Max and part.Size.Y <= Min-1 then
  5439. hitting = true
  5440. parter = part
  5441. elseif part.Size.X <= Min and part.Size.Z <= Min and part.Size.Y <= Max then
  5442. hitting = true
  5443. parter = part
  5444. elseif part.Size.X <= Min and part.Size.Z <= Min and part.Size.Y >= Max then
  5445. hitting = true
  5446. parter = part
  5447. elseif part.Size.X <= Min or part.Size.Z <= Min or part.Size.Z <= Min then
  5448. hitting = true
  5449. parter = part
  5450. end
  5451. end
  5452. end
  5453. end
  5454. if hitting == true then
  5455. hitting = false
  5456. part = parter
  5457. list = {}
  5458. pos1 = part.Position - (part.Size/2) - Vector3.new(0.01,0.01,0.01)
  5459. pos2 = part.Position + (part.Size/2) + Vector3.new(0.01,0.01,0.01)
  5460. Reg = Region3.new(pos1, pos2)
  5461. TouchingParts = game.Workspace:FindPartsInRegion3(Reg)
  5462. o = 1
  5463. if TouchingParts ~= nil then
  5464. for i,v in pairs(TouchingParts) do
  5465. if v ~= parter then
  5466.  
  5467.  
  5468. part = v
  5469. if part.Parent.Name == "Map" then
  5470. if part.Size.X <= Min and part.Size.Z <= Min and part.Size.Y >= Max then
  5471. hitting = true
  5472. parter = part
  5473. elseif part.Size.X <= Min and part.Size.Z >= Max and part.Size.Y >= Max then
  5474. hitting = true
  5475. parter = part
  5476. elseif part.Size.X <= Min and part.Size.Z >= Max and part.Size.Y <= Min then
  5477. hitting = true
  5478. parter = part
  5479. elseif part.Size.X <= Min and part.Size.Z <= Min and part.Size.Y <= Min then
  5480. hitting = true
  5481. parter = part
  5482. elseif part.Size.X <= Min and part.Size.Z >= Min and part.Size.Y <= Min then
  5483. hitting = true
  5484. parter = part
  5485. elseif part.Size.X >= Max and part.Size.Z <= Min and part.Size.Y <= Min then
  5486. hitting = true
  5487. parter = part
  5488. elseif part.Size.X >= Max and part.Size.Z >= Max and part.Size.Y <= Min-1 then
  5489. hitting = true
  5490. parter = part
  5491. elseif part.Size.X <= Min and part.Size.Z <= Min and part.Size.Y <= Max then
  5492. hitting = true
  5493. parter = part
  5494. elseif part.Size.X <= Min and part.Size.Z <= Min and part.Size.Y >= Max then
  5495. hitting = true
  5496. parter = part
  5497. elseif part.Size.X <= Min or part.Size.Z <= Min or part.Size.Z <= Min then
  5498. hitting = true
  5499. parter = part
  5500. end
  5501. end
  5502.  
  5503.  
  5504. if hitting == true then
  5505. table.insert(list, o, v)
  5506. o = o + 1
  5507. end
  5508. end
  5509. end
  5510. end
  5511.  
  5512. hitting = false
  5513.  
  5514. part = parter
  5515.  
  5516. pos1 = part.Position + (part.Size/2) + Vector3.new(0.01,0.01,0.01)
  5517. pos2 = part.Position - (part.Size/2) - Vector3.new(0.01,0.01,0.01)
  5518.  
  5519. local ray = Ray.new(game:GetService("Players").LocalPlayer.Character.Head.CFrame.p, (v.Character.Head.CFrame.p - game:GetService("Players").LocalPlayer.Character.Head.CFrame.p).unit * 2000)
  5520. local part, position = workspace:FindPartOnRayWithIgnoreList(ray, {game:GetService("Players").LocalPlayer.Character, workspace.CurrentCamera, workspace.Ignore, parter, unpack(list)}, false, true)
  5521. if part then
  5522. if part.Parent == v.Character then
  5523. hitting = true
  5524. end
  5525. end
  5526. if hitting == false then
  5527. v.Character.HumanoidRootPart.ESP.Frame.BackgroundColor3 = Color3.new(1, 0, 0)
  5528. elseif hitting == true then
  5529. if ((parter.Position - v.Character.HumanoidRootPart.Position).magnitude) <= 40 then
  5530. v.Character.HumanoidRootPart.ESP.Frame.BackgroundColor3 = Color3.new(1, 0.666667, 0)
  5531. else
  5532. v.Character.HumanoidRootPart.ESP.Frame.BackgroundColor3 = Color3.new(1, 0, 0)
  5533. end
  5534. end
  5535.  
  5536. elseif hitting == false then
  5537. v.Character.HumanoidRootPart.ESP.Frame.BackgroundColor3 = Color3.new(1, 0, 0)
  5538. end
  5539. end
  5540. end
  5541.  
  5542.  
  5543.  
  5544. elseif pass == true then
  5545. local ESP = Instance.new("BillboardGui",v.Character.HumanoidRootPart)
  5546. ESP.Name = "ESP"
  5547. ESP.Size = UDim2.new(6, 0, 8, 0)
  5548. ESP.StudsOffset = Vector3.new(0, 0.75, 0)
  5549. ESP.AlwaysOnTop = true
  5550. local Frame = Instance.new("Frame",ESP)
  5551. Frame.ZIndex = 1000
  5552. Frame.Size = UDim2.new(0.6, 0, 0.8, 0)
  5553. Frame.Position = UDim2.new(0.2, 0, 0.3, 0)
  5554. Frame.BorderSizePixel = 3
  5555. Frame.BackgroundTransparency = 0.3
  5556. Frame.BackgroundColor3 = Color3.new(1, 0.666667, 0)
  5557. Label = Instance.new("TextLabel", ESP)
  5558. Label.Position = UDim2.new(0, 0, -0.1, 0)
  5559. Label.Size = UDim2.new(1, 0, 0.3, 0)
  5560. Label.Font = "SourceSansLight"
  5561. Label.TextColor3 = Color3.new(1,1,1)
  5562. Label.TextStrokeColor3 = Color3.new(0,0,0)
  5563. Label.TextStrokeTransparency = 0
  5564. Label.BackgroundColor3 = Color3.new(1, 1, 1)
  5565. Label.TextScaled = true
  5566. Label.Text = v.Name.." Distance: "..math.floor(((game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position - v.Character.HumanoidRootPart.Position).magnitude))
  5567. Label.BackgroundTransparency = 1
  5568. end
  5569. end
  5570. end
  5571. end
  5572. end
  5573. end
  5574. end
  5575. end
  5576. end
  5577.  
  5578. if game.PlaceId ~= 606849621 or 292439477 then
  5579. warn("Unjailbreak Is Not Compatible With This Game!")
  5580. end
  5581. end)
  5582.  
  5583. redjail.Name = "redjail"
  5584. redjail.Parent = Frame
  5585. redjail.BackgroundColor3 = Color3.new(0.333333, 0.333333, 0.498039)
  5586. redjail.BorderSizePixel = 3
  5587. redjail.Position = UDim2.new(0.54689455, 0, 0.365632057, 0)
  5588. redjail.Size = UDim2.new(0, 113, 0, 48)
  5589. redjail.Font = Enum.Font.Cartoon
  5590. redjail.Text = "Jailbreak Red Gui"
  5591. redjail.TextColor3 = Color3.new(1, 1, 1)
  5592. redjail.TextScaled = true
  5593. redjail.TextSize = 14
  5594. redjail.TextWrapped = true
  5595.  
  5596. redjail.MouseButton1Down:connect(function()
  5597. -- Jailbreaker V4.2
  5598. local plr = game:GetService("Players").LocalPlayer
  5599.  
  5600.  
  5601. local TpMethod = 2
  5602.  
  5603.  
  5604.  
  5605. function JailbreakTp(...)
  5606. getfenv()["TpMethod" .. TpMethod](...)
  5607. end
  5608.  
  5609. function TpMethod1(...)
  5610. local char = plr.Character
  5611. local root = char.HumanoidRootPart
  5612. local args = {...}
  5613. for i=0,1,0.05 do
  5614. wait()
  5615. root.CFrame = root.CFrame:lerp(CFrame.new(unpack(args,1,3)), i)
  5616. end
  5617. end
  5618.  
  5619. function TpMethod2(...)
  5620. local args = {...}
  5621. local char = plr.Character
  5622. local target = Vector3.new(unpack(args,1,3))
  5623. local dist = (char:WaitForChild"HumanoidRootPart".Position - target).magnitude
  5624. dist = math.floor(dist / 100) + 1
  5625. for i=0,dist * 4 do
  5626. wait()
  5627. char:MoveTo(Vector3.new(...))
  5628. end
  5629. if args[#args] == true then
  5630. wait()
  5631. char:WaitForChild'HumanoidRootPart'.CFrame = CFrame.new(unpack(args,1,#args - 1))
  5632. end
  5633. end
  5634.  
  5635. function Tween(obj, t, properties)
  5636. local TweenService = game:GetService("TweenService")
  5637. local tweenInfo = TweenInfo.new(t,Enum.EasingStyle.Linear,Enum.EasingDirection.In,0,false,0)
  5638. local tween = TweenService:Create(obj,tweenInfo,properties)
  5639. tween:Play()
  5640. return tween
  5641. end
  5642. -- Instances:
  5643. local JailbreakerV42 = Instance.new("ScreenGui")
  5644. local Main = Instance.new("Frame")
  5645. local Teleports = Instance.new("TextButton")
  5646. local AutoRob = Instance.new("TextButton")
  5647. local TPS = Instance.new("Frame")
  5648. local BankFront = Instance.new("TextButton")
  5649. local BankVault = Instance.new("TextButton")
  5650. local JewIn = Instance.new("TextButton")
  5651. local JewOut = Instance.new("TextButton")
  5652. local donut = Instance.new("TextButton")
  5653. local gas = Instance.new("TextButton")
  5654. local CrimBase1 = Instance.new("TextButton")
  5655. local Crimbase2 = Instance.new("TextButton")
  5656. local TrainSpawn = Instance.new("TextButton")
  5657. local PoliceBase = Instance.new("TextButton")
  5658. local Museum = Instance.new("TextButton")
  5659. local MuseumRoof = Instance.new("TextButton")
  5660. local AK47 = Instance.new("TextButton")
  5661. local AutoArrest = Instance.new("TextButton")
  5662. local Btools = Instance.new("TextButton")
  5663. local Gravity = Instance.new("TextButton")
  5664. local Infinitenitro = Instance.new("TextButton")
  5665. local M4A4 = Instance.new("TextButton")
  5666. local NoClipB = Instance.new("TextButton")
  5667. local Pistol = Instance.new("TextButton")
  5668. local RemoveBuildings = Instance.new("TextButton")
  5669. local Removeall = Instance.new("TextButton")
  5670. local SHOTGUN = Instance.new("TextButton")
  5671. local WalkSpeed = Instance.new("TextButton")
  5672. local AutoROB = Instance.new("Frame")
  5673. local BankAutoRobBtn = Instance.new("TextButton")
  5674. local JewelryStatus = Instance.new("TextLabel")
  5675. local BankStatus = Instance.new("TextLabel")
  5676. local Lol = Instance.new("TextLabel")
  5677. local Close = Instance.new("TextButton")
  5678. local PLTP = Instance.new("Frame")
  5679. local PlayerTP_Input = Instance.new("TextBox")
  5680. local PlayerTP_Teleport = Instance.new("TextButton")
  5681. local PlayerTeleport = Instance.new("TextButton")
  5682. local Open = Instance.new("TextButton")
  5683. --Properties:
  5684. JailbreakerV42.Name = "Jailbreaker V4.2"
  5685. JailbreakerV42.Parent = game.CoreGui
  5686.  
  5687. Main.Name = "Main"
  5688. Main.Parent = JailbreakerV42
  5689. Main.Active = true
  5690. Main.BackgroundColor3 = Color3.new(0.243137, 0.243137, 0.243137)
  5691. Main.Position = UDim2.new(0.300000012, 0, 0.300000012, 0)
  5692. Main.Size = UDim2.new(0, 550, 0, 300)
  5693. Main.Draggable = true
  5694.  
  5695. Teleports.Name = "Teleports"
  5696. Teleports.Parent = Main
  5697. Teleports.BackgroundColor3 = Color3.new(1, 0, 0)
  5698. Teleports.Position = UDim2.new(0, 0, 0.0500000007, 0)
  5699. Teleports.Size = UDim2.new(0, 120, 0, 30)
  5700. Teleports.Font = Enum.Font.Cartoon
  5701. Teleports.Text = "Teleports"
  5702. Teleports.TextColor3 = Color3.new(0, 0, 0)
  5703. Teleports.TextScaled = true
  5704. Teleports.TextSize = 14
  5705. Teleports.TextWrapped = true
  5706. Teleports.MouseButton1Down:connect(function()
  5707. TPS.Visible = true
  5708. PLTP.Visible = false
  5709. AutoROB.Visible = false
  5710. end)
  5711. AutoRob.Name = "Auto Rob"
  5712. AutoRob.Parent = Main
  5713. AutoRob.BackgroundColor3 = Color3.new(1, 0, 0)
  5714. AutoRob.Position = UDim2.new(0.75, 0, 0.0500000007, 0)
  5715. AutoRob.Size = UDim2.new(0, 120, 0, 30)
  5716. AutoRob.Font = Enum.Font.Cartoon
  5717. AutoRob.Text = "Auto Rob"
  5718. AutoRob.TextColor3 = Color3.new(0, 0, 0)
  5719. AutoRob.TextScaled = true
  5720. AutoRob.TextSize = 14
  5721. AutoRob.TextWrapped = true
  5722. AutoRob.MouseButton1Down:connect(function()
  5723. TPS.Visible = false
  5724. PLTP.Visible = false
  5725. AutoROB.Visible = true
  5726. end)
  5727. TPS.Name = "TPS"
  5728. TPS.Parent = Main
  5729. TPS.BackgroundColor3 = Color3.new(1, 1, 1)
  5730. TPS.BackgroundTransparency = 1
  5731. TPS.Position = UDim2.new(0, 0, 0.170000002, 0)
  5732. TPS.Size = UDim2.new(0, 500, 0, 249)
  5733. TPS.Visible = true
  5734.  
  5735. BankFront.Name = "BankFront"
  5736. BankFront.Parent = TPS
  5737. BankFront.BackgroundColor3 = Color3.new(1, 0, 0)
  5738. BankFront.Position = UDim2.new(0.00999999978, 0, 0.0450000018, 0)
  5739. BankFront.Size = UDim2.new(0, 120, 0, 30)
  5740. BankFront.Font = Enum.Font.Cartoon
  5741. BankFront.Text = "BankFront"
  5742. BankFront.TextScaled = true
  5743. BankFront.TextSize = 14
  5744. BankFront.TextWrapped = true
  5745. BankFront.MouseButton1Down:connect(function()
  5746. for i = 1,45 do
  5747. wait(.08)
  5748. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(9.92591476, 17.8639755, 786.788147)
  5749. end
  5750. end)
  5751. BankVault.Name = "BankVault"
  5752. BankVault.Parent = TPS
  5753. BankVault.BackgroundColor3 = Color3.new(1, 0, 0)
  5754. BankVault.Position = UDim2.new(0.280000001, 0, 0.0450000018, 0)
  5755. BankVault.Size = UDim2.new(0, 120, 0, 30)
  5756. BankVault.Font = Enum.Font.Cartoon
  5757. BankVault.Text = "BankVault"
  5758. BankVault.TextScaled = true
  5759. BankVault.TextSize = 14
  5760. BankVault.TextWrapped = true
  5761. BankVault.MouseButton1Down:connect(function()
  5762. for i = 1,45 do
  5763. wait(.08)
  5764. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(18.3854294, 0.765628457, 815.506348)
  5765. end
  5766. end)
  5767. JewIn.Name = "JewIn"
  5768. JewIn.Parent = TPS
  5769. JewIn.BackgroundColor3 = Color3.new(1, 0, 0)
  5770. JewIn.Position = UDim2.new(0.00999999978, 0, 0.200000003, 0)
  5771. JewIn.Size = UDim2.new(0, 120, 0, 30)
  5772. JewIn.Font = Enum.Font.Cartoon
  5773. JewIn.Text = "Jewelry Inside"
  5774. JewIn.TextScaled = true
  5775. JewIn.TextSize = 14
  5776. JewIn.TextWrapped = true
  5777. JewIn.MouseButton1Down:connect(function()
  5778. for i = 1,45 do
  5779. wait(.08)
  5780. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(133.300705, 17.9375954, 1316.42407)
  5781. end
  5782. end)
  5783. JewOut.Name = "JewOut"
  5784. JewOut.Parent = TPS
  5785. JewOut.BackgroundColor3 = Color3.new(1, 0, 0)
  5786. JewOut.Position = UDim2.new(0.280000001, 0, 0.200000003, 0)
  5787. JewOut.Size = UDim2.new(0, 120, 0, 30)
  5788. JewOut.Font = Enum.Font.Cartoon
  5789. JewOut.Text = "Jewelry Top"
  5790. JewOut.TextScaled = true
  5791. JewOut.TextSize = 14
  5792. JewOut.TextWrapped = true
  5793. JewOut.MouseButton1Down:connect(function()
  5794. for i = 1,45 do
  5795. wait(.08)
  5796. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(101.211128, 98.6576996, 1310.54175)
  5797. end
  5798. end)
  5799. donut.Name = "donut"
  5800. donut.Parent = TPS
  5801. donut.BackgroundColor3 = Color3.new(1, 0, 0)
  5802. donut.Position = UDim2.new(0.280000001, 0, 0.349999994, 0)
  5803. donut.Size = UDim2.new(0, 120, 0, 30)
  5804. donut.Font = Enum.Font.Cartoon
  5805. donut.Text = "Donut Shop"
  5806. donut.TextScaled = true
  5807. donut.TextSize = 14
  5808. donut.TextWrapped = true
  5809. donut.MouseButton1Down:connect(function()
  5810. for i = 1,45 do
  5811. wait(.08)
  5812. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(257.191101, 17.81828869, -1753.11206)
  5813. end
  5814. end)
  5815. gas.Name = "gas"
  5816. gas.Parent = TPS
  5817. gas.BackgroundColor3 = Color3.new(1, 0, 0)
  5818. gas.Position = UDim2.new(0.00999999978, 0, 0.349999994, 0)
  5819. gas.Size = UDim2.new(0, 120, 0, 30)
  5820. gas.Font = Enum.Font.Cartoon
  5821. gas.Text = "Gas Station"
  5822. gas.TextScaled = true
  5823. gas.TextSize = 14
  5824. gas.TextWrapped = true
  5825. gas.MouseButton1Down:connect(function()
  5826. for i = 1,45 do
  5827. wait(.08)
  5828. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1586.41101, 17.8481865, 709.37262)
  5829. end
  5830. end)
  5831. CrimBase1.Name = "CrimBase1"
  5832. CrimBase1.Parent = TPS
  5833. CrimBase1.BackgroundColor3 = Color3.new(1, 0, 0)
  5834. CrimBase1.Position = UDim2.new(0.00999999978, 0, 0.5, 0)
  5835. CrimBase1.Size = UDim2.new(0, 120, 0, 30)
  5836. CrimBase1.Font = Enum.Font.Cartoon
  5837. CrimBase1.Text = "CrimBase1"
  5838. CrimBase1.TextScaled = true
  5839. CrimBase1.TextSize = 14
  5840. CrimBase1.TextWrapped = true
  5841. CrimBase1.MouseButton1Down:connect(function()
  5842. for i = 1,45 do
  5843. wait(.08)
  5844. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-221.723099, 17.8924026, 1578.80261)
  5845. end
  5846. end)
  5847. Crimbase2.Name = "Crimbase2"
  5848. Crimbase2.Parent = TPS
  5849. Crimbase2.BackgroundColor3 = Color3.new(1, 0, 0)
  5850. Crimbase2.Position = UDim2.new(0.280000001, 0, 0.5, 0)
  5851. Crimbase2.Size = UDim2.new(0, 120, 0, 30)
  5852. Crimbase2.Font = Enum.Font.Cartoon
  5853. Crimbase2.Text = "CrimBase2"
  5854. Crimbase2.TextScaled = true
  5855. Crimbase2.TextSize = 14
  5856. Crimbase2.TextWrapped = true
  5857. Crimbase2.MouseButton1Down:connect(function()
  5858. for i = 1,45 do
  5859. wait(.08)
  5860. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1650.80896, 49.863636, -1770.66626)
  5861. end
  5862. end)
  5863. TrainSpawn.Name = "TrainSpawn"
  5864. TrainSpawn.Parent = TPS
  5865. TrainSpawn.BackgroundColor3 = Color3.new(1, 0, 0)
  5866. TrainSpawn.Position = UDim2.new(0.00999999978, 0, 0.649999976, 0)
  5867. TrainSpawn.Size = UDim2.new(0, 120, 0, 30)
  5868. TrainSpawn.Font = Enum.Font.Cartoon
  5869. TrainSpawn.Text = "TrainSpawn"
  5870. TrainSpawn.TextScaled = true
  5871. TrainSpawn.TextSize = 14
  5872. TrainSpawn.TextWrapped = true
  5873. TrainSpawn.MouseButton1Down:connect(function()
  5874. for i = 1,45 do
  5875. wait(.08)
  5876. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1954.95007, 68.0448606, -603.844116)
  5877. end
  5878. end)
  5879. PoliceBase.Name = "PoliceBase"
  5880. PoliceBase.Parent = TPS
  5881. PoliceBase.BackgroundColor3 = Color3.new(1, 0, 0)
  5882. PoliceBase.Position = UDim2.new(0.280000001, 0, 0.649999976, 0)
  5883. PoliceBase.Size = UDim2.new(0, 120, 0, 30)
  5884. PoliceBase.Font = Enum.Font.Cartoon
  5885. PoliceBase.Text = "PoliceBase"
  5886. PoliceBase.TextScaled = true
  5887. PoliceBase.TextSize = 14
  5888. PoliceBase.TextWrapped = true
  5889. PoliceBase.MouseButton1Down:connect(function()
  5890. for i = 1,45 do
  5891. wait(.08)
  5892. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1136.89868, 17.950058, -1585.59912)
  5893. end
  5894. end)
  5895. Museum.Name = "Museum"
  5896. Museum.Parent = TPS
  5897. Museum.BackgroundColor3 = Color3.new(1, 0, 0)
  5898. Museum.Position = UDim2.new(0.00999999978, 0, 0.800000012, 0)
  5899. Museum.Size = UDim2.new(0, 120, 0, 30)
  5900. Museum.Font = Enum.Font.Cartoon
  5901. Museum.Text = "Museum "
  5902. Museum.TextScaled = true
  5903. Museum.TextSize = 14
  5904. Museum.TextWrapped = true
  5905. Museum.MouseButton1Down:connect(function()
  5906. for i = 1,45 do
  5907. wait(.08)
  5908. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1063.02, 117.562, 1218.757) + Vector3.new(1,0,0)
  5909. end
  5910. end)
  5911. MuseumRoof.Name = "Museum Roof"
  5912. MuseumRoof.Parent = TPS
  5913. MuseumRoof.BackgroundColor3 = Color3.new(1, 0, 0)
  5914. MuseumRoof.Position = UDim2.new(0.280000001, 0, 0.800000012, 0)
  5915. MuseumRoof.Size = UDim2.new(0, 120, 0, 30)
  5916. MuseumRoof.Font = Enum.Font.Cartoon
  5917. MuseumRoof.Text = "Museum Roof"
  5918. MuseumRoof.TextScaled = true
  5919. MuseumRoof.TextSize = 14
  5920. MuseumRoof.TextWrapped = true
  5921. MuseumRoof.MouseButton1Down:connect(function()
  5922. for i = 1,45 do
  5923. wait(.08)
  5924. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1078.45, 153.904, 1176.52) + Vector3.new(1,0,0)
  5925. end
  5926. end)
  5927. AK47.Name = "AK47"
  5928. AK47.Parent = TPS
  5929. AK47.BackgroundColor3 = Color3.new(1, 0, 0)
  5930. AK47.Position = UDim2.new(0.825999975, 0, 0.0422770977, 0)
  5931. AK47.Size = UDim2.new(0, 120, 0, 30)
  5932. AK47.Font = Enum.Font.Cartoon
  5933. AK47.Text = "AK47"
  5934. AK47.TextScaled = true
  5935. AK47.TextSize = 14
  5936. AK47.TextWrapped = true
  5937. AK47.MouseButton1Down:connect(function()
  5938. local hit = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  5939.  
  5940. a = Instance.new("Part", workspace)
  5941. a.Anchored = true
  5942. a.Position = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  5943. a.CanCollide = false
  5944.  
  5945. for i, v in pairs(game:GetService("Workspace").Givers:GetChildren()) do
  5946. if v.Name == "ShootingRange" then
  5947. for a, b in pairs(v:GetChildren()) do
  5948. if b:IsA("StringValue") then
  5949. if b.Value == "AK47" then
  5950. v.CFrame = CFrame.new(hit)
  5951. end
  5952. end
  5953. end
  5954. end
  5955. end
  5956. end)
  5957. AutoArrest.Name = "Auto Arrest"
  5958. AutoArrest.Parent = TPS
  5959. AutoArrest.BackgroundColor3 = Color3.new(1, 0, 0)
  5960. AutoArrest.Position = UDim2.new(0.548999965, 0, 0.651425719, 0)
  5961. AutoArrest.Size = UDim2.new(0, 120, 0, 30)
  5962. AutoArrest.Font = Enum.Font.Cartoon
  5963. AutoArrest.Text = "Auto Arrest"
  5964. AutoArrest.TextScaled = true
  5965. AutoArrest.TextSize = 14
  5966. AutoArrest.TextWrapped = true
  5967. AutoArrest.MouseButton1Down:connect(function()
  5968. local Player = game.Players.LocalPlayer
  5969. wait(0.5)
  5970. for i,v in pairs(game.Teams.Criminal:GetPlayers()) do
  5971. repeat
  5972. wait()
  5973. Player.Character.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame * CFrame.new(0, 0, 1)
  5974. until v.Team.Name ~= "Criminal"
  5975. end
  5976.  
  5977. end)
  5978. Btools.Name = "Btools"
  5979. Btools.Parent = TPS
  5980. Btools.BackgroundColor3 = Color3.new(1, 0, 0)
  5981. Btools.Position = UDim2.new(0.825999975, 0, 0.347498, 0)
  5982. Btools.Size = UDim2.new(0, 120, 0, 30)
  5983. Btools.Font = Enum.Font.Cartoon
  5984. Btools.Text = "Btools"
  5985. Btools.TextScaled = true
  5986. Btools.TextSize = 14
  5987. Btools.TextWrapped = true
  5988. Btools.MouseButton1Down:connect(function()
  5989. game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, true)
  5990. for index, child in pairs(game:GetService("Workspace"):GetChildren()) do
  5991. if child.ClassName == "Part" then
  5992. child.Locked = false
  5993. end
  5994. if child.ClassName == "MeshPart" then
  5995. child.Locked = false
  5996. end
  5997. if child.ClassName == "UnionOperation" then
  5998. child.Locked = false
  5999. end
  6000. if child.ClassName == "Model" then
  6001. for index, chil in pairs(child:GetChildren()) do
  6002. if chil.ClassName == "Part" then
  6003. chil.Locked = false
  6004. end
  6005. if chil.ClassName == "MeshPart" then
  6006. chil.Locked = false
  6007. end
  6008. if chil.ClassName == "UnionOperation" then
  6009. chil.Locked = false
  6010. end
  6011. if chil.ClassName == "Model" then
  6012. for index, childe in pairs(chil:GetChildren()) do
  6013. if childe.ClassName == "Part" then
  6014. childe.Locked = false
  6015. end
  6016. if childe.ClassName == "MeshPart" then
  6017. childe.Locked = false
  6018. end
  6019. if childe.ClassName == "UnionOperation" then
  6020. childe.Locked = false
  6021. end
  6022. if childe.ClassName == "Model" then
  6023. for index, childeo in pairs(childe:GetChildren()) do
  6024. if childeo.ClassName == "Part" then
  6025. childeo.Locked = false
  6026. end
  6027. if childeo.ClassName == "MeshPart" then
  6028. childeo.Locked = false
  6029. end
  6030. if childeo.ClassName == "UnionOperation" then
  6031. childeo.Locked = false
  6032. end
  6033. if childeo.ClassName == "Model" then
  6034. end
  6035. end
  6036. end
  6037. end
  6038. end
  6039. end
  6040. end
  6041. end
  6042. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  6043. c.BinType = Enum.BinType.Hammer
  6044. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  6045. c.BinType = Enum.BinType.Clone
  6046. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  6047. c.BinType = Enum.BinType.Grab
  6048. end)
  6049. Gravity.Name = "Gravity"
  6050. Gravity.Parent = TPS
  6051. Gravity.BackgroundColor3 = Color3.new(1, 0, 0)
  6052. Gravity.Position = UDim2.new(0.549000025, 0, 0.0450000167, 0)
  6053. Gravity.Size = UDim2.new(0, 120, 0, 30)
  6054. Gravity.Font = Enum.Font.Cartoon
  6055. Gravity.Text = "Gravity"
  6056. Gravity.TextScaled = true
  6057. Gravity.TextSize = 14
  6058. Gravity.TextWrapped = true
  6059. Gravity.MouseButton1Down:connect(function()
  6060. if Gravity == true then
  6061. Gravity = false
  6062. game.workspace.Gravity = 196.2
  6063. else
  6064. Gravity = true
  6065. game.workspace.Gravity = 45
  6066. end
  6067. end)
  6068. Infinitenitro.Name = "Infinitenitro"
  6069. Infinitenitro.Parent = TPS
  6070. Infinitenitro.BackgroundColor3 = Color3.new(1, 0, 0)
  6071. Infinitenitro.Position = UDim2.new(0.549999952, 0, 0.347498, 0)
  6072. Infinitenitro.Size = UDim2.new(0, 120, 0, 30)
  6073. Infinitenitro.Font = Enum.Font.Cartoon
  6074. Infinitenitro.Text = "Infinite Nitro"
  6075. Infinitenitro.TextScaled = true
  6076. Infinitenitro.TextSize = 14
  6077. Infinitenitro.TextWrapped = true
  6078. Infinitenitro.MouseButton1Down:connect(function()
  6079. game:GetService('Players').LocalPlayer.PlayerGui.MainGui.Nitro.Name = "69696969"
  6080. game:GetService('Players').LocalPlayer.PlayerGui.ProductGui.Nitro:ClearAllChildren()
  6081. end)
  6082. M4A4.Name = "M4A4"
  6083. M4A4.Parent = TPS
  6084. M4A4.BackgroundColor3 = Color3.new(1, 0, 0)
  6085. M4A4.Position = UDim2.new(0.826999903, 0, 0.651425719, 0)
  6086. M4A4.Size = UDim2.new(0, 120, 0, 30)
  6087. M4A4.Font = Enum.Font.Cartoon
  6088. M4A4.Text = "M4A4"
  6089. M4A4.TextScaled = true
  6090. M4A4.TextSize = 14
  6091. M4A4.TextWrapped = true
  6092. M4A4.MouseButton1Down:connect(function()
  6093. local hit = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  6094.  
  6095. a = Instance.new("Part", workspace)
  6096. a.Anchored = true
  6097. a.Position = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  6098. a.CanCollide = false
  6099.  
  6100. for i, v in pairs(game:GetService("Workspace").Givers:GetChildren()) do
  6101. if v.Name == "Station" then
  6102. for a, b in pairs(v:GetChildren()) do
  6103. if b:IsA("StringValue") then
  6104. if b.Value == "RifleSWAT" then
  6105. v.CFrame = CFrame.new(hit)
  6106. end
  6107. end
  6108. end
  6109. end
  6110. end
  6111. end)
  6112. NoClipB.Name = "NoClip[B]"
  6113. NoClipB.Parent = TPS
  6114. NoClipB.BackgroundColor3 = Color3.new(1, 0, 0)
  6115. NoClipB.Position = UDim2.new(0.550000012, 0, 0.500831306, 0)
  6116. NoClipB.Size = UDim2.new(0, 120, 0, 30)
  6117. NoClipB.Font = Enum.Font.Cartoon
  6118. NoClipB.Text = "NoClip[B]"
  6119. NoClipB.TextScaled = true
  6120. NoClipB.TextSize = 14
  6121. NoClipB.TextWrapped = true
  6122. NoClipB.MouseButton1Down:connect(function()
  6123. local noclipplayer = game:GetService("Players").LocalPlayer
  6124. local noclipmouse = noclipplayer:GetMouse()
  6125.  
  6126. local donoclip = false
  6127. local noclip = false
  6128.  
  6129. function b_noclip(key)
  6130. if (key == "b") then
  6131. if noclip == false then
  6132. donoclip = true
  6133.  
  6134. noclip = true
  6135. elseif noclip == true then
  6136. donoclip = false
  6137.  
  6138. noclip = false
  6139. end
  6140. end
  6141. end
  6142.  
  6143. noclipmouse.KeyDown:connect(b_noclip)
  6144.  
  6145. game:GetService("Players").LocalPlayer.Character.Head.Touched:connect(function(obj)
  6146. if obj ~= workspace.Terrain then
  6147. if donoclip == true then
  6148. obj.CanCollide = false
  6149. else
  6150. obj.CanCollide = true
  6151. end
  6152. end
  6153. end)
  6154. end)
  6155. Pistol.Name = "Pistol"
  6156. Pistol.Parent = TPS
  6157. Pistol.BackgroundColor3 = Color3.new(1, 0, 0)
  6158. Pistol.Position = UDim2.new(0.826000035, 0, 0.798020065, 0)
  6159. Pistol.Size = UDim2.new(0, 120, 0, 30)
  6160. Pistol.Font = Enum.Font.Cartoon
  6161. Pistol.Text = "Pistol"
  6162. Pistol.TextScaled = true
  6163. Pistol.TextSize = 14
  6164. Pistol.TextWrapped = true
  6165. Pistol.MouseButton1Down:connect(function()
  6166. local hit = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  6167.  
  6168. a = Instance.new("Part", workspace)
  6169. a.Anchored = true
  6170. a.Position = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  6171. a.CanCollide = false
  6172.  
  6173. for i, v in pairs(game:GetService("Workspace").Givers:GetChildren()) do
  6174. if v.Name == "Station" then
  6175. for a, b in pairs(v:GetChildren()) do
  6176. if b:IsA("StringValue") then
  6177. if b.Value == "Pistol" then
  6178. v.CFrame = CFrame.new(hit)
  6179. end
  6180. end
  6181. end
  6182. end
  6183. end
  6184. end)
  6185. RemoveBuildings.Name = "RemoveBuildings"
  6186. RemoveBuildings.Parent = TPS
  6187. RemoveBuildings.BackgroundColor3 = Color3.new(1, 0, 0)
  6188. RemoveBuildings.Position = UDim2.new(0.826499999, 0, 0.199626505, 0)
  6189. RemoveBuildings.Size = UDim2.new(0, 120, 0, 30)
  6190. RemoveBuildings.Font = Enum.Font.Cartoon
  6191. RemoveBuildings.Text = "Remove Buildings"
  6192. RemoveBuildings.TextScaled = true
  6193. RemoveBuildings.TextSize = 14
  6194. RemoveBuildings.TextWrapped = true
  6195. RemoveBuildings.MouseButton1Down:connect(function()
  6196. game:GetService("Workspace").Buildings:Destroy()
  6197. end)
  6198. Removeall.Name = "Removeall"
  6199. Removeall.Parent = TPS
  6200. Removeall.BackgroundColor3 = Color3.new(1, 0, 0)
  6201. Removeall.Position = UDim2.new(0.549000025, 0, 0.20162648, 0)
  6202. Removeall.Size = UDim2.new(0, 120, 0, 30)
  6203. Removeall.Font = Enum.Font.Cartoon
  6204. Removeall.Text = "RemoveAll"
  6205. Removeall.TextScaled = true
  6206. Removeall.TextSize = 14
  6207. Removeall.TextWrapped = true
  6208. Removeall.MouseButton1Down:connect(function()
  6209. game.Workspace.Cells:Remove()
  6210.  
  6211. game.Workspace.Museum.CaseLasers:Remove()
  6212.  
  6213. game.Workspace.Museum.Lights:Remove()
  6214.  
  6215. game.Workspace.Museum.Doors:Remove()
  6216.  
  6217. game.Workspace.EscapeRoutes:Remove()
  6218.  
  6219. for i,v in pairs(workspace.Doors:GetChildren()) do
  6220. v:Destroy()
  6221.  
  6222. end
  6223. end)
  6224.  
  6225. Removeall.MouseButton1Down:connect(function()
  6226. local banklasers = game:GetService("Workspace").Banks:GetChildren()
  6227. banklasers[1].Lasers:Destroy()
  6228. end)
  6229.  
  6230. Removeall.MouseButton1Down:connect(function()
  6231. local jewelry = game:GetService("Workspace").Jewelrys:GetChildren()
  6232.  
  6233. for i = 1,4 do
  6234. local xd = jewelry[1].Model.BarbedWire
  6235. xd:Destroy()
  6236. end
  6237. end)
  6238.  
  6239. Removeall.MouseButton1Down:connect(function()
  6240. local banklasers = game:GetService("Workspace").Banks:GetChildren()
  6241. banklasers[1].Door.Model:Destroy()
  6242. end)
  6243. SHOTGUN.Name = "SHOTGUN"
  6244. SHOTGUN.Parent = TPS
  6245. SHOTGUN.BackgroundColor3 = Color3.new(1, 0, 0)
  6246. SHOTGUN.Position = UDim2.new(0.825999975, 0, 0.500108421, 0)
  6247. SHOTGUN.Size = UDim2.new(0, 120, 0, 30)
  6248. SHOTGUN.Font = Enum.Font.Cartoon
  6249. SHOTGUN.Text = "SHOTGUN"
  6250. SHOTGUN.TextScaled = true
  6251. SHOTGUN.TextSize = 14
  6252. SHOTGUN.TextWrapped = true
  6253. SHOTGUN.MouseButton1Down:connect(function()
  6254. local hit = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  6255.  
  6256. a = Instance.new("Part", workspace)
  6257. a.Anchored = true
  6258. a.Position = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  6259. a.CanCollide = false
  6260.  
  6261. for i, v in pairs(game:GetService("Workspace").Givers:GetChildren()) do
  6262. if v.Name == "Station" then
  6263. for a, b in pairs(v:GetChildren()) do
  6264. if b:IsA("StringValue") then
  6265. if b.Value == "Shotgun" then
  6266. v.CFrame = CFrame.new(hit)
  6267. end
  6268. end
  6269. end
  6270. end
  6271. end
  6272. end)
  6273. WalkSpeed.Name = "WalkSpeed"
  6274. WalkSpeed.Parent = TPS
  6275. WalkSpeed.BackgroundColor3 = Color3.new(1, 0, 0)
  6276. WalkSpeed.Position = UDim2.new(0.548999965, 0, 0.800020099, 0)
  6277. WalkSpeed.Size = UDim2.new(0, 120, 0, 30)
  6278. WalkSpeed.Font = Enum.Font.Cartoon
  6279. WalkSpeed.Text = "WalkSpeed[X]"
  6280. WalkSpeed.TextScaled = true
  6281. WalkSpeed.TextSize = 14
  6282. WalkSpeed.TextWrapped = true
  6283. WalkSpeed.MouseButton1Down:connect(function()
  6284. local walkspeedplayer = game:GetService("Players").LocalPlayer
  6285. local walkspeedmouse = walkspeedplayer:GetMouse()
  6286.  
  6287. local walkspeedenabled = false
  6288.  
  6289. function x_walkspeed(key)
  6290. if (key == "x") then
  6291. if walkspeedenabled == false then
  6292. _G.WS = 200;
  6293. local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
  6294. Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  6295. Humanoid.WalkSpeed = _G.WS;
  6296. end)
  6297. Humanoid.WalkSpeed = _G.WS;
  6298.  
  6299. walkspeedenabled = true
  6300. elseif walkspeedenabled == true then
  6301. _G.WS = 20;
  6302. local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
  6303. Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  6304. Humanoid.WalkSpeed = _G.WS;
  6305. end)
  6306. Humanoid.WalkSpeed = _G.WS;
  6307.  
  6308. walkspeedenabled = false
  6309. end
  6310. end
  6311. end
  6312.  
  6313. walkspeedmouse.KeyDown:connect(x_walkspeed)
  6314.  
  6315. end)
  6316. AutoROB.Name = "AutoROB"
  6317. AutoROB.Parent = Main
  6318. AutoROB.BackgroundColor3 = Color3.new(1, 1, 0)
  6319. AutoROB.BackgroundTransparency = 1
  6320. AutoROB.Position = UDim2.new(0, 0, 0.186666667, 0)
  6321. AutoROB.Size = UDim2.new(0, 550, 0, 244)
  6322. AutoROB.Visible = false
  6323.  
  6324. BankAutoRobBtn.Name = "BankAutoRobBtn"
  6325. BankAutoRobBtn.Parent = AutoROB
  6326. BankAutoRobBtn.BackgroundColor3 = Color3.new(1, 0, 0)
  6327. BankAutoRobBtn.Position = UDim2.new(0.0145454546, 0, 0.0491803288, 0)
  6328. BankAutoRobBtn.Size = UDim2.new(0, 525, 0, 30)
  6329. BankAutoRobBtn.Font = Enum.Font.ArialBold
  6330. BankAutoRobBtn.Text = "Bank Auto Rob"
  6331. BankAutoRobBtn.TextScaled = true
  6332. BankAutoRobBtn.TextSize = 14
  6333. BankAutoRobBtn.TextWrapped = true
  6334. BankAutoRobBtn.MouseButton1Click:connect(function()
  6335. local Bank = workspace:FindFirstChild("Banks"):GetChildren()[1]
  6336. local Info = Bank.Extra.Sign
  6337. if Info.Decal.Transparency == 0 then
  6338. game:GetService("StarterGui"):SetCore("SendNotification",{
  6339. Title = "Bank is closed!",
  6340. Text = "You need to wait for the bank to open!",
  6341. Duration = 7,
  6342. Button1 = "Dismiss",
  6343. })
  6344. return
  6345. end
  6346. local bankpos = Vector3.new(Info.Position.X,0,Info.Position.Z)
  6347. local root = plr.Character.HumanoidRootPart
  6348. local plrpos = Vector3.new(root.Position.X,0,root.Position.Z)
  6349.  
  6350. if (bankpos - plrpos).magnitude > 150 then
  6351. local cb = Instance.new"BindableFunction"
  6352.  
  6353. cb.OnInvoke = function(arg)
  6354. if arg == "Teleport" then
  6355. JailbreakTp(10, 18, 784)
  6356. end
  6357. end
  6358.  
  6359. game:GetService("StarterGui"):SetCore("SendNotification",{
  6360. Title = "You are too far!",
  6361. Text = "You need to get closer to the bank (use tp)",
  6362. Duration = 7,
  6363. Button1 = "Dismiss",
  6364. Button2 = "Teleport",
  6365. Callback = cb
  6366. })
  6367. else
  6368. RobTheBank()
  6369. end
  6370. end)
  6371. JewelryStatus.Name = "JewelryStatus"
  6372. JewelryStatus.Parent = AutoROB
  6373. JewelryStatus.BackgroundColor3 = Color3.new(0, 0.384314, 1)
  6374. JewelryStatus.Position = UDim2.new(0.0149999997, 0, 0.86007303, 0)
  6375. JewelryStatus.Size = UDim2.new(0, 101, 0, 26)
  6376. JewelryStatus.Font = Enum.Font.SourceSans
  6377. JewelryStatus.Text = "Jewelry:"
  6378. JewelryStatus.TextColor3 = Color3.new(0, 0, 0)
  6379. JewelryStatus.TextSize = 14
  6380.  
  6381. BankStatus.Name = "BankStatus"
  6382. BankStatus.Parent = AutoROB
  6383. BankStatus.BackgroundColor3 = Color3.new(0, 0.384314, 1)
  6384. BankStatus.Position = UDim2.new(0.300000012, 0, 0.86007303, 0)
  6385. BankStatus.Size = UDim2.new(0, 101, 0, 26)
  6386. BankStatus.Font = Enum.Font.SourceSans
  6387. BankStatus.Text = "Bank:"
  6388. BankStatus.TextColor3 = Color3.new(0, 0, 0)
  6389. BankStatus.TextSize = 14
  6390.  
  6391. Lol.Name = "Lol"
  6392. Lol.Parent = Main
  6393. Lol.Active = true
  6394. Lol.BackgroundColor3 = Color3.new(1, 0, 0)
  6395. Lol.Position = UDim2.new(0, 0, -0.193333328, 0)
  6396. Lol.Size = UDim2.new(0, 500, 0, 50)
  6397. Lol.Font = Enum.Font.Antique
  6398. Lol.Text = "Jailbreaker V4.2"
  6399. Lol.TextColor3 = Color3.new(0, 0, 0)
  6400. Lol.TextScaled = true
  6401. Lol.TextSize = 14
  6402. Lol.TextWrapped = true
  6403.  
  6404. Close.Name = "Close"
  6405. Close.Parent = Main
  6406. Close.BackgroundColor3 = Color3.new(1, 0, 0)
  6407. Close.Position = UDim2.new(0.90109092, 0, -0.193333328, 0)
  6408. Close.Size = UDim2.new(0, 54, 0, 50)
  6409. Close.Font = Enum.Font.Cartoon
  6410. Close.Text = "X"
  6411. Close.TextColor3 = Color3.new(0, 0, 0)
  6412. Close.TextScaled = true
  6413. Close.TextSize = 14
  6414. Close.TextWrapped = true
  6415. Close.MouseButton1Down:connect(function()
  6416. Open.Visible = true
  6417. Main.Visible = false
  6418. end)
  6419. PLTP.Name = "PLTP"
  6420. PLTP.Parent = Main
  6421. PLTP.Active = true
  6422. PLTP.BackgroundColor3 = Color3.new(0.247059, 0.247059, 0.247059)
  6423. PLTP.Position = UDim2.new(0, 0, 0.176666662, 0)
  6424. PLTP.Size = UDim2.new(0, 550, 0, 247)
  6425. PLTP.Visible = false
  6426.  
  6427. PlayerTP_Input.Name = "PlayerTP_Input"
  6428. PlayerTP_Input.Parent = PLTP
  6429. PlayerTP_Input.BackgroundColor3 = Color3.new(1, 0, 0)
  6430. PlayerTP_Input.Position = UDim2.new(0.0945454538, 0, 0.125506073, 0)
  6431. PlayerTP_Input.Size = UDim2.new(0, 427, 0, 50)
  6432. PlayerTP_Input.Font = Enum.Font.ArialBold
  6433. PlayerTP_Input.Text = "Player Name"
  6434. PlayerTP_Input.TextSize = 20
  6435. PlayerTP_Input.TextWrapped = true
  6436.  
  6437. PlayerTP_Teleport.Name = "PlayerTP_Teleport"
  6438. PlayerTP_Teleport.Parent = PLTP
  6439. PlayerTP_Teleport.BackgroundColor3 = Color3.new(0.4, 0.0980392, 1)
  6440. PlayerTP_Teleport.Position = UDim2.new(0.0945454538, 0, 0.429149806, 0)
  6441. PlayerTP_Teleport.Size = UDim2.new(0, 427, 0, 50)
  6442. PlayerTP_Teleport.Font = Enum.Font.SourceSansBold
  6443. PlayerTP_Teleport.Text = "Teleport To Player"
  6444. PlayerTP_Teleport.TextScaled = true
  6445. PlayerTP_Teleport.TextSize = 14
  6446. PlayerTP_Teleport.TextWrapped = true
  6447.  
  6448. PlayerTeleport.Name = "PlayerTeleport"
  6449. PlayerTeleport.Parent = Main
  6450. PlayerTeleport.BackgroundColor3 = Color3.new(1, 0, 0)
  6451. PlayerTeleport.Position = UDim2.new(0.379999995, 0, 0.0500000007, 0)
  6452. PlayerTeleport.Size = UDim2.new(0, 120, 0, 30)
  6453. PlayerTeleport.Font = Enum.Font.Cartoon
  6454. PlayerTeleport.Text = "Player TP"
  6455. PlayerTeleport.TextColor3 = Color3.new(0, 0, 0)
  6456. PlayerTeleport.TextScaled = true
  6457. PlayerTeleport.TextSize = 14
  6458. PlayerTeleport.TextWrapped = true
  6459. PlayerTeleport.MouseButton1Down:connect(function()
  6460. TPS.Visible = false
  6461. PLTP.Visible = true
  6462. AutoROB.Visible = false
  6463. end)
  6464. Open.Name = "Open"
  6465. Open.Parent = JailbreakerV42
  6466. Open.BackgroundColor3 = Color3.new(1, 0, 0)
  6467. Open.BorderColor3 = Color3.new(1, 0, 0)
  6468. Open.BorderSizePixel = 2
  6469. Open.Position = UDim2.new(0.5, 0, 0, 0)
  6470. Open.Size = UDim2.new(0, 100, 0, 30)
  6471. Open.Visible = false
  6472. Open.Font = Enum.Font.Cartoon
  6473. Open.Text = "Open"
  6474. Open.TextScaled = true
  6475. Open.TextSize = 14
  6476. Open.TextWrapped = true
  6477. Open.MouseButton1Down:connect(function()
  6478. Open.Visible = false
  6479. Main.Visible = true
  6480. end)
  6481. -- Scripts:
  6482. --AutoRob stuff--
  6483. local DuffelBag = game:GetService("MarketplaceService"):PlayerOwnsAsset(plr, 2219040)
  6484. local BankAutoRob = {
  6485. {
  6486. Pos = {51, 18.06, 856.5},
  6487. Yield = 2,
  6488. Status = "Starting the robbery"
  6489. },
  6490. {
  6491. Pos = {29.71, 0.73, 815.25},
  6492. Yield = 15,
  6493. Status = "Opening the vault"
  6494. },
  6495. {
  6496. Pos = {18.37, 0.7659, 822.25},
  6497. Yield = DuffelBag and 50 or 49,
  6498. Status = "Collecting $$$"
  6499. },
  6500. {
  6501. Pos = {10, 18, 784},
  6502. Status = "Finishing the robbery"
  6503. }
  6504. }
  6505.  
  6506. local function Tp(...)
  6507. local char = plr.Character
  6508. for i=1,2 do
  6509. wait()
  6510. char:WaitForChild'HumanoidRootPart'.CFrame = CFrame.new(...)
  6511. end
  6512. end
  6513.  
  6514. function RobTheBank()
  6515. for _,v in pairs(BankAutoRob) do
  6516. Tp(unpack(v.Pos))
  6517. wait(v.Yield)
  6518. end
  6519. end
  6520.  
  6521. --Bank notification--
  6522. pcall(function()
  6523. local Bank = workspace:FindFirstChild("Banks"):GetChildren()[1]
  6524. local Info = Bank.Extra.Sign.Decal
  6525. Info:GetPropertyChangedSignal("Transparency"):Connect(function()
  6526. if Info.Transparency ~= 0 then
  6527. BankStatus.Text = "Bank:Open"
  6528. BankStatus.TextColor3 = Color3.new(0,1,0)
  6529. BankAutoRobBtn.BackgroundColor3 = Color3.new(0,1,0)
  6530. local cb = Instance.new("BindableFunction")
  6531. cb.OnInvoke = function(arg)
  6532. if arg == "Teleport" then
  6533. JailbreakTp(10, 18, 784)
  6534. elseif arg == "AutoRob" then
  6535. RobTheBank()
  6536. end
  6537. end
  6538. game:GetService("StarterGui"):SetCore("SendNotification",{
  6539. Title = "Bank is ready!",
  6540. Text = "Bank is ready!",
  6541. Duration = 15,
  6542. Button1 = "Dismiss",
  6543. 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",
  6544. Callback = cb
  6545. })
  6546. else
  6547. BankStatus.Text = "Bank:Closed"
  6548. BankStatus.TextColor3 = Color3.new(1,0,0)
  6549. BankAutoRobBtn.BackgroundColor3 = Color3.new(1,0,0)
  6550. end
  6551. end)
  6552. BankStatus.Text = Info.Transparency == 0 and "Bank:Closed" or "Bank:Open"
  6553. BankStatus.TextColor3 = Info.Transparency == 0 and Color3.new(1,0,0) or Color3.new(0,1,0)
  6554. BankAutoRobBtn.BackgroundColor3 = Info.Transparency == 0 and Color3.new(1,0,0) or Color3.new(0,1,0)
  6555. end)
  6556. --Jewelry notification--
  6557. pcall(function()
  6558. local Jewelry = workspace:FindFirstChild("Jewelrys"):GetChildren()[1]
  6559. local Info = Jewelry.Extra.Sign.Decal
  6560. Info:GetPropertyChangedSignal("Transparency"):Connect(function()
  6561. if Info.Transparency ~= 0 then
  6562. JewelryStatus.Text = "Jewelry:Open"
  6563. JewelryStatus.TextColor3 = Color3.new(0,1,0)
  6564. BankStatus.TextColor3 = Color3.new(0,1,0)
  6565. local cb = Instance.new("BindableFunction")
  6566. cb.OnInvoke = function(arg)
  6567. if arg == "Teleport" then
  6568. JailbreakTp(142, 18, 1365)
  6569. end
  6570. end
  6571. game:GetService("StarterGui"):SetCore("SendNotification",{
  6572. Title = "Jewelry is ready!",
  6573. Text = "Jewelry is ready!",
  6574. Duration = 15,
  6575. Button1 = "Dismiss",
  6576. Button2 = "Teleport",
  6577. Callback = cb
  6578. })
  6579. else
  6580. JewelryStatus.Text = "Jewelry:Closed"
  6581. JewelryStatus.TextColor3 = Color3.new(1,0,0)
  6582. end
  6583. end)
  6584. JewelryStatus.Text = Info.Transparency == 0 and "Jewelry:Closed" or "Jewelry:Open"
  6585. JewelryStatus.TextColor3 = Info.Transparency == 0 and Color3.new(1,0,0) or Color3.new(0,1,0)
  6586. end)
  6587.  
  6588.  
  6589. end)
  6590.  
  6591. auto.Name = "auto"
  6592. auto.Parent = Frame
  6593. auto.BackgroundColor3 = Color3.new(0.333333, 0.333333, 0.498039)
  6594. auto.BorderSizePixel = 3
  6595. auto.Position = UDim2.new(0.546894491, 0, 0.680227995, 0)
  6596. auto.Size = UDim2.new(0, 113, 0, 48)
  6597. auto.Font = Enum.Font.Cartoon
  6598. auto.Text = "Auto Rob Gui"
  6599. auto.TextColor3 = Color3.new(1, 1, 1)
  6600. auto.TextScaled = true
  6601. auto.TextSize = 14
  6602. auto.TextWrapped = true
  6603.  
  6604. auto.MouseButton1Down:connect(function()
  6605. loadstring(game:GetObjects("rbxassetid://1461971147")[1].Source)()
  6606. end)
  6607.  
  6608. TextButton.Parent = Frame
  6609. TextButton.BackgroundColor3 = Color3.new(0.333333, 0.333333, 0.498039)
  6610. TextButton.BorderSizePixel = 0
  6611. TextButton.Position = UDim2.new(0.915129125, 0, 0, 0)
  6612. TextButton.Size = UDim2.new(0, 23, 0, 18)
  6613. TextButton.Font = Enum.Font.Cartoon
  6614. TextButton.Text = "X"
  6615. TextButton.TextColor3 = Color3.new(1, 0, 0)
  6616. TextButton.TextSize = 17
  6617.  
  6618. TextButton.MouseButton1Down:connect(function()
  6619. Frame.Visible = false
  6620. end)
Add Comment
Please, Sign In to add comment