Script_Master132

JAILBRAKE gui inf nitro

Mar 1st, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 29.43 KB | None | 0 0
  1. local JailbreakGui = Instance.new("ScreenGui")
  2. local Main = Instance.new("Frame")
  3. local WalkSpeed = Instance.new("TextButton")
  4. local TextLabel = Instance.new("TextLabel")
  5. local NoClip = Instance.new("TextButton")
  6. local GravityON = Instance.new("TextButton")
  7. local GravityOFF = Instance.new("TextButton")
  8. local InfiniteJump = Instance.new("TextButton")
  9. local TextLabel_2 = Instance.new("TextLabel")
  10. local Main2 = Instance.new("Frame")
  11. local TextLabel_3 = Instance.new("TextLabel")
  12. local Pistol = Instance.new("TextButton")
  13. local Shotgun = Instance.new("TextButton")
  14. local Main3 = Instance.new("Frame")
  15. local TextLabel_4 = Instance.new("TextLabel")
  16. local CarFly = Instance.new("TextButton")
  17. local InfiniteNitro = Instance.new("TextButton")
  18. local TextLabel_5 = Instance.new("TextLabel")
  19. local Main4 = Instance.new("Frame")
  20. local TextLabel_6 = Instance.new("TextLabel")
  21. local BTools = Instance.new("TextButton")
  22. local NoBuildings = Instance.new("TextButton")
  23. local RemoveAll = Instance.new("TextButton")
  24. local TextLabel_7 = Instance.new("TextLabel")
  25. local Main5 = Instance.new("Frame")
  26. local TextLabel_8 = Instance.new("TextLabel")
  27. local JewelryIn = Instance.new("TextButton")
  28. local JewelryTop = Instance.new("TextButton")
  29. local MuseumIn = Instance.new("TextButton")
  30. local MuseumOut = Instance.new("TextButton")
  31. local BankFront = Instance.new("TextButton")
  32. local BankVault = Instance.new("TextButton")
  33. local MuseumTop = Instance.new("TextButton")
  34. local CrimBase1 = Instance.new("TextButton")
  35. local CrimBase2 = Instance.new("TextButton")
  36. local DonutStore = Instance.new("TextButton")
  37. local GasStation = Instance.new("TextButton")
  38. local TrainSpawn = Instance.new("TextButton")
  39. local PrisonYard = Instance.new("TextButton")
  40. local PoliceBase = Instance.new("TextButton")
  41. local Dealership = Instance.new("TextButton")
  42. local HeliPad1 = Instance.new("TextButton")
  43. local HeliPad2 = Instance.new("TextButton")
  44. local Lamborghini = Instance.new("TextButton")
  45. local Tesla = Instance.new("TextButton")
  46. local Ferrari = Instance.new("TextButton")
  47. --Properties:
  48. JailbreakGui.Name = "Jailbreak Gui"
  49. JailbreakGui.Parent = game.CoreGui
  50.  
  51. Main.Name = "Main"
  52. Main.Parent = JailbreakGui
  53. Main.BackgroundColor3 = Color3.new(0, 0.333333, 1)
  54. Main.BorderSizePixel = 4
  55. Main.Position = UDim2.new(-0.0044676098, 0, 0, 0)
  56. Main.Size = UDim2.new(0, 142, 0, 189)
  57. Main.Active = true
  58. Main.Draggable = true
  59.  
  60. WalkSpeed.Name = "WalkSpeed"
  61. WalkSpeed.Parent = Main
  62. WalkSpeed.BackgroundColor3 = Color3.new(1, 0.666667, 0)
  63. WalkSpeed.Position = UDim2.new(0, 0, 0.130278975, 0)
  64. WalkSpeed.Size = UDim2.new(0, 142, 0, 26)
  65. WalkSpeed.Font = Enum.Font.Fantasy
  66. WalkSpeed.Text = "WS (x)"
  67. WalkSpeed.TextColor3 = Color3.new(0, 0, 0)
  68. WalkSpeed.TextSize = 14
  69. WalkSpeed.MouseButton1Down:connect(function()
  70. local walkspeedplayer = game:GetService("Players").LocalPlayer
  71. local walkspeedmouse = walkspeedplayer:GetMouse()
  72.  
  73. local walkspeedenabled = false
  74.  
  75. function x_walkspeed(key)
  76. if (key == "x") then
  77. if walkspeedenabled == false then
  78. _G.WS = 100;
  79. local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
  80. Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  81. Humanoid.WalkSpeed = _G.WS;
  82. end)
  83. Humanoid.WalkSpeed = _G.WS;
  84.  
  85. walkspeedenabled = true
  86. elseif walkspeedenabled == true then
  87. _G.WS = 20;
  88. local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
  89. Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  90. Humanoid.WalkSpeed = _G.WS;
  91. end)
  92. Humanoid.WalkSpeed = _G.WS;
  93.  
  94. walkspeedenabled = false
  95. end
  96. end
  97. end
  98.  
  99. walkspeedmouse.KeyDown:connect(x_walkspeed)
  100.  
  101. end)
  102.  
  103. TextLabel.Parent = Main
  104. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  105. TextLabel.BackgroundTransparency = 1
  106. TextLabel.Position = UDim2.new(0, 0, 0.0107526882, 0)
  107. TextLabel.Size = UDim2.new(0, 142, 0, 20)
  108. TextLabel.Font = Enum.Font.SciFi
  109. TextLabel.Text = "Character Cheats"
  110. TextLabel.TextColor3 = Color3.new(0.333333, 1, 1)
  111. TextLabel.TextSize = 14
  112.  
  113. NoClip.Name = "NoClip"
  114. NoClip.Parent = Main
  115. NoClip.BackgroundColor3 = Color3.new(1, 0.666667, 0)
  116. NoClip.Position = UDim2.new(0, 0, 0.293898374, 0)
  117. NoClip.Size = UDim2.new(0, 142, 0, 26)
  118. NoClip.Font = Enum.Font.Fantasy
  119. NoClip.Text = "Wall Hack (B)"
  120. NoClip.TextColor3 = Color3.new(0, 0, 0)
  121. NoClip.TextSize = 14
  122. NoClip.MouseButton1Down:connect(function()
  123. local noclipplayer = game:GetService("Players").LocalPlayer
  124. local noclipmouse = noclipplayer:GetMouse()
  125.  
  126. local donoclip = false
  127. local noclip = false
  128.  
  129. function b_noclip(key)
  130. if (key == "b") then
  131. if noclip == false then
  132. donoclip = true
  133.  
  134. noclip = true
  135. elseif noclip == true then
  136. donoclip = false
  137.  
  138. noclip = false
  139. end
  140. end
  141. end
  142.  
  143. noclipmouse.KeyDown:connect(b_noclip)
  144.  
  145. game:GetService("Players").LocalPlayer.Character.Head.Touched:connect(function(obj)
  146. if obj ~= workspace.Terrain then
  147. if donoclip == true then
  148. obj.CanCollide = false
  149. else
  150. obj.CanCollide = true
  151. end
  152. end
  153. end)
  154. end)
  155.  
  156. GravityON.Name = "GravityON"
  157. GravityON.Parent = Main
  158. GravityON.BackgroundColor3 = Color3.new(1, 0.666667, 0)
  159. GravityON.Position = UDim2.new(0, 0, 0.637140512, 0)
  160. GravityON.Size = UDim2.new(0, 142, 0, 23)
  161. GravityON.Font = Enum.Font.Fantasy
  162. GravityON.Text = "Grav Off"
  163. GravityON.TextColor3 = Color3.new(0, 0, 0)
  164. GravityON.TextSize = 14
  165. GravityON.TextWrapped = true
  166. GravityON.MouseButton1Down:connect(function()
  167. game.Workspace.Gravity = 196.2
  168. GravityOFF.Visible = true
  169. GravityON.Visible = true
  170. end)
  171.  
  172. GravityOFF.Name = "GravityOFF"
  173. GravityOFF.Parent = Main
  174. GravityOFF.BackgroundColor3 = Color3.new(1, 0.666667, 0)
  175. GravityOFF.Position = UDim2.new(0, 0, 0.466942251, 0)
  176. GravityOFF.Size = UDim2.new(0, 142, 0, 26)
  177. GravityOFF.Font = Enum.Font.Fantasy
  178. GravityOFF.Text = "Grav On"
  179. GravityOFF.TextColor3 = Color3.new(0, 0, 0)
  180. GravityOFF.TextSize = 14
  181. GravityOFF.MouseButton1Down:connect(function()
  182. game.Workspace.Gravity = 35
  183. GravityOFF.Visible = true
  184. GravityON.Visible = true
  185. end)
  186.  
  187. InfiniteJump.Name = "InfiniteJump"
  188. InfiniteJump.Parent = Main
  189. InfiniteJump.BackgroundColor3 = Color3.new(1, 0.666667, 0)
  190. InfiniteJump.Position = UDim2.new(0, 0, 0.79070586, 0)
  191. InfiniteJump.Size = UDim2.new(0, 142, 0, 23)
  192. InfiniteJump.Font = Enum.Font.Fantasy
  193. InfiniteJump.Text = "Inf Jump"
  194. InfiniteJump.TextColor3 = Color3.new(0, 0, 0)
  195. InfiniteJump.TextSize = 14
  196. InfiniteJump.MouseButton1Down:connect(function()
  197. game:GetService("UserInputService").JumpRequest:connect(function()
  198. game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
  199. end)
  200. end)
  201.  
  202. TextLabel_2.Parent = JailbreakGui
  203. TextLabel_2.BackgroundColor3 = Color3.new(0, 0.666667, 1)
  204. TextLabel_2.BorderColor3 = Color3.new(0, 0, 0)
  205. TextLabel_2.BorderSizePixel = 5
  206. TextLabel_2.Position = UDim2.new(0.425595224, 0, 0, 0)
  207. TextLabel_2.Size = UDim2.new(0, 200, 0, 23)
  208. TextLabel_2.Font = Enum.Font.Highway
  209. TextLabel_2.Text = "tt GUI"
  210. TextLabel_2.TextColor3 = Color3.new(0, 0, 0)
  211. TextLabel_2.TextSize = 14
  212.  
  213. Main2.Name = "Main2"
  214. Main2.Parent = JailbreakGui
  215. Main2.BackgroundColor3 = Color3.new(0, 0.333333, 1)
  216. Main2.BorderSizePixel = 4
  217. Main2.Position = UDim2.new(0.125837684, 0, 0, 0)
  218. Main2.Size = UDim2.new(0, 156, 0, 157)
  219. Main2.Active = true
  220. Main2.Draggable = true
  221.  
  222. TextLabel_3.Parent = Main2
  223. TextLabel_3.BackgroundColor3 = Color3.new(1, 1, 1)
  224. TextLabel_3.BackgroundTransparency = 1
  225. TextLabel_3.Size = UDim2.new(0, 177, 0, 23)
  226. TextLabel_3.Font = Enum.Font.SciFi
  227. TextLabel_3.Text = "Guns "
  228. TextLabel_3.TextColor3 = Color3.new(0, 1, 1)
  229. TextLabel_3.TextSize = 14
  230.  
  231. Pistol.Name = "Pistol"
  232. Pistol.Parent = Main2
  233. Pistol.BackgroundColor3 = Color3.new(1, 0.666667, 0)
  234. Pistol.Position = UDim2.new(0, 0, 0.159235671, 0)
  235. Pistol.Size = UDim2.new(0, 156, 0, 25)
  236. Pistol.Font = Enum.Font.Fantasy
  237. Pistol.Text = "Pistol"
  238. Pistol.TextColor3 = Color3.new(0, 0, 0)
  239. Pistol.TextSize = 14
  240. Pistol.MouseButton1Down:connect(function()
  241. local hit = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  242.  
  243. a = Instance.new("Part", workspace)
  244. a.Anchored = true
  245. a.Position = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  246. a.CanCollide = false
  247.  
  248. for i, v in pairs(game:GetService("Workspace").Givers:GetChildren()) do
  249. if v.Name == "Station" then
  250. for a, b in pairs(v:GetChildren()) do
  251. if b:IsA("StringValue") then
  252. if b.Value == "Pistol" then
  253. v.CFrame = CFrame.new(hit)
  254. end
  255. end
  256. end
  257. end
  258. end
  259. end)
  260.  
  261. Shotgun.Name = "Shotgun"
  262. Shotgun.Parent = Main2
  263. Shotgun.BackgroundColor3 = Color3.new(1, 0.666667, 0)
  264. Shotgun.Position = UDim2.new(0, 0, 0.350318491, 0)
  265. Shotgun.Size = UDim2.new(0, 156, 0, 26)
  266. Shotgun.Font = Enum.Font.Fantasy
  267. Shotgun.Text = "Shotgun"
  268. Shotgun.TextColor3 = Color3.new(0, 0, 0)
  269. Shotgun.TextSize = 14
  270. Shotgun.MouseButton1Down:connect(function()
  271. local hit = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  272.  
  273. a = Instance.new("Part", workspace)
  274. a.Anchored = true
  275. a.Position = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  276. a.CanCollide = false
  277.  
  278. for i, v in pairs(game:GetService("Workspace").Givers:GetChildren()) do
  279. if v.Name == "Station" then
  280. for a, b in pairs(v:GetChildren()) do
  281. if b:IsA("StringValue") then
  282. if b.Value == "Shotgun" then
  283. v.CFrame = CFrame.new(hit)
  284. end
  285. end
  286. end
  287. end
  288. end
  289. end)
  290.  
  291. Main3.Name = "Main3"
  292. Main3.Parent = JailbreakGui
  293. Main3.BackgroundColor3 = Color3.new(0, 0.333333, 1)
  294. Main3.BorderSizePixel = 4
  295. Main3.Position = UDim2.new(0.268056601, 0, 0, 0)
  296. Main3.Size = UDim2.new(0, 168, 0, 157)
  297. Main3.Active = true
  298. Main3.Draggable = true
  299.  
  300. TextLabel_4.Parent = Main3
  301. TextLabel_4.BackgroundColor3 = Color3.new(1, 1, 1)
  302. TextLabel_4.BackgroundTransparency = 1
  303. TextLabel_4.Size = UDim2.new(0, 168, 0, 22)
  304. TextLabel_4.Font = Enum.Font.SciFi
  305. TextLabel_4.Text = "Car Cheats"
  306. TextLabel_4.TextColor3 = Color3.new(0, 1, 1)
  307. TextLabel_4.TextSize = 14
  308.  
  309. CarFly.Name = "CarFly"
  310. CarFly.Parent = Main3
  311. CarFly.BackgroundColor3 = Color3.new(1, 0.666667, 0)
  312. CarFly.Position = UDim2.new(0, 0, 0.159235671, 0)
  313. CarFly.Size = UDim2.new(0, 168, 0, 25)
  314. CarFly.Font = Enum.Font.Fantasy
  315. CarFly.Text = "Car Flight (R)"
  316. CarFly.TextColor3 = Color3.new(0, 0, 0)
  317. CarFly.TextSize = 14
  318. CarFly.MouseButton1Down:connect(function()
  319. local plr = game:GetService("Players").LocalPlayer
  320. local m = plr:GetMouse()
  321. m.KeyDown:connect(function(k)
  322. if k:byte() == 114 then
  323. plrh = game:GetService'Players'.LocalPlayer.Character:FindFirstChildOfClass'Humanoid'
  324. plrh:ChangeState('Jumping')
  325. wait()
  326. plrh:ChangeState('Seated')
  327. end
  328. end)
  329. end)
  330.  
  331. InfiniteNitro.Name = "InfiniteNitro"
  332. InfiniteNitro.Parent = Main3
  333. InfiniteNitro.BackgroundColor3 = Color3.new(1, 0.666667, 0)
  334. InfiniteNitro.Position = UDim2.new(0, 0, 0.350318462, 0)
  335. InfiniteNitro.Size = UDim2.new(0, 168, 0, 26)
  336. InfiniteNitro.Font = Enum.Font.Fantasy
  337. InfiniteNitro.Text = "Inf Fuel"
  338. InfiniteNitro.TextColor3 = Color3.new(0, 0, 0)
  339. InfiniteNitro.TextSize = 14
  340. InfiniteNitro.MouseButton1Down:connect(function()
  341. game:GetService('Players').LocalPlayer.PlayerGui.MainGui.Nitro.Name = "6969696969"
  342. game:GetService('Players').LocalPlayer.PlayerGui.ProductGui.Nitro:ClearAllChildren()
  343. end)
  344.  
  345. Main4.Name = "Main4"
  346. Main4.Parent = JailbreakGui
  347. Main4.BackgroundColor3 = Color3.new(0, 0.333333, 1)
  348. Main4.BorderSizePixel = 4
  349. Main4.Position = UDim2.new(0.610244989, 0, 0, 0)
  350. Main4.Size = UDim2.new(0, 165, 0, 189)
  351. Main4.Active = true
  352. Main4.Draggable = true
  353.  
  354. TextLabel_6.Parent = Main4
  355. TextLabel_6.BackgroundColor3 = Color3.new(1, 1, 1)
  356. TextLabel_6.BackgroundTransparency = 1
  357. TextLabel_6.Size = UDim2.new(0, 165, 0, 25)
  358. TextLabel_6.Font = Enum.Font.SciFi
  359. TextLabel_6.Text = "Building cheats"
  360. TextLabel_6.TextColor3 = Color3.new(0, 1, 1)
  361. TextLabel_6.TextSize = 14
  362.  
  363. BTools.Name = "BTools"
  364. BTools.Parent = Main4
  365. BTools.BackgroundColor3 = Color3.new(1, 0.666667, 0)
  366. BTools.Position = UDim2.new(0, 0, 0.127793476, 0)
  367. BTools.Size = UDim2.new(0, 165, 0, 26)
  368. BTools.Font = Enum.Font.Fantasy
  369. BTools.Text = "Btools"
  370. BTools.TextColor3 = Color3.new(0, 0, 0)
  371. BTools.TextSize = 14
  372. BTools.MouseButton1Down:connect(function()
  373. game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, true)
  374. for index, child in pairs(game:GetService("Workspace"):GetChildren()) do
  375. if child.ClassName == "Part" then
  376. child.Locked = false
  377. end
  378. if child.ClassName == "MeshPart" then
  379. child.Locked = false
  380. end
  381. if child.ClassName == "UnionOperation" then
  382. child.Locked = false
  383. end
  384. if child.ClassName == "Model" then
  385. for index, chil in pairs(child:GetChildren()) do
  386. if chil.ClassName == "Part" then
  387. chil.Locked = false
  388. end
  389. if chil.ClassName == "MeshPart" then
  390. chil.Locked = false
  391. end
  392. if chil.ClassName == "UnionOperation" then
  393. chil.Locked = false
  394. end
  395. if chil.ClassName == "Model" then
  396. for index, childe in pairs(chil:GetChildren()) do
  397. if childe.ClassName == "Part" then
  398. childe.Locked = false
  399. end
  400. if childe.ClassName == "MeshPart" then
  401. childe.Locked = false
  402. end
  403. if childe.ClassName == "UnionOperation" then
  404. childe.Locked = false
  405. end
  406. if childe.ClassName == "Model" then
  407. for index, childeo in pairs(childe:GetChildren()) do
  408. if childeo.ClassName == "Part" then
  409. childeo.Locked = false
  410. end
  411. if childeo.ClassName == "MeshPart" then
  412. childeo.Locked = false
  413. end
  414. if childeo.ClassName == "UnionOperation" then
  415. childeo.Locked = false
  416. end
  417. if childeo.ClassName == "Model" then
  418. end
  419. end
  420. end
  421. end
  422. end
  423. end
  424. end
  425. end
  426. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  427. c.BinType = Enum.BinType.Hammer
  428. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  429. c.BinType = Enum.BinType.Clone
  430. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  431. c.BinType = Enum.BinType.Grab
  432. end)
  433.  
  434. NoBuildings.Name = "NoBuildings"
  435. NoBuildings.Parent = Main4
  436. NoBuildings.BackgroundColor3 = Color3.new(1, 0.666667, 0)
  437. NoBuildings.Position = UDim2.new(0, 0, 0.29264915, 0)
  438. NoBuildings.Size = UDim2.new(0, 165, 0, 26)
  439. NoBuildings.Font = Enum.Font.Fantasy
  440. NoBuildings.Text = "No Buildings"
  441. NoBuildings.TextColor3 = Color3.new(0, 0, 0)
  442. NoBuildings.TextSize = 14
  443. NoBuildings.MouseButton1Down:connect(function()
  444. game:GetService("Workspace").Buildings:Destroy()
  445. end)
  446.  
  447. RemoveAll.Name = "RemoveAll"
  448. RemoveAll.Parent = Main4
  449. RemoveAll.BackgroundColor3 = Color3.new(1, 0.666667, 0)
  450. RemoveAll.Position = UDim2.new(0, 0, 0.461981505, 0)
  451. RemoveAll.Size = UDim2.new(0, 165, 0, 26)
  452. RemoveAll.Font = Enum.Font.Fantasy
  453. RemoveAll.Text = "Remove All"
  454. RemoveAll.TextColor3 = Color3.new(0, 0, 0)
  455. RemoveAll.TextSize = 14
  456. RemoveAll.MouseButton1Down:connect(function()
  457. game.Workspace.Cells:Remove()
  458.  
  459. game.Workspace.Museum.CaseLasers:Remove()
  460.  
  461. game.Workspace.Museum.Lights:Remove()
  462.  
  463. game.Workspace.Museum.Doors:Remove()
  464.  
  465. game.Workspace.EscapeRoutes:Remove()
  466.  
  467. for i,v in pairs(workspace.Doors:GetChildren()) do
  468. v:Destroy()
  469.  
  470. end
  471. end)
  472.  
  473. RemoveAll.MouseButton1Down:connect(function()
  474. local banklasers = game:GetService("Workspace").Banks:GetChildren()
  475. banklasers[1].Lasers:Destroy()
  476. end)
  477.  
  478. RemoveAll.MouseButton1Down:connect(function()
  479. local jewelry = game:GetService("Workspace").Jewelrys:GetChildren()
  480.  
  481. for i = 1,4 do
  482. local xd = jewelry[1].Model.BarbedWire
  483. xd:Destroy()
  484. end
  485. end)
  486.  
  487. RemoveAll.MouseButton1Down:connect(function()
  488. local banklasers = game:GetService("Workspace").Banks:GetChildren()
  489. banklasers[1].Door.Model:Destroy()
  490. end)
  491.  
  492. TextLabel_7.Parent = Main4
  493. TextLabel_7.BackgroundColor3 = Color3.new(1, 1, 1)
  494. TextLabel_7.BackgroundTransparency = 1
  495. TextLabel_7.Position = UDim2.new(0, 0, 0.632894814, 0)
  496. TextLabel_7.Size = UDim2.new(0, 165, 0, 58)
  497. TextLabel_7.Font = Enum.Font.SourceSans
  498. TextLabel_7.Text = "Remove all removes the lasers from bank , cameras from museum and removes laser from jewelery."
  499. TextLabel_7.TextColor3 = Color3.new(1, 0, 0)
  500. TextLabel_7.TextSize = 14
  501. TextLabel_7.TextWrapped = true
  502.  
  503. Main5.Name = "Main5"
  504. Main5.Parent = JailbreakGui
  505. Main5.BackgroundColor3 = Color3.new(0, 0.333333, 1)
  506. Main5.BorderSizePixel = 4
  507. Main5.Position = UDim2.new(0.76391989, 0, 0, 0)
  508. Main5.Size = UDim2.new(0, 318, 0, 189)
  509. Main5.Active = true
  510. Main5.Draggable = true
  511.  
  512. TextLabel_8.Parent = Main5
  513. TextLabel_8.BackgroundColor3 = Color3.new(1, 1, 1)
  514. TextLabel_8.BackgroundTransparency = 1
  515. TextLabel_8.Size = UDim2.new(0, 318, 0, 22)
  516. TextLabel_8.Font = Enum.Font.SciFi
  517. TextLabel_8.Text = "Teleports"
  518. TextLabel_8.TextColor3 = Color3.new(0, 1, 1)
  519. TextLabel_8.TextSize = 14
  520.  
  521. JewelryIn.Name = "JewelryIn"
  522. JewelryIn.Parent = Main5
  523. JewelryIn.BackgroundColor3 = Color3.new(1, 0.666667, 0)
  524. JewelryIn.Position = UDim2.new(0.34591195, 0, 0.169312164, 0)
  525. JewelryIn.Size = UDim2.new(0, 41, 0, 28)
  526. JewelryIn.Font = Enum.Font.Fantasy
  527. JewelryIn.Text = "Jewel in"
  528. JewelryIn.TextColor3 = Color3.new(0, 0, 0)
  529. JewelryIn.TextSize = 14
  530. JewelryIn.TextWrapped = true
  531. JewelryIn.MouseButton1Down:connect(function()
  532. for i=1,32 do
  533. wait(.08)
  534. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(133.300705, 17.9375954, 1316.42407) + Vector3.new(1,0,0)
  535. end
  536. end)
  537.  
  538. JewelryTop.Name = "JewelryTop"
  539. JewelryTop.Parent = Main5
  540. JewelryTop.BackgroundColor3 = Color3.new(1, 0.666667, 0)
  541. JewelryTop.Position = UDim2.new(0.506289303, 0, 0.169312179, 0)
  542. JewelryTop.Size = UDim2.new(0, 42, 0, 28)
  543. JewelryTop.Font = Enum.Font.Fantasy
  544. JewelryTop.Text = "Jewel top"
  545. JewelryTop.TextColor3 = Color3.new(0, 0, 0)
  546. JewelryTop.TextSize = 14
  547. JewelryTop.TextWrapped = true
  548. JewelryTop.MouseButton1Down:connect(function()
  549. for i=1,32 do
  550. wait(.08)
  551. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(101.211128, 98.6576996, 1310.54175) + Vector3.new(1,0,0)
  552. end
  553. end)
  554.  
  555. MuseumIn.Name = "MuseumIn"
  556. MuseumIn.Parent = Main5
  557. MuseumIn.BackgroundColor3 = Color3.new(1, 0.666667, 0)
  558. MuseumIn.Position = UDim2.new(0.666666627, 0, 0.169312179, 0)
  559. MuseumIn.Size = UDim2.new(0, 46, 0, 28)
  560. MuseumIn.Font = Enum.Font.Fantasy
  561. MuseumIn.Text = "Museum in"
  562. MuseumIn.TextColor3 = Color3.new(0, 0, 0)
  563. MuseumIn.TextSize = 14
  564. MuseumIn.TextWrapped = true
  565. MuseumIn.MouseButton1Down:connect(function()
  566. for i=1,32 do
  567. wait(.08)
  568. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1063.02, 117.562, 1218.757) + Vector3.new(1,0,0)
  569. end
  570. end)
  571.  
  572. MuseumOut.Name = "MuseumOut"
  573. MuseumOut.Parent = Main5
  574. MuseumOut.BackgroundColor3 = Color3.new(1, 0.666667, 0)
  575. MuseumOut.Position = UDim2.new(0.836477995, 0, 0.169312179, 0)
  576. MuseumOut.Size = UDim2.new(0, 45, 0, 28)
  577. MuseumOut.Font = Enum.Font.Fantasy
  578. MuseumOut.Text = "Museum out"
  579. MuseumOut.TextColor3 = Color3.new(0, 0, 0)
  580. MuseumOut.TextSize = 14
  581. MuseumOut.TextWrapped = true
  582. MuseumOut.MouseButton1Down:connect(function()
  583. for i=1,32 do
  584. wait(.08)
  585. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1108.02576, 101.16066, 1295.74146) + Vector3.new(1,0,0)
  586. end
  587. end)
  588.  
  589. BankFront.Name = "BankFront"
  590. BankFront.Parent = Main5
  591. BankFront.BackgroundColor3 = Color3.new(1, 0.666667, 0)
  592. BankFront.Position = UDim2.new(0.185534596, 0, 0.169312164, 0)
  593. BankFront.Size = UDim2.new(0, 41, 0, 28)
  594. BankFront.Font = Enum.Font.Fantasy
  595. BankFront.Text = "Bank out"
  596. BankFront.TextColor3 = Color3.new(0, 0, 0)
  597. BankFront.TextSize = 14
  598. BankFront.TextWrapped = true
  599. BankFront.MouseButton1Down:connect(function()
  600. for i=1,32 do
  601. wait(.08)
  602. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(9.92591476, 17.8639755, 786.788147) + Vector3.new(1,0,0)
  603. end
  604. end)
  605.  
  606. BankVault.Name = "BankVault"
  607. BankVault.Parent = Main5
  608. BankVault.BackgroundColor3 = Color3.new(1, 0.666667, 0)
  609. BankVault.Position = UDim2.new(0.022012582, 0, 0.169312164, 0)
  610. BankVault.Size = UDim2.new(0, 41, 0, 28)
  611. BankVault.Font = Enum.Font.Fantasy
  612. BankVault.Text = "Bank in"
  613. BankVault.TextColor3 = Color3.new(0, 0, 0)
  614. BankVault.TextSize = 14
  615. BankVault.TextWrapped = true
  616. BankVault.MouseButton1Down:connect(function()
  617. for i=1,32 do
  618. wait(.08)
  619. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(18.3854294, 0.765628457, 815.506348) + Vector3.new(1,0,0)
  620. end
  621. end)
  622.  
  623. MuseumTop.Name = "MuseumTop"
  624. MuseumTop.Parent = Main5
  625. MuseumTop.BackgroundColor3 = Color3.new(1, 0.666667, 0)
  626. MuseumTop.Position = UDim2.new(0.022012582, 0, 0.391534388, 0)
  627. MuseumTop.Size = UDim2.new(0, 41, 0, 28)
  628. MuseumTop.Font = Enum.Font.Fantasy
  629. MuseumTop.Text = "Museum top"
  630. MuseumTop.TextColor3 = Color3.new(0, 0, 0)
  631. MuseumTop.TextSize = 14
  632. MuseumTop.TextWrapped = true
  633. MuseumTop.MouseButton1Down:connect(function()
  634. for i=1,32 do
  635. wait(.08)
  636. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1078.45, 153.904, 1176.52) + Vector3.new(1,0,0)
  637. end
  638. end)
  639.  
  640. CrimBase1.Name = "CrimBase1"
  641. CrimBase1.Parent = Main5
  642. CrimBase1.BackgroundColor3 = Color3.new(1, 0.666667, 0)
  643. CrimBase1.Position = UDim2.new(0.185534596, 0, 0.386243403, 0)
  644. CrimBase1.Size = UDim2.new(0, 41, 0, 28)
  645. CrimBase1.Font = Enum.Font.Fantasy
  646. CrimBase1.Text = "Crim B 1"
  647. CrimBase1.TextColor3 = Color3.new(0, 0, 0)
  648. CrimBase1.TextSize = 14
  649. CrimBase1.TextWrapped = true
  650. CrimBase1.MouseButton1Down:connect(function()
  651. for i=1,32 do
  652. wait(.08)
  653. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-221.723099, 17.8924026, 1578.80261) + Vector3.new(1,0,0)
  654. end
  655. end)
  656.  
  657. CrimBase2.Name = "CrimBase2"
  658. CrimBase2.Parent = Main5
  659. CrimBase2.BackgroundColor3 = Color3.new(1, 0.666667, 0)
  660. CrimBase2.Position = UDim2.new(0.34591195, 0, 0.386243373, 0)
  661. CrimBase2.Size = UDim2.new(0, 41, 0, 28)
  662. CrimBase2.Font = Enum.Font.Fantasy
  663. CrimBase2.Text = "Crim B 2"
  664. CrimBase2.TextColor3 = Color3.new(0, 0, 0)
  665. CrimBase2.TextSize = 14
  666. CrimBase2.TextWrapped = true
  667. CrimBase2.MouseButton1Down:connect(function()
  668. for i=1,32 do
  669. wait(.08)
  670. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1650.80896, 49.863636, -1770.66626) + Vector3.new(1,0,0)
  671. end
  672. end)
  673.  
  674. DonutStore.Name = "DonutStore"
  675. DonutStore.Parent = Main5
  676. DonutStore.BackgroundColor3 = Color3.new(1, 0.666667, 0)
  677. DonutStore.Position = UDim2.new(0.506289303, 0, 0.386243403, 0)
  678. DonutStore.Size = UDim2.new(0, 42, 0, 28)
  679. DonutStore.Font = Enum.Font.Fantasy
  680. DonutStore.Text = "Donut"
  681. DonutStore.TextColor3 = Color3.new(0, 0, 0)
  682. DonutStore.TextSize = 14
  683. DonutStore.TextWrapped = true
  684. DonutStore.MouseButton1Down:connect(function()
  685. for i=1,32 do
  686. wait(.08)
  687. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(257.191101, 17.81828869, -1753.11206) + Vector3.new(1,0,0)
  688. end
  689. end)
  690.  
  691. GasStation.Name = "GasStation"
  692. GasStation.Parent = Main5
  693. GasStation.BackgroundColor3 = Color3.new(1, 0.666667, 0)
  694. GasStation.Position = UDim2.new(0.666666627, 0, 0.386243403, 0)
  695. GasStation.Size = UDim2.new(0, 46, 0, 28)
  696. GasStation.Font = Enum.Font.Fantasy
  697. GasStation.Text = "Gas Station"
  698. GasStation.TextColor3 = Color3.new(0, 0, 0)
  699. GasStation.TextSize = 14
  700. GasStation.TextWrapped = true
  701. GasStation.MouseButton1Down:connect(function()
  702. for i=1,32 do
  703. wait(.08)
  704. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1586.41101, 17.8481865, 709.37262) + Vector3.new(1,0,0)
  705. end
  706. end)
  707.  
  708. TrainSpawn.Name = "TrainSpawn"
  709. TrainSpawn.Parent = Main5
  710. TrainSpawn.BackgroundColor3 = Color3.new(1, 0.666667, 0)
  711. TrainSpawn.Position = UDim2.new(0.836477995, 0, 0.386243403, 0)
  712. TrainSpawn.Size = UDim2.new(0, 45, 0, 28)
  713. TrainSpawn.Font = Enum.Font.Fantasy
  714. TrainSpawn.Text = "Train spawn"
  715. TrainSpawn.TextColor3 = Color3.new(0, 0, 0)
  716. TrainSpawn.TextSize = 14
  717. TrainSpawn.TextWrapped = true
  718. TrainSpawn.MouseButton1Down:connect(function()
  719. for i=1,32 do
  720. wait(.08)
  721. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1954.95007, 68.0448606, -603.844116) + Vector3.new(1,0,0)
  722. end
  723. end)
  724.  
  725. PrisonYard.Name = "PrisonYard"
  726. PrisonYard.Parent = Main5
  727. PrisonYard.BackgroundColor3 = Color3.new(1, 0.666667, 0)
  728. PrisonYard.Position = UDim2.new(0.022012582, 0, 0.603174567, 0)
  729. PrisonYard.Size = UDim2.new(0, 41, 0, 28)
  730. PrisonYard.Font = Enum.Font.Fantasy
  731. PrisonYard.Text = "Prison yard"
  732. PrisonYard.TextColor3 = Color3.new(0, 0, 0)
  733. PrisonYard.TextSize = 14
  734. PrisonYard.TextWrapped = true
  735. PrisonYard.MouseButton1Down:connect(function()
  736. for i=1,32 do
  737. wait(.08)
  738. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1319.25806, 17.7999935, -1760.31873) + Vector3.new(1,0,0)
  739. end
  740. end)
  741.  
  742. PoliceBase.Name = "PoliceBase"
  743. PoliceBase.Parent = Main5
  744. PoliceBase.BackgroundColor3 = Color3.new(1, 0.666667, 0)
  745. PoliceBase.Position = UDim2.new(0.185534596, 0, 0.597883582, 0)
  746. PoliceBase.Size = UDim2.new(0, 41, 0, 28)
  747. PoliceBase.Font = Enum.Font.Fantasy
  748. PoliceBase.Text = "Police base"
  749. PoliceBase.TextColor3 = Color3.new(0, 0, 0)
  750. PoliceBase.TextSize = 14
  751. PoliceBase.TextWrapped = true
  752. PoliceBase.MouseButton1Down:connect(function()
  753. for i=1,32 do
  754. wait(.08)
  755. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1136.89868, 17.950058, -1585.59912) + Vector3.new(1,0,0)
  756. end
  757. end)
  758.  
  759. Dealership.Name = "Dealership"
  760. Dealership.Parent = Main5
  761. Dealership.BackgroundColor3 = Color3.new(1, 0.666667, 0)
  762. Dealership.Position = UDim2.new(0.34591195, 0, 0.603174567, 0)
  763. Dealership.Size = UDim2.new(0, 41, 0, 28)
  764. Dealership.Font = Enum.Font.Fantasy
  765. Dealership.Text = "Dealership"
  766. Dealership.TextColor3 = Color3.new(0, 0, 0)
  767. Dealership.TextSize = 14
  768. Dealership.TextWrapped = true
  769. Dealership.MouseButton1Down:connect(function()
  770. for i=1,32 do
  771. wait(.08)
  772. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(424.985474, 17.8676395, -1704.00525) + Vector3.new(1,0,0)
  773. end
  774. end)
  775.  
  776. HeliPad1.Name = "HeliPad1"
  777. HeliPad1.Parent = Main5
  778. HeliPad1.BackgroundColor3 = Color3.new(1, 0.666667, 0)
  779. HeliPad1.Position = UDim2.new(0.506289303, 0, 0.597883582, 0)
  780. HeliPad1.Size = UDim2.new(0, 42, 0, 28)
  781. HeliPad1.Font = Enum.Font.Fantasy
  782. HeliPad1.Text = "Helipad 1"
  783. HeliPad1.TextColor3 = Color3.new(0, 0, 0)
  784. HeliPad1.TextSize = 14
  785. HeliPad1.TextWrapped = true
  786. HeliPad1.MouseButton1Down:connect(function()
  787. for i=1,32 do
  788. wait(.08)
  789. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1172.6626, 57.6341133, -1590.24841) + Vector3.new(1,0,0)
  790. end
  791. end)
  792.  
  793. HeliPad2.Name = "HeliPad2"
  794. HeliPad2.Parent = Main5
  795. HeliPad2.BackgroundColor3 = Color3.new(1, 0.666667, 0)
  796. HeliPad2.Position = UDim2.new(0.666666627, 0, 0.597883582, 0)
  797. HeliPad2.Size = UDim2.new(0, 46, 0, 28)
  798. HeliPad2.Font = Enum.Font.Fantasy
  799. HeliPad2.Text = "Helipad 2"
  800. HeliPad2.TextColor3 = Color3.new(0, 0, 0)
  801. HeliPad2.TextSize = 14
  802. HeliPad2.TextWrapped = true
  803. HeliPad2.MouseButton1Down:connect(function()
  804. for i=1,32 do
  805. wait(.08)
  806. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(737.95105, 69.4690094, 1095.53442) + Vector3.new(1,0,0)
  807. end
  808. end)
  809.  
  810. Lamborghini.Name = "Lamborghini"
  811. Lamborghini.Parent = Main5
  812. Lamborghini.BackgroundColor3 = Color3.new(1, 0.666667, 0)
  813. Lamborghini.Position = UDim2.new(0.836477995, 0, 0.597883582, 0)
  814. Lamborghini.Size = UDim2.new(0, 45, 0, 28)
  815. Lamborghini.Font = Enum.Font.Fantasy
  816. Lamborghini.Text = "Lambo"
  817. Lamborghini.TextColor3 = Color3.new(0, 0, 0)
  818. Lamborghini.TextSize = 14
  819. Lamborghini.TextWrapped = true
  820. Lamborghini.MouseButton1Down:connect(function()
  821. for i=1,32 do
  822. wait(.08)
  823. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(146.568039, 17.6188164, 775.127197) + Vector3.new(1,0,0)
  824. end
  825. end)
  826.  
  827. Tesla.Name = "Tesla"
  828. Tesla.Parent = Main5
  829. Tesla.BackgroundColor3 = Color3.new(1, 0.666667, 0)
  830. Tesla.Position = UDim2.new(0.34591195, 0, 0.793650746, 0)
  831. Tesla.Size = UDim2.new(0, 41, 0, 28)
  832. Tesla.Font = Enum.Font.Fantasy
  833. Tesla.Text = "Tesla"
  834. Tesla.TextColor3 = Color3.new(0, 0, 0)
  835. Tesla.TextSize = 14
  836. Tesla.TextWrapped = true
  837. Tesla.MouseButton1Down:connect(function()
  838. for i=1,32 do
  839. wait(.08)
  840. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-132.424164, 17.9162769, 556.760864) + Vector3.new(1,0,0)
  841. end
  842. end)
  843.  
  844. Ferrari.Name = "Ferrari"
  845. Ferrari.Parent = Main5
  846. Ferrari.BackgroundColor3 = Color3.new(1, 0.666667, 0)
  847. Ferrari.Position = UDim2.new(0.506289303, 0, 0.788359761, 0)
  848. Ferrari.Size = UDim2.new(0, 42, 0, 28)
  849. Ferrari.Font = Enum.Font.Fantasy
  850. Ferrari.Text = "Ferrari"
  851. Ferrari.TextColor3 = Color3.new(0, 0, 0)
  852. Ferrari.TextSize = 14
  853. Ferrari.TextWrapped = true
  854. Ferrari.MouseButton1Down:connect(function()
  855. for i=1,32 do
  856. wait(.08)
  857. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1501.28687, 49.4527283, 1805.06726) + Vector3.new(1,0,0)
  858. end
  859. end)
Add Comment
Please, Sign In to add comment