OfficialArponAG

JailSmokes V1.1

Nov 26th, 2018
13,680
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 30.85 KB | None | 0 0
  1. JailbreakGui = Instance.new("ScreenGui")
  2. OpenButton = Instance.new("TextButton")
  3. CloseButton = Instance.new("TextButton")
  4. MainFrame = Instance.new("Frame")
  5. MainTitle = Instance.new("TextLabel")
  6. BankIn = Instance.new("TextButton")
  7. BankOut = Instance.new("TextButton")
  8. JewIn = Instance.new("TextButton")
  9. JewTop = Instance.new("TextButton")
  10. TeleportToPlayer = Instance.new("TextButton")
  11. PlayerUsername = Instance.new("TextBox")
  12. DonutStore = Instance.new("TextButton")
  13. GasStation = Instance.new("TextButton")
  14. CrimBase1 = Instance.new("TextButton")
  15. CrimBase2 = Instance.new("TextButton")
  16. Yard = Instance.new("TextButton")
  17. TrainSpawn = Instance.new("TextButton")
  18. Museum = Instance.new("TextButton")
  19. Lamborghini = Instance.new("TextButton")
  20. Mclaren = Instance.new("TextButton")
  21. HeliPad1 = Instance.new("TextButton")
  22. HeliPad2 = Instance.new("TextButton")
  23. Ferrari = Instance.new("TextButton")
  24. Porsche = Instance.new("TextButton")
  25. Monster = Instance.new("TextButton")
  26. Tesla = Instance.new("TextButton")
  27. Gravity = Instance.new("TextButton")
  28. Walkspeed = Instance.new("TextButton")
  29. Godmode = Instance.new("TextButton")
  30. RemoveAll = Instance.new("TextButton")
  31. Pistol = Instance.new("TextButton")
  32. NoBuildings = Instance.new("TextButton")
  33. InfAmmo = Instance.new("TextButton")
  34. InfNitro = Instance.new("TextButton")
  35. CarSpeed = Instance.new("TextButton")
  36. Shotgun = Instance.new("TextButton")
  37. Noclip = Instance.new("TextButton")
  38. WelcomeFrame = Instance.new("Frame")
  39. WelcomeTitle = Instance.new("TextLabel")
  40. welcome = Instance.new("TextLabel")
  41. enjoy = Instance.new("TextLabel")
  42. pressstart = Instance.new("TextLabel")
  43. createdby = Instance.new("TextLabel")
  44. StartButton = Instance.new("TextButton")
  45.  
  46. JailbreakGui.Name = "JailbreakGui"
  47. JailbreakGui.Parent = game.CoreGui
  48.  
  49. OpenButton.Name = "OpenButton"
  50. OpenButton.Parent = JailbreakGui
  51. OpenButton.Visible = false
  52. OpenButton.BackgroundColor3 = Color3.new(1, 1, 1)
  53. OpenButton.BorderSizePixel = 0
  54. OpenButton.Position = UDim2.new(0, 0, 0.647509575, 0)
  55. OpenButton.Size = UDim2.new(0, 129, 0, 50)
  56. OpenButton.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
  57. OpenButton.Font = Enum.Font.SciFi
  58. OpenButton.FontSize = Enum.FontSize.Size32
  59. OpenButton.Text = "Open"
  60. OpenButton.TextColor3 = Color3.new(1, 1, 1)
  61. OpenButton.TextSize = 30
  62. OpenButton.MouseButton1Down:connect(function()
  63.     MainFrame.Visible = true
  64.     CloseButton.Visible = true
  65.     OpenButton.Visible = false
  66. end)
  67.  
  68. CloseButton.Name = "CloseButton"
  69. CloseButton.Parent = JailbreakGui
  70. CloseButton.Visible = false
  71. CloseButton.BackgroundColor3 = Color3.new(1, 1, 1)
  72. CloseButton.BorderSizePixel = 0
  73. CloseButton.Position = UDim2.new(0, 0, 0.647509575, 0)
  74. CloseButton.Size = UDim2.new(0, 129, 0, 50)
  75. CloseButton.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
  76. CloseButton.Font = Enum.Font.SciFi
  77. CloseButton.FontSize = Enum.FontSize.Size32
  78. CloseButton.Text = "Close"
  79. CloseButton.TextColor3 = Color3.new(1, 1, 1)
  80. CloseButton.TextSize = 30
  81. CloseButton.MouseButton1Down:connect(function()
  82.     MainFrame.Visible = false
  83.     CloseButton.Visible = false
  84.     OpenButton.Visible = true
  85. end)
  86.  
  87. MainFrame.Name = "MainFrame"
  88. MainFrame.Parent = JailbreakGui
  89. MainFrame.Visible = false
  90. MainFrame.BackgroundColor3 = Color3.new(0, 0.666667, 1)
  91. MainFrame.BorderSizePixel = 0
  92. MainFrame.Position = UDim2.new(0.204892993, 0, 0.0740740746, 0)
  93. MainFrame.Size = UDim2.new(0, 692, 0, 556)
  94. MainFrame.Active = true
  95. MainFrame.Draggable = true
  96.  
  97. MainTitle.Name = "MainTitle"
  98. MainTitle.Parent = MainFrame
  99. MainTitle.BackgroundColor3 = Color3.new(0, 0.333333, 1)
  100. MainTitle.BorderSizePixel = 0
  101. MainTitle.Size = UDim2.new(0, 692, 0, 50)
  102. MainTitle.Font = Enum.Font.SciFi
  103. MainTitle.FontSize = Enum.FontSize.Size48
  104. MainTitle.Text = "Jailbreak Smokes V1.1! | By Sean Blackwell."
  105. MainTitle.TextColor3 = Color3.new(0.333333, 1, 0)
  106. MainTitle.TextSize = 40
  107. MainTitle.TextWrapped = true
  108.  
  109. BankIn.Name = "Bank In"
  110. BankIn.Parent = MainFrame
  111. BankIn.BackgroundColor3 = Color3.new(0, 0.333333, 1)
  112. BankIn.BorderSizePixel = 0
  113. BankIn.Position = UDim2.new(0.0186653771, 0, 0.108619466, 0)
  114. BankIn.Size = UDim2.new(0, 125, 0, 50)
  115. BankIn.Font = Enum.Font.SciFi
  116. BankIn.FontSize = Enum.FontSize.Size32
  117. BankIn.Text = "Bank In"
  118. BankIn.TextColor3 = Color3.new(1, 1, 1)
  119. BankIn.TextSize = 30
  120. BankIn.MouseButton1Down:connect(function()
  121.     for i=1,32 do
  122.         wait(.08)
  123.         game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(18.3854294, 0.765628457, 815.506348) + Vector3.new(1,0,0)
  124.     end
  125. end)
  126.  
  127. BankOut.Name = "Bank Out"
  128. BankOut.Parent = MainFrame
  129. BankOut.BackgroundColor3 = Color3.new(0, 0.333333, 1)
  130. BankOut.BorderSizePixel = 0
  131. BankOut.Position = UDim2.new(0.211842567, 0, 0.108619466, 0)
  132. BankOut.Size = UDim2.new(0, 125, 0, 50)
  133. BankOut.Font = Enum.Font.SciFi
  134. BankOut.FontSize = Enum.FontSize.Size32
  135. BankOut.Text = "Bank Out"
  136. BankOut.TextColor3 = Color3.new(1, 1, 1)
  137. BankOut.TextSize = 30
  138. BankOut.MouseButton1Down:connect(function()
  139.     for i=1,32 do
  140.         wait(.08)
  141.         game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(9.92591476, 17.8639755, 786.788147) + Vector3.new(1,0,0)
  142.     end
  143. end)
  144.  
  145. JewIn.Name = "Jew In"
  146. JewIn.Parent = MainFrame
  147. JewIn.BackgroundColor3 = Color3.new(0, 0.333333, 1)
  148. JewIn.BorderSizePixel = 0
  149. JewIn.Position = UDim2.new(0.602293313, 0, 0.108619452, 0)
  150. JewIn.Size = UDim2.new(0, 125, 0, 50)
  151. JewIn.Font = Enum.Font.SciFi
  152. JewIn.FontSize = Enum.FontSize.Size32
  153. JewIn.Text = "Jew In"
  154. JewIn.TextColor3 = Color3.new(1, 1, 1)
  155. JewIn.TextSize = 30
  156. JewIn.MouseButton1Down:connect(function()
  157.     for i=1,32 do
  158.         wait(.08)
  159.         game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(133.300705, 17.9375954, 1316.42407) + Vector3.new(1,0,0)
  160.     end
  161. end)
  162.  
  163. JewTop.Name = "Jew Top"
  164. JewTop.Parent = MainFrame
  165. JewTop.BackgroundColor3 = Color3.new(0, 0.333333, 1)
  166. JewTop.BorderSizePixel = 0
  167. JewTop.Position = UDim2.new(0.408104658, 0, 0.108069658, 0)
  168. JewTop.Size = UDim2.new(0, 125, 0, 50)
  169. JewTop.Font = Enum.Font.SciFi
  170. JewTop.FontSize = Enum.FontSize.Size32
  171. JewTop.Text = "Jew Top"
  172. JewTop.TextColor3 = Color3.new(1, 1, 1)
  173. JewTop.TextSize = 30
  174. JewTop.MouseButton1Down:connect(function()
  175.     for i=1,32 do
  176.         wait(.08)
  177.         game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(101.211128, 98.6576996, 1310.54175) + Vector3.new(1,0,0)
  178.     end
  179. end)
  180.  
  181. TeleportToPlayer.Name = "Teleport To Player"
  182. TeleportToPlayer.Parent = MainFrame
  183. TeleportToPlayer.BackgroundColor3 = Color3.new(0, 0.333333, 1)
  184. TeleportToPlayer.BorderSizePixel = 0
  185. TeleportToPlayer.Position = UDim2.new(0.0173410401, 0, 0.888489187, 0)
  186. TeleportToPlayer.Size = UDim2.new(0, 667, 0, 52)
  187. TeleportToPlayer.Font = Enum.Font.SciFi
  188. TeleportToPlayer.FontSize = Enum.FontSize.Size48
  189. TeleportToPlayer.Text = "Teleport To Player"
  190. TeleportToPlayer.TextColor3 = Color3.new(1, 0, 0)
  191. TeleportToPlayer.TextSize = 40
  192. TeleportToPlayer.MouseButton1Down:connect(function()
  193.     local tp_namedplayer = PlayerUsername.Text
  194.     local tp_player = game:GetService("Players")[tp_namedplayer]
  195.     local PLR = game:GetService("Players").LocalPlayer
  196.     local p = PlayerUsername.Text
  197.    
  198.     if tp_player then
  199.             for i = 1,20 do
  200.         wait()
  201.         PLR.Character.HumanoidRootPart.CFrame = tp_player.Character.HumanoidRootPart.CFrame + Vector3.new(0, 3, 0)
  202.         end
  203.     end
  204. end)
  205.  
  206. PlayerUsername.Name = "Player Username"
  207. PlayerUsername.Parent = MainFrame
  208. PlayerUsername.BackgroundColor3 = Color3.new(0, 0.333333, 1)
  209. PlayerUsername.BorderSizePixel = 0
  210. PlayerUsername.Position = UDim2.new(0.0187861267, 0, 0.775179863, 0)
  211. PlayerUsername.Size = UDim2.new(0, 666, 0, 52)
  212. PlayerUsername.Font = Enum.Font.Bodoni
  213. PlayerUsername.FontSize = Enum.FontSize.Size48
  214. PlayerUsername.Text = "Player Username"
  215. PlayerUsername.TextColor3 = Color3.new(1, 1, 0)
  216. PlayerUsername.TextSize = 40
  217.  
  218. DonutStore.Name = "Donut Store"
  219. DonutStore.Parent = MainFrame
  220. DonutStore.BackgroundColor3 = Color3.new(0, 0.333333, 1)
  221. DonutStore.BorderSizePixel = 0
  222. DonutStore.Position = UDim2.new(0.800577998, 0, 0.107913673, 0)
  223. DonutStore.Size = UDim2.new(0, 125, 0, 50)
  224. DonutStore.Font = Enum.Font.SciFi
  225. DonutStore.FontSize = Enum.FontSize.Size32
  226. DonutStore.Text = "Donut Store"
  227. DonutStore.TextColor3 = Color3.new(1, 1, 1)
  228. DonutStore.TextScaled = true
  229. DonutStore.TextSize = 30
  230. DonutStore.TextWrapped = true
  231. DonutStore.MouseButton1Down:connect(function()
  232.     for i=1,32 do
  233.         wait(.08)
  234.         game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(257.191101, 17.81828869, -1753.11206) + Vector3.new(1,0,0)
  235.     end
  236. end)
  237.  
  238. GasStation.Name = "Gas Station"
  239. GasStation.Parent = MainFrame
  240. GasStation.BackgroundColor3 = Color3.new(0, 0.333333, 1)
  241. GasStation.BorderSizePixel = 0
  242. GasStation.Position = UDim2.new(0.0187860727, 0, 0.215827346, 0)
  243. GasStation.Size = UDim2.new(0, 125, 0, 50)
  244. GasStation.Font = Enum.Font.SciFi
  245. GasStation.FontSize = Enum.FontSize.Size32
  246. GasStation.Text = "Gas Station"
  247. GasStation.TextColor3 = Color3.new(1, 1, 1)
  248. GasStation.TextScaled = true
  249. GasStation.TextSize = 30
  250. GasStation.TextWrapped = true
  251. GasStation.MouseButton1Down:connect(function()
  252.     for i=1,32 do
  253.         wait(.08)
  254.         game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1586.41101, 17.8481865, 709.37262) + Vector3.new(1,0,0)
  255.     end
  256. end)
  257.  
  258. CrimBase1.Name = "Crim Base 1"
  259. CrimBase1.Parent = MainFrame
  260. CrimBase1.BackgroundColor3 = Color3.new(0, 0.333333, 1)
  261. CrimBase1.BorderSizePixel = 0
  262. CrimBase1.Position = UDim2.new(0.212427691, 0, 0.215827346, 0)
  263. CrimBase1.Size = UDim2.new(0, 125, 0, 50)
  264. CrimBase1.Font = Enum.Font.SciFi
  265. CrimBase1.FontSize = Enum.FontSize.Size32
  266. CrimBase1.Text = "Crim Base 1"
  267. CrimBase1.TextColor3 = Color3.new(1, 1, 1)
  268. CrimBase1.TextScaled = true
  269. CrimBase1.TextSize = 30
  270. CrimBase1.TextWrapped = true
  271. CrimBase1.MouseButton1Down:connect(function()
  272.     for i=1,32 do
  273.         wait(.08)
  274.         game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-221.723099, 17.8924026, 1578.80261) + Vector3.new(1,0,0)
  275.     end
  276. end)
  277.  
  278. CrimBase2.Name = "Crim Base 2"
  279. CrimBase2.Parent = MainFrame
  280. CrimBase2.BackgroundColor3 = Color3.new(0, 0.333333, 1)
  281. CrimBase2.BorderSizePixel = 0
  282. CrimBase2.Position = UDim2.new(0.407514393, 0, 0.215827346, 0)
  283. CrimBase2.Size = UDim2.new(0, 125, 0, 50)
  284. CrimBase2.Font = Enum.Font.SciFi
  285. CrimBase2.FontSize = Enum.FontSize.Size32
  286. CrimBase2.Text = "Crim Base 2"
  287. CrimBase2.TextColor3 = Color3.new(1, 1, 1)
  288. CrimBase2.TextScaled = true
  289. CrimBase2.TextSize = 30
  290. CrimBase2.TextWrapped = true
  291. CrimBase2.MouseButton1Down:connect(function()
  292.     for i=1,32 do
  293.         wait(.08)
  294.         game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1650.80896, 49.863636, -1770.66626) + Vector3.new(1,0,0)
  295.     end
  296. end)
  297.  
  298. Yard.Name = "Yard"
  299. Yard.Parent = MainFrame
  300. Yard.BackgroundColor3 = Color3.new(0, 0.333333, 1)
  301. Yard.BorderSizePixel = 0
  302. Yard.Position = UDim2.new(0.602601111, 0, 0.215827346, 0)
  303. Yard.Size = UDim2.new(0, 125, 0, 50)
  304. Yard.Font = Enum.Font.SciFi
  305. Yard.FontSize = Enum.FontSize.Size32
  306. Yard.Text = "Yard"
  307. Yard.TextColor3 = Color3.new(1, 1, 1)
  308. Yard.TextSize = 30
  309. Yard.MouseButton1Down:connect(function()
  310.     for i=1,32 do
  311.         wait(.08)
  312.         game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1319.25806, 17.7999935, -1760.31873) + Vector3.new(1,0,0)
  313.     end
  314. end)
  315.  
  316. TrainSpawn.Name = "Train Spawn"
  317. TrainSpawn.Parent = MainFrame
  318. TrainSpawn.BackgroundColor3 = Color3.new(0, 0.333333, 1)
  319. TrainSpawn.BorderSizePixel = 0
  320. TrainSpawn.Position = UDim2.new(0.800577998, 0, 0.215827346, 0)
  321. TrainSpawn.Size = UDim2.new(0, 125, 0, 50)
  322. TrainSpawn.Font = Enum.Font.SciFi
  323. TrainSpawn.FontSize = Enum.FontSize.Size32
  324. TrainSpawn.Text = "Train Spawn"
  325. TrainSpawn.TextColor3 = Color3.new(1, 1, 1)
  326. TrainSpawn.TextScaled = true
  327. TrainSpawn.TextSize = 30
  328. TrainSpawn.TextWrapped = true
  329. TrainSpawn.MouseButton1Down:connect(function()
  330.     for i=1,32 do
  331.         wait(.08)
  332.         game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1954.95007, 68.0448606, -603.844116) + Vector3.new(1,0,0)
  333.     end
  334. end)
  335.  
  336. Museum.Name = "Museum"
  337. Museum.Parent = MainFrame
  338. Museum.BackgroundColor3 = Color3.new(0, 0.333333, 1)
  339. Museum.BorderSizePixel = 0
  340. Museum.Position = UDim2.new(0.0187860727, 0, 0.325539589, 0)
  341. Museum.Size = UDim2.new(0, 125, 0, 50)
  342. Museum.Font = Enum.Font.SciFi
  343. Museum.FontSize = Enum.FontSize.Size32
  344. Museum.Text = "Museum"
  345. Museum.TextColor3 = Color3.new(1, 1, 1)
  346. Museum.TextSize = 30
  347. Museum.MouseButton1Down:connect(function()
  348.     for i = 1,45 do
  349. wait(.08)
  350. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1063.02, 117.562, 1218.757) + Vector3.new(1,0,0)
  351. end
  352. end)
  353.  
  354. Lamborghini.Name = "Lamborghini"
  355. Lamborghini.Parent = MainFrame
  356. Lamborghini.BackgroundColor3 = Color3.new(0, 0.333333, 1)
  357. Lamborghini.BorderSizePixel = 0
  358. Lamborghini.Position = UDim2.new(0.212427691, 0, 0.325539589, 0)
  359. Lamborghini.Size = UDim2.new(0, 125, 0, 50)
  360. Lamborghini.Font = Enum.Font.SciFi
  361. Lamborghini.FontSize = Enum.FontSize.Size32
  362. Lamborghini.Text = "Lamborghini"
  363. Lamborghini.TextColor3 = Color3.new(1, 1, 1)
  364. Lamborghini.TextScaled = true
  365. Lamborghini.TextSize = 30
  366. Lamborghini.TextWrapped = true
  367. Lamborghini.MouseButton1Down:connect(function()
  368.     for i=1,32 do
  369.         wait(.08)
  370.         game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(146.568039, 17.6188164, 775.127197) + Vector3.new(1,0,0)
  371.     end
  372. end)
  373.  
  374. Mclaren.Name = "Mclaren"
  375. Mclaren.Parent = MainFrame
  376. Mclaren.BackgroundColor3 = Color3.new(0, 0.333333, 1)
  377. Mclaren.BorderSizePixel = 0
  378. Mclaren.Position = UDim2.new(0.407514393, 0, 0.325539589, 0)
  379. Mclaren.Size = UDim2.new(0, 125, 0, 50)
  380. Mclaren.Font = Enum.Font.SciFi
  381. Mclaren.FontSize = Enum.FontSize.Size32
  382. Mclaren.Text = "Police Station"
  383. Mclaren.TextColor3 = Color3.new(1, 1, 1)
  384. Mclaren.TextSize = 30
  385. Mclaren.TextScaled = true
  386. Mclaren.TextWrapped = true
  387. Mclaren.MouseButton1Down:connect(function()
  388.     for i=1,32 do
  389.         wait(.08)
  390.         game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1136.89868, 17.950058, -1585.59912) + Vector3.new(1,0,0)
  391.     end
  392. end)
  393.  
  394. HeliPad1.Name = "Heli Pad 1"
  395. HeliPad1.Parent = MainFrame
  396. HeliPad1.BackgroundColor3 = Color3.new(0, 0.333333, 1)
  397. HeliPad1.BorderSizePixel = 0
  398. HeliPad1.Position = UDim2.new(0.602601111, 0, 0.325539589, 0)
  399. HeliPad1.Size = UDim2.new(0, 125, 0, 50)
  400. HeliPad1.Font = Enum.Font.SciFi
  401. HeliPad1.FontSize = Enum.FontSize.Size32
  402. HeliPad1.Text = "Heli Pad 1"
  403. HeliPad1.TextColor3 = Color3.new(1, 1, 1)
  404. HeliPad1.TextSize = 30
  405. HeliPad1.MouseButton1Down:connect(function()
  406.     for i=1,32 do
  407.         wait(.08)
  408.         game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1172.6626, 57.6341133, -1590.24841) + Vector3.new(1,0,0)
  409.     end
  410. end)
  411.  
  412. HeliPad2.Name = "Heli Pad 2"
  413. HeliPad2.Parent = MainFrame
  414. HeliPad2.BackgroundColor3 = Color3.new(0, 0.333333, 1)
  415. HeliPad2.BorderSizePixel = 0
  416. HeliPad2.Position = UDim2.new(0.800577998, 0, 0.325539589, 0)
  417. HeliPad2.Size = UDim2.new(0, 125, 0, 50)
  418. HeliPad2.Font = Enum.Font.SciFi
  419. HeliPad2.FontSize = Enum.FontSize.Size32
  420. HeliPad2.Text = "Heli Pad 2"
  421. HeliPad2.TextColor3 = Color3.new(1, 1, 1)
  422. HeliPad2.TextSize = 30
  423. HeliPad2.MouseButton1Down:connect(function()
  424.     for i=1,32 do
  425.         wait(.08)
  426.         game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(737.95105, 69.4690094, 1095.53442) + Vector3.new(1,0,0)
  427.     end
  428. end)
  429.  
  430. Ferrari.Name = "Ferrari"
  431. Ferrari.Parent = MainFrame
  432. Ferrari.BackgroundColor3 = Color3.new(0, 0.333333, 1)
  433. Ferrari.BorderSizePixel = 0
  434. Ferrari.Position = UDim2.new(0.0187860727, 0, 0.437050372, 0)
  435. Ferrari.Size = UDim2.new(0, 125, 0, 50)
  436. Ferrari.Font = Enum.Font.SciFi
  437. Ferrari.FontSize = Enum.FontSize.Size32
  438. Ferrari.Text = "Ferrari"
  439. Ferrari.TextColor3 = Color3.new(1, 1, 1)
  440. Ferrari.TextSize = 30
  441. Ferrari.MouseButton1Down:connect(function()
  442.     for i=1,32 do
  443.         wait(.08)
  444.         game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1501.28687, 49.4527283, 1805.06726) + Vector3.new(1,0,0)
  445.     end
  446. end)
  447.  
  448. Porsche.Name = "Porsche"
  449. Porsche.Parent = MainFrame
  450. Porsche.BackgroundColor3 = Color3.new(0, 0.333333, 1)
  451. Porsche.BorderSizePixel = 0
  452. Porsche.Position = UDim2.new(0.212427691, 0, 0.437050372, 0)
  453. Porsche.Size = UDim2.new(0, 125, 0, 50)
  454. Porsche.Font = Enum.Font.SciFi
  455. Porsche.FontSize = Enum.FontSize.Size32
  456. Porsche.Text = "Porsche"
  457. Porsche.TextColor3 = Color3.new(1, 1, 1)
  458. Porsche.TextSize = 30
  459. Porsche.MouseButton1Down:connect(function()
  460.     for i=1,32 do
  461.         wait(.08)
  462.         game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1108.02576, 101.16066, 1295.74146) + Vector3.new(1,0,0)
  463.     end
  464. end)
  465.  
  466. Monster.Name = "Monster"
  467. Monster.Parent = MainFrame
  468. Monster.BackgroundColor3 = Color3.new(0, 0.333333, 1)
  469. Monster.BorderSizePixel = 0
  470. Monster.Position = UDim2.new(0.407514393, 0, 0.437050372, 0)
  471. Monster.Size = UDim2.new(0, 125, 0, 50)
  472. Monster.Font = Enum.Font.SciFi
  473. Monster.FontSize = Enum.FontSize.Size32
  474. Monster.Text = "Monster"
  475. Monster.TextColor3 = Color3.new(1, 1, 1)
  476. Monster.TextSize = 30
  477. Monster.MouseButton1Down:connect(function()
  478.     for i=1,32 do
  479.         wait(.08)
  480.         game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(424.985474, 17.8676395, -1704.00525) + Vector3.new(1,0,0)
  481.     end
  482. end)
  483.  
  484. Tesla.Name = "Tesla"
  485. Tesla.Parent = MainFrame
  486. Tesla.BackgroundColor3 = Color3.new(0, 0.333333, 1)
  487. Tesla.BorderSizePixel = 0
  488. Tesla.Position = UDim2.new(0.602601111, 0, 0.437050372, 0)
  489. Tesla.Size = UDim2.new(0, 125, 0, 50)
  490. Tesla.Font = Enum.Font.SciFi
  491. Tesla.FontSize = Enum.FontSize.Size32
  492. Tesla.Text = "Tesla"
  493. Tesla.TextColor3 = Color3.new(1, 1, 1)
  494. Tesla.TextSize = 30
  495. Tesla.MouseButton1Down:connect(function()
  496.     for i=1,32 do
  497.         wait(.08)
  498.         game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-132.424164, 17.9162769, 556.760864) + Vector3.new(1,0,0)
  499.     end
  500. end)
  501.  
  502. Gravity.Name = "Gravity"
  503. Gravity.Parent = MainFrame
  504. Gravity.BackgroundColor3 = Color3.new(0, 0.333333, 1)
  505. Gravity.BorderSizePixel = 0
  506. Gravity.Position = UDim2.new(0.800577998, 0, 0.437050372, 0)
  507. Gravity.Size = UDim2.new(0, 125, 0, 50)
  508. Gravity.Font = Enum.Font.SciFi
  509. Gravity.FontSize = Enum.FontSize.Size32
  510. Gravity.Text = "Gravity (N)"
  511. Gravity.TextColor3 = Color3.new(1, 1, 1)
  512. Gravity.TextSize = 30
  513. Gravity.TextWrapped = true
  514. Gravity.MouseButton1Down:connect(function()
  515. if Gravity == true then
  516. Gravity = false
  517. game.workspace.Gravity = 196.2
  518. else
  519. Gravity = true
  520. game.workspace.Gravity = 45
  521. end
  522. end)
  523.  
  524. Walkspeed.Name = "Walkspeed"
  525. Walkspeed.Parent = MainFrame
  526. Walkspeed.BackgroundColor3 = Color3.new(0, 0.333333, 1)
  527. Walkspeed.BorderSizePixel = 0
  528. Walkspeed.Position = UDim2.new(0.0187861044, 0, 0.544964015, 0)
  529. Walkspeed.Size = UDim2.new(0, 125, 0, 50)
  530. Walkspeed.Font = Enum.Font.SciFi
  531. Walkspeed.FontSize = Enum.FontSize.Size32
  532. Walkspeed.Text = "Walkspeed (K)"
  533. Walkspeed.TextColor3 = Color3.new(1, 1, 1)
  534. Walkspeed.TextScaled = true
  535. Walkspeed.TextSize = 30
  536. Walkspeed.TextWrapped = true
  537. Walkspeed.MouseButton1Down:connect(function()
  538.         local walkspeedplayer = game:GetService("Players").LocalPlayer
  539.     local walkspeedmouse = walkspeedplayer:GetMouse()
  540.    
  541.     local walkspeedenabled = false
  542.    
  543.     function x_walkspeed(key)
  544.         if (key == "k") then
  545.             if walkspeedenabled == false then
  546.                 _G.WS = 200;
  547.                 local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
  548.                 Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  549.                 Humanoid.WalkSpeed = _G.WS;
  550.                 end)
  551.                 Humanoid.WalkSpeed = _G.WS;
  552.                
  553.                 walkspeedenabled = true
  554.             elseif walkspeedenabled == true then
  555.                 _G.WS = 20;
  556.                 local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
  557.                 Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  558.                 Humanoid.WalkSpeed = _G.WS;
  559.                 end)
  560.                 Humanoid.WalkSpeed = _G.WS;
  561.                
  562.                 walkspeedenabled = false
  563.             end
  564.         end
  565.     end
  566.    
  567.     walkspeedmouse.KeyDown:connect(x_walkspeed)
  568.    
  569. end)
  570.  
  571. Godmode.Name = "Godmode"
  572. Godmode.Parent = MainFrame
  573. Godmode.BackgroundColor3 = Color3.new(0, 0.333333, 1)
  574. Godmode.BorderSizePixel = 0
  575. Godmode.Position = UDim2.new(0.21242772, 0, 0.544964015, 0)
  576. Godmode.Size = UDim2.new(0, 125, 0, 50)
  577. Godmode.Font = Enum.Font.SciFi
  578. Godmode.FontSize = Enum.FontSize.Size32
  579. Godmode.Text = "Godmode"
  580. Godmode.TextColor3 = Color3.new(1, 1, 1)
  581. Godmode.TextSize = 30
  582. Godmode.MouseButton1Down:connect(function()
  583.     game:GetService("Players").LocalPlayer.Character.Humanoid.Name = 1
  584. local l = game:GetService("Players").LocalPlayer.Character["1"]:Clone()
  585. l.Parent = game:GetService("Players").LocalPlayer.Character
  586. l.Name = "Humanoid"
  587. wait(0.1)
  588. game:GetService("Players").LocalPlayer.Character["1"]:Destroy()
  589. game:GetService("Workspace").CurrentCamera.CameraSubject = game:GetService("Players").LocalPlayer.Character
  590. game:GetService("Players").LocalPlayer.Character.Animate.Disabled = true
  591. wait(0.1)
  592. game:GetService("Players").LocalPlayer.Character.Animate.Disabled = false
  593. game:GetService("Players").LocalPlayer.Character.Humanoid.DisplayDistanceType = "None"
  594. end)
  595.  
  596. RemoveAll.Name = "Remove All"
  597. RemoveAll.Parent = MainFrame
  598. RemoveAll.BackgroundColor3 = Color3.new(0, 0.333333, 1)
  599. RemoveAll.BorderSizePixel = 0
  600. RemoveAll.Position = UDim2.new(0.407514423, 0, 0.544964015, 0)
  601. RemoveAll.Size = UDim2.new(0, 125, 0, 50)
  602. RemoveAll.Font = Enum.Font.SciFi
  603. RemoveAll.FontSize = Enum.FontSize.Size32
  604. RemoveAll.Text = "Remove All"
  605. RemoveAll.TextColor3 = Color3.new(1, 1, 1)
  606. RemoveAll.TextScaled = true
  607. RemoveAll.TextSize = 30
  608. RemoveAll.TextWrapped = true
  609. RemoveAll.MouseButton1Down:connect(function()
  610.        
  611.         game.Workspace.Museum.CaseLasers:Remove()
  612.    
  613.     game.Workspace.Museum.Lights:Remove()
  614.    
  615.     game.Workspace.Museum.Doors:Remove()
  616.    
  617.     game.Workspace.EscapeRoutes:Remove()   
  618.    
  619.         game.Workspace.Cells:Remove()
  620.    
  621.     game.Workspace.EscapeRoutes:Remove()
  622.    
  623.     for i,v in pairs(workspace.Doors:GetChildren()) do
  624.     v:Destroy()
  625.    
  626.     end
  627. end)
  628.  
  629. RemoveAll.MouseButton1Down:connect(function()
  630.     local banklasers = game:GetService("Workspace").Banks:GetChildren()
  631.     banklasers[1].Lasers:Destroy()
  632. end)
  633.  
  634. RemoveAll.MouseButton1Down:connect(function()
  635. local jewelry = game:GetService("Workspace").Jewelrys:GetChildren()
  636.    
  637.     for i = 1,4 do
  638.     local xd = jewelry[1].Model.BarbedWire
  639.     xd:Destroy()
  640.     end
  641. end)
  642.  
  643. RemoveAll.MouseButton1Down:connect(function()
  644.     local banklasers = game:GetService("Workspace").Banks:GetChildren()
  645.     banklasers[1].Door.Model:Destroy()
  646. end)
  647.  
  648. Pistol.Name = "Pistol"
  649. Pistol.Parent = MainFrame
  650. Pistol.BackgroundColor3 = Color3.new(0, 0.333333, 1)
  651. Pistol.BorderSizePixel = 0
  652. Pistol.Position = UDim2.new(0.800577998, 0, 0.654676318, 0)
  653. Pistol.Size = UDim2.new(0, 125, 0, 50)
  654. Pistol.Font = Enum.Font.SciFi
  655. Pistol.FontSize = Enum.FontSize.Size32
  656. Pistol.Text = "Pistol"
  657. Pistol.TextColor3 = Color3.new(1, 1, 1)
  658. Pistol.TextSize = 30
  659. Pistol.MouseButton1Down:connect(function()
  660.     local hit = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  661.  
  662.     a = Instance.new("Part", workspace)
  663.     a.Anchored = true
  664.     a.Position = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  665.     a.CanCollide = false
  666.    
  667.         for i, v in pairs(game:GetService("Workspace").Givers:GetChildren()) do
  668.     if v.Name == "Station" then
  669.     for a, b in pairs(v:GetChildren()) do
  670.     if b:IsA("StringValue") then
  671.     if b.Value == "Pistol" then
  672.     v.CFrame = CFrame.new(hit)
  673.     end
  674.     end
  675.     end
  676.     end
  677.     end
  678. end)
  679.  
  680. NoBuildings.Name = "No Buildings"
  681. NoBuildings.Parent = MainFrame
  682. NoBuildings.BackgroundColor3 = Color3.new(0, 0.333333, 1)
  683. NoBuildings.BorderSizePixel = 0
  684. NoBuildings.Position = UDim2.new(0.800577998, 0, 0.544964075, 0)
  685. NoBuildings.Size = UDim2.new(0, 125, 0, 50)
  686. NoBuildings.Font = Enum.Font.SciFi
  687. NoBuildings.FontSize = Enum.FontSize.Size32
  688. NoBuildings.Text = "No Buildings"
  689. NoBuildings.TextColor3 = Color3.new(1, 1, 1)
  690. NoBuildings.TextScaled = true
  691. NoBuildings.TextSize = 30
  692. NoBuildings.TextWrapped = true
  693. NoBuildings.MouseButton1Down:connect(function()
  694.     game:GetService("Workspace").Buildings:Destroy()
  695. end)
  696.  
  697. InfAmmo.Name = "Inf Ammo"
  698. InfAmmo.Parent = MainFrame
  699. InfAmmo.BackgroundColor3 = Color3.new(0, 0.333333, 1)
  700. InfAmmo.BorderSizePixel = 0
  701. InfAmmo.Position = UDim2.new(0.0187860727, 0, 0.654676318, 0)
  702. InfAmmo.Size = UDim2.new(0, 125, 0, 50)
  703. InfAmmo.Font = Enum.Font.SciFi
  704. InfAmmo.FontSize = Enum.FontSize.Size32
  705. InfAmmo.Text = "Inf Ammo"
  706. InfAmmo.TextColor3 = Color3.new(1, 1, 1)
  707. InfAmmo.TextSize = 30
  708. InfAmmo.MouseButton1Down:connect(function()
  709.     game:GetService("Players").LocalPlayer.PlayerGui.MainGui.Ammo.Current:Destroy()
  710. end)
  711.  
  712. InfNitro.Name = "Inf Nitro"
  713. InfNitro.Parent = MainFrame
  714. InfNitro.BackgroundColor3 = Color3.new(0, 0.333333, 1)
  715. InfNitro.BorderSizePixel = 0
  716. InfNitro.Position = UDim2.new(0.212427691, 0, 0.654676318, 0)
  717. InfNitro.Size = UDim2.new(0, 125, 0, 50)
  718. InfNitro.Font = Enum.Font.SciFi
  719. InfNitro.FontSize = Enum.FontSize.Size32
  720. InfNitro.Text = "Inf Nitro"
  721. InfNitro.TextColor3 = Color3.new(1, 1, 1)
  722. InfNitro.TextSize = 30
  723. InfNitro.MouseButton1Down:connect(function()
  724.     game:GetService('Players').LocalPlayer.PlayerGui.MainGui.Nitro.Name = "4564756"
  725.     game:GetService('Players').LocalPlayer.PlayerGui.ProductGui.Nitro:ClearAllChildren()
  726. end)
  727.  
  728. CarSpeed.Name = "Car Speed"
  729. CarSpeed.Parent = MainFrame
  730. CarSpeed.BackgroundColor3 = Color3.new(0, 0.333333, 1)
  731. CarSpeed.BorderSizePixel = 0
  732. CarSpeed.Position = UDim2.new(0.407514393, 0, 0.654676318, 0)
  733. CarSpeed.Size = UDim2.new(0, 125, 0, 50)
  734. CarSpeed.Font = Enum.Font.SciFi
  735. CarSpeed.FontSize = Enum.FontSize.Size32
  736. CarSpeed.Text = "AFK Farm GUI"
  737. CarSpeed.TextColor3 = Color3.new(1, 1, 1)
  738. CarSpeed.TextWrapped = true
  739. CarSpeed.TextScaled = true
  740. CarSpeed.TextSize = 30
  741. CarSpeed.MouseButton1Down:connect(function()
  742.     loadstring(game:GetObjects("rbxassetid://1461971147")[1].Source)()
  743. end)
  744.  
  745. Shotgun.Name = "Shotgun"
  746. Shotgun.Parent = MainFrame
  747. Shotgun.BackgroundColor3 = Color3.new(0, 0.333333, 1)
  748. Shotgun.BorderSizePixel = 0
  749. Shotgun.Position = UDim2.new(0.602601111, 0, 0.654676318, 0)
  750. Shotgun.Size = UDim2.new(0, 125, 0, 50)
  751. Shotgun.Font = Enum.Font.SciFi
  752. Shotgun.FontSize = Enum.FontSize.Size32
  753. Shotgun.Text = "Shotgun"
  754. Shotgun.TextColor3 = Color3.new(1, 1, 1)
  755. Shotgun.TextSize = 30
  756. Shotgun.MouseButton1Down:connect(function()
  757.     local hit = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  758.  
  759.     a = Instance.new("Part", workspace)
  760.     a.Anchored = true
  761.     a.Position = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  762.     a.CanCollide = false
  763.    
  764.         for i, v in pairs(game:GetService("Workspace").Givers:GetChildren()) do
  765.     if v.Name == "Station" then
  766.     for a, b in pairs(v:GetChildren()) do
  767.     if b:IsA("StringValue") then
  768.     if b.Value == "Shotgun" then
  769.     v.CFrame = CFrame.new(hit)
  770.     end
  771.     end
  772.     end
  773.     end
  774.     end
  775. end)
  776.  
  777. Noclip.Name = "Noclip"
  778. Noclip.Parent = MainFrame
  779. Noclip.BackgroundColor3 = Color3.new(0, 0.333333, 1)
  780. Noclip.BorderSizePixel = 0
  781. Noclip.Position = UDim2.new(0.602601111, 0, 0.544964075, 0)
  782. Noclip.Size = UDim2.new(0, 125, 0, 50)
  783. Noclip.Font = Enum.Font.SciFi
  784. Noclip.FontSize = Enum.FontSize.Size32
  785. Noclip.Text = "Noclip"
  786. Noclip.TextColor3 = Color3.new(1, 1, 1)
  787. Noclip.TextSize = 30
  788. Noclip.MouseButton1Down:connect(function()
  789.     _G.NC = not _G.NC
  790.  
  791. local pos = game:GetService('Players').LocalPlayer.Character.LowerTorso.Position.Y
  792.  
  793. if _G.InitNC ~= true then
  794.     _G.NCFunc = function(part)
  795.         if _G.NC then
  796.             if part.Position.Y > pos then
  797.                 part.CanCollide = false
  798.             end
  799.         end
  800.     end
  801.    
  802.     _G.InitNC = true
  803. end
  804.  
  805. if _G.NC and _G.NCFunc ~= nil then
  806.     game:GetService('Players').LocalPlayer.Character.Humanoid.Touched:connect(_G.NCFunc)
  807. end
  808. end)
  809.  
  810. WelcomeFrame.Name = "WelcomeFrame"
  811. WelcomeFrame.Parent = JailbreakGui
  812. WelcomeFrame.BackgroundColor3 = Color3.new(0, 0.666667, 1)
  813. WelcomeFrame.BorderSizePixel = 0
  814. WelcomeFrame.Position = UDim2.new(0.376146764, 0, 0.199233711, 0)
  815. WelcomeFrame.Size = UDim2.new(0, 357, 0, 384)
  816.  
  817. WelcomeTitle.Name = "WelcomeTitle"
  818. WelcomeTitle.Parent = WelcomeFrame
  819. WelcomeTitle.BackgroundColor3 = Color3.new(0, 0.333333, 1)
  820. WelcomeTitle.BorderSizePixel = 0
  821. WelcomeTitle.Size = UDim2.new(0, 357, 0, 50)
  822. WelcomeTitle.Font = Enum.Font.SciFi
  823. WelcomeTitle.FontSize = Enum.FontSize.Size14
  824. WelcomeTitle.Text = "Jailbreak Smokes V1.1!"
  825. WelcomeTitle.TextColor3 = Color3.new(1, 0.333333, 0)
  826. WelcomeTitle.TextScaled = true
  827. WelcomeTitle.TextSize = 14
  828. WelcomeTitle.TextWrapped = true
  829.  
  830. welcome.Name = "welcome"
  831. welcome.Parent = WelcomeFrame
  832. welcome.BackgroundColor3 = Color3.new(1, 1, 1)
  833. welcome.BackgroundTransparency = 1
  834. welcome.BorderSizePixel = 0
  835. welcome.Position = UDim2.new(0, 0, 0.143229172, 0)
  836. welcome.Size = UDim2.new(0, 357, 0, 50)
  837. welcome.Font = Enum.Font.ArialBold
  838. welcome.FontSize = Enum.FontSize.Size32
  839. welcome.Text = "Welcome to JailSmokes V1.1!"
  840. welcome.TextColor3 = Color3.new(1, 1, 1)
  841. welcome.TextScaled = true
  842. welcome.TextSize = 30
  843. welcome.TextWrapped = true
  844.  
  845. enjoy.Name = "enjoy"
  846. enjoy.Parent = WelcomeFrame
  847. enjoy.BackgroundColor3 = Color3.new(1, 1, 1)
  848. enjoy.BackgroundTransparency = 1
  849. enjoy.BorderSizePixel = 0
  850. enjoy.Position = UDim2.new(0, 0, 0.403645813, 0)
  851. enjoy.Size = UDim2.new(0, 357, 0, 50)
  852. enjoy.Font = Enum.Font.ArialBold
  853. enjoy.FontSize = Enum.FontSize.Size32
  854. enjoy.Text = "I hope you enjoy the GUI! <3"
  855. enjoy.TextColor3 = Color3.new(1, 1, 1)
  856. enjoy.TextScaled = true
  857. enjoy.TextSize = 30
  858. enjoy.TextWrapped = true
  859.  
  860. pressstart.Name = "press start"
  861. pressstart.Parent = WelcomeFrame
  862. pressstart.BackgroundColor3 = Color3.new(1, 1, 1)
  863. pressstart.BackgroundTransparency = 1
  864. pressstart.BorderSizePixel = 0
  865. pressstart.Position = UDim2.new(0, 0, 0.5546875, 0)
  866. pressstart.Size = UDim2.new(0, 357, 0, 90)
  867. pressstart.Font = Enum.Font.ArialBold
  868. pressstart.FontSize = Enum.FontSize.Size32
  869. pressstart.Text = "Press 'Start' to begin exploiting!"
  870. pressstart.TextColor3 = Color3.new(0.333333, 1, 0)
  871. pressstart.TextScaled = true
  872. pressstart.TextSize = 30
  873. pressstart.TextWrapped = true
  874.  
  875. createdby.Name = "created by"
  876. createdby.Parent = WelcomeFrame
  877. createdby.BackgroundColor3 = Color3.new(1, 1, 1)
  878. createdby.BackgroundTransparency = 1
  879. createdby.BorderSizePixel = 0
  880. createdby.Position = UDim2.new(0, 0, 0.2734375, 0)
  881. createdby.Size = UDim2.new(0, 357, 0, 50)
  882. createdby.Font = Enum.Font.ArialBold
  883. createdby.FontSize = Enum.FontSize.Size32
  884. createdby.Text = "Created by Sean Blackwell."
  885. createdby.TextColor3 = Color3.new(1, 1, 1)
  886. createdby.TextScaled = true
  887. createdby.TextSize = 30
  888. createdby.TextWrapped = true
  889.  
  890. StartButton.Name = "StartButton"
  891. StartButton.Parent = WelcomeFrame
  892. StartButton.BackgroundColor3 = Color3.new(0, 0.333333, 1)
  893. StartButton.BorderSizePixel = 0
  894. StartButton.Position = UDim2.new(0.0392156877, 0, 0.8359375, 0)
  895. StartButton.Size = UDim2.new(0, 328, 0, 50)
  896. StartButton.Font = Enum.Font.SciFi
  897. StartButton.FontSize = Enum.FontSize.Size48
  898. StartButton.Text = "Start!"
  899. StartButton.TextColor3 = Color3.new(1, 0, 0)
  900. StartButton.TextSize = 40
  901. StartButton.MouseButton1Down:connect(function()
  902.     OpenButton.Visible = true
  903.     WelcomeFrame.Visible = false
  904. end)
Add Comment
Please, Sign In to add comment