Advertisement
Guest User

Untitled

a guest
May 23rd, 2019
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 23.96 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local open = Instance.new("TextButton")
  6. local mainframe = Instance.new("Frame")
  7. local AutoArrest = Instance.new("TextButton")
  8. local BankVault = Instance.new("TextButton")
  9. local CriminalBase = Instance.new("TextButton")
  10. local Garage = Instance.new("TextButton")
  11. local Batcave = Instance.new("TextButton")
  12. local PoliceCars = Instance.new("TextButton")
  13. local Helicopter1 = Instance.new("TextButton")
  14. local PoliceBase = Instance.new("TextButton")
  15. local Helicopter2 = Instance.new("TextButton")
  16. local JewleryTop = Instance.new("TextButton")
  17. local Bank = Instance.new("TextButton")
  18. local Buggy = Instance.new("TextButton")
  19. local DirtBike = Instance.new("TextButton")
  20. local Porsche = Instance.new("TextButton")
  21. local SwatCar = Instance.new("TextButton")
  22. local Buggatti = Instance.new("TextButton")
  23. local Lambo = Instance.new("TextButton")
  24. local MiniCooper = Instance.new("TextButton")
  25. local TextLabel = Instance.new("TextLabel")
  26. local ExitMain = Instance.new("TextButton")
  27. local DonutShop = Instance.new("TextButton")
  28. local PickupTruck = Instance.new("TextButton")
  29. local Tesla3 = Instance.new("TextButton")
  30. local JewleryStr = Instance.new("TextButton")
  31. local God = Instance.new("TextButton")
  32. local GunStore = Instance.new("TextButton")
  33. local Btools = Instance.new("TextButton")
  34. local WS = Instance.new("TextButton")
  35. local Noclip = Instance.new("TextButton")
  36. --Properties:
  37. ScreenGui.Parent = game.CoreGui
  38. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  39.  
  40. open.Name = "open"
  41. open.Parent = ScreenGui
  42. open.BackgroundColor3 = Color3.new(1, 0.666667, 0)
  43. open.BorderSizePixel = 0
  44. open.Position = UDim2.new(0.00555212842, 0, 0.566871166, 0)
  45. open.Size = UDim2.new(0, 153, 0, 41)
  46. open.Font = Enum.Font.SourceSans
  47. open.Text = "Open"
  48. open.TextColor3 = Color3.new(0, 0, 0)
  49. open.TextScaled = true
  50. open.TextSize = 14
  51. open.TextWrapped = true
  52. open.MouseButton1Down:connect(function()
  53. mainframe.Visible = true
  54. open.visible = false
  55. end)
  56.  
  57. mainframe.Name = "mainframe"
  58. mainframe.Parent = ScreenGui
  59. mainframe.BackgroundColor3 = Color3.new(0, 0.333333, 1)
  60. mainframe.BorderSizePixel = 0
  61. mainframe.Position = UDim2.new(0.285626143, 0, 0.176687121, 0)
  62. mainframe.Size = UDim2.new(0, 694, 0, 574)
  63. mainframe.Visible = false
  64.  
  65. AutoArrest.Name = "AutoArrest"
  66. AutoArrest.Parent = mainframe
  67. AutoArrest.BackgroundColor3 = Color3.new(1, 0, 0)
  68. AutoArrest.BorderSizePixel = 0
  69. AutoArrest.Position = UDim2.new(0.0273775235, 0, 0.378048807, 0)
  70. AutoArrest.Size = UDim2.new(0, 200, 0, 50)
  71. AutoArrest.Font = Enum.Font.SourceSans
  72. AutoArrest.Text = "AutoArrest"
  73. AutoArrest.TextColor3 = Color3.new(0, 0, 0)
  74. AutoArrest.TextScaled = true
  75. AutoArrest.TextSize = 14
  76. AutoArrest.TextWrapped = true
  77. AutoArrest.MouseButton1Click:connect(function()
  78. while wait() do
  79. while wait(0.1) do
  80. localRootPart = game.Players.LocalPlayer.Character.HumanoidRootPart
  81. event = game.ReplicatedStorage.Resource.Event
  82.  
  83. function getCFrameBehindPart(part)
  84. local partRotation = part.CFrame:toAxisAngle()
  85. local bottomOfPart = part.CFrame.p-Vector3.new(0,part.Size.Y/2,0)
  86. local behindPart = CFrame.new(bottomOfPart-part.CFrame.lookVector*1.2)+Vector3.new(0,1,0)
  87. return behindPart*CFrame.Angles(partRotation.X,partRotation.Y,partRotation.Z)
  88. end
  89.  
  90. for _,plr in pairs(game.Teams.Criminal:GetPlayers()) do
  91. local char = plr.Character
  92. if char ~= nil and char:FindFirstChild("HumanoidRootPart") ~= nil then
  93. local rootPart = char.HumanoidRootPart
  94. repeat
  95. event:FireServer("VehicleExit")
  96. localRootPart.CFrame = getCFrameBehindPart(rootPart)
  97. wait()
  98. for _,veh in pairs(game.Workspace.Vehicles:GetChildren()) do
  99. event:FireServer("AttemptVehicleEject",veh)
  100. end
  101. event:FireServer("AttemptArrest", plr.Name)
  102. until plr.Team.Name ~= "Criminal" or rootPart == nil
  103. end
  104. end
  105. end
  106. end
  107. end)
  108.  
  109. BankVault.Name = "BankVault"
  110. BankVault.Parent = mainframe
  111. BankVault.BackgroundColor3 = Color3.new(1, 0, 0)
  112. BankVault.BorderSizePixel = 0
  113. BankVault.Position = UDim2.new(0.355907798, 0, 0.378048778, 0)
  114. BankVault.Size = UDim2.new(0, 200, 0, 50)
  115. BankVault.Font = Enum.Font.SourceSans
  116. BankVault.Text = "BankVault"
  117. BankVault.TextColor3 = Color3.new(0, 0, 0)
  118. BankVault.TextScaled = true
  119. BankVault.TextSize = 14
  120. BankVault.TextWrapped = true
  121. BankVault.MouseButton1Click:connect(function()
  122. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(33.3059082,-1.67172456,803.200806) + Vector3.new(1,0,0)
  123. end)
  124.  
  125. CriminalBase.Name = "CriminalBase"
  126. CriminalBase.Parent = mainframe
  127. CriminalBase.BackgroundColor3 = Color3.new(1, 0, 0)
  128. CriminalBase.BorderSizePixel = 0
  129. CriminalBase.Position = UDim2.new(0.682997108, 0, 0.378048778, 0)
  130. CriminalBase.Size = UDim2.new(0, 200, 0, 50)
  131. CriminalBase.Font = Enum.Font.SourceSans
  132. CriminalBase.Text = "CriminalBase"
  133. CriminalBase.TextColor3 = Color3.new(0, 0, 0)
  134. CriminalBase.TextScaled = true
  135. CriminalBase.TextSize = 14
  136. CriminalBase.TextWrapped = true
  137. CriminalBase.MouseButton1Click:connect(function()
  138. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-222.339157, 17.9125443, 1575.82336) + Vector3.new(1,0,0)
  139. end)
  140.  
  141. Garage.Name = "Garage"
  142. Garage.Parent = mainframe
  143. Garage.BackgroundColor3 = Color3.new(1, 0, 0)
  144. Garage.BorderSizePixel = 0
  145. Garage.Position = UDim2.new(0.355907798, 0, 0.477351904, 0)
  146. Garage.Size = UDim2.new(0, 200, 0, 50)
  147. Garage.Font = Enum.Font.SourceSans
  148. Garage.Text = "Garage"
  149. Garage.TextColor3 = Color3.new(0, 0, 0)
  150. Garage.TextScaled = true
  151. Garage.TextSize = 14
  152. Garage.TextWrapped = true
  153. Garage.MouseButton1Click:connect(function()
  154. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-342.130798, 19.3135223, 1182.73669) + Vector3.new(1,0,0)
  155. end)
  156.  
  157. Batcave.Name = "Batcave"
  158. Batcave.Parent = mainframe
  159. Batcave.BackgroundColor3 = Color3.new(1, 0, 0)
  160. Batcave.BorderSizePixel = 0
  161. Batcave.Position = UDim2.new(0.0273775235, 0, 0.477351904, 0)
  162. Batcave.Size = UDim2.new(0, 200, 0, 50)
  163. Batcave.Font = Enum.Font.SourceSans
  164. Batcave.Text = "Batcave"
  165. Batcave.TextColor3 = Color3.new(0, 0, 0)
  166. Batcave.TextScaled = true
  167. Batcave.TextSize = 14
  168. Batcave.TextWrapped = true
  169. Batcave.MouseButton1Click:connect(function()
  170. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1818, 49, -1657.4) + Vector3.new(1,0,0)
  171. end)
  172.  
  173. PoliceCars.Name = "PoliceCars"
  174. PoliceCars.Parent = mainframe
  175. PoliceCars.BackgroundColor3 = Color3.new(1, 0, 0)
  176. PoliceCars.BorderSizePixel = 0
  177. PoliceCars.Position = UDim2.new(0.680115283, 0, 0.477351904, 0)
  178. PoliceCars.Size = UDim2.new(0, 200, 0, 50)
  179. PoliceCars.Font = Enum.Font.SourceSans
  180. PoliceCars.Text = "PoliceCars"
  181. PoliceCars.TextColor3 = Color3.new(0, 0, 0)
  182. PoliceCars.TextScaled = true
  183. PoliceCars.TextSize = 14
  184. PoliceCars.TextWrapped = true
  185. PoliceCars.MouseButton1Click:connect(function()
  186. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1100.4469, 17.7500038, -1493.18286) + Vector3.new(1,0,0)
  187. end)
  188.  
  189. Helicopter1.Name = "Helicopter1"
  190. Helicopter1.Parent = mainframe
  191. Helicopter1.BackgroundColor3 = Color3.new(1, 0, 0)
  192. Helicopter1.BorderSizePixel = 0
  193. Helicopter1.Position = UDim2.new(0.355907798, 0, 0.57665503, 0)
  194. Helicopter1.Size = UDim2.new(0, 200, 0, 50)
  195. Helicopter1.Font = Enum.Font.SourceSans
  196. Helicopter1.Text = "Helicopter1"
  197. Helicopter1.TextColor3 = Color3.new(0, 0, 0)
  198. Helicopter1.TextScaled = true
  199. Helicopter1.TextSize = 14
  200. Helicopter1.TextWrapped = true
  201. Helicopter1.MouseButton1Click:connect(function()
  202. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1176.4231, 59.7911148, -1572.6908) + Vector3.new(1,0,0)
  203. end)
  204.  
  205. PoliceBase.Name = "PoliceBase"
  206. PoliceBase.Parent = mainframe
  207. PoliceBase.BackgroundColor3 = Color3.new(1, 0, 0)
  208. PoliceBase.BorderSizePixel = 0
  209. PoliceBase.Position = UDim2.new(0.0288184453, 0, 0.578397155, 0)
  210. PoliceBase.Size = UDim2.new(0, 200, 0, 50)
  211. PoliceBase.Font = Enum.Font.SourceSans
  212. PoliceBase.Text = "PoliceBase"
  213. PoliceBase.TextColor3 = Color3.new(0, 0, 0)
  214. PoliceBase.TextScaled = true
  215. PoliceBase.TextSize = 14
  216. PoliceBase.TextWrapped = true
  217. PoliceBase.MouseButton1Click:connect(function()
  218. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1130.11426, 17.950058, -1593.09766) + Vector3.new(1,0,0)
  219. end)
  220.  
  221. Helicopter2.Name = "Helicopter2"
  222. Helicopter2.Parent = mainframe
  223. Helicopter2.BackgroundColor3 = Color3.new(1, 0, 0)
  224. Helicopter2.BorderSizePixel = 0
  225. Helicopter2.Position = UDim2.new(0.680115223, 0, 0.57665503, 0)
  226. Helicopter2.Size = UDim2.new(0, 200, 0, 50)
  227. Helicopter2.Font = Enum.Font.SourceSans
  228. Helicopter2.Text = "Helicopter2"
  229. Helicopter2.TextColor3 = Color3.new(0, 0, 0)
  230. Helicopter2.TextScaled = true
  231. Helicopter2.TextSize = 14
  232. Helicopter2.TextWrapped = true
  233. Helicopter2.MouseButton1Click:connect(function()
  234. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(725.516174, 68.436058, 1143.79065) + Vector3.new(1,0,0)
  235. end)
  236.  
  237. JewleryTop.Name = "JewleryTop"
  238. JewleryTop.Parent = mainframe
  239. JewleryTop.BackgroundColor3 = Color3.new(1, 0, 0)
  240. JewleryTop.BorderSizePixel = 0
  241. JewleryTop.Position = UDim2.new(0.355907828, 0, 0.686411083, 0)
  242. JewleryTop.Size = UDim2.new(0, 200, 0, 50)
  243. JewleryTop.Font = Enum.Font.SourceSans
  244. JewleryTop.Text = "JewleryTop"
  245. JewleryTop.TextColor3 = Color3.new(0, 0, 0)
  246. JewleryTop.TextScaled = true
  247. JewleryTop.TextSize = 14
  248. JewleryTop.TextWrapped = true
  249. JewleryTop.MouseButton1Click:connect(function()
  250. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(101.211128, 98.6576996, 1310.54175) + Vector3.new(1,0,0)
  251. end)
  252.  
  253. Bank.Name = "Bank"
  254. Bank.Parent = mainframe
  255. Bank.BackgroundColor3 = Color3.new(1, 0, 0)
  256. Bank.BorderSizePixel = 0
  257. Bank.Position = UDim2.new(0.0302593671, 0, 0.686411083, 0)
  258. Bank.Size = UDim2.new(0, 200, 0, 50)
  259. Bank.Font = Enum.Font.SourceSans
  260. Bank.Text = "Bank"
  261. Bank.TextColor3 = Color3.new(0, 0, 0)
  262. Bank.TextScaled = true
  263. Bank.TextSize = 14
  264. Bank.TextWrapped = true
  265. Bank.MouseButton1Click:connect(function()
  266. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(9.92591476, 17.8639755, 786.788147) + Vector3.new(1,0,0)
  267. end)
  268.  
  269. Buggy.Name = "Buggy"
  270. Buggy.Parent = mainframe
  271. Buggy.BackgroundColor3 = Color3.new(1, 0, 0)
  272. Buggy.BorderSizePixel = 0
  273. Buggy.Position = UDim2.new(0.680115223, 0, 0.686411142, 0)
  274. Buggy.Size = UDim2.new(0, 200, 0, 50)
  275. Buggy.Font = Enum.Font.SourceSans
  276. Buggy.Text = "Buggy"
  277. Buggy.TextColor3 = Color3.new(0, 0, 0)
  278. Buggy.TextScaled = true
  279. Buggy.TextSize = 14
  280. Buggy.TextWrapped = true
  281. Buggy.MouseButton1Click:connect(function()
  282. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(571.526733, 16.66436, -470.50943) + Vector3.new(1,0,0)
  283. end)
  284.  
  285. DirtBike.Name = "DirtBike"
  286. DirtBike.Parent = mainframe
  287. DirtBike.BackgroundColor3 = Color3.new(1, 0, 0)
  288. DirtBike.BorderSizePixel = 0
  289. DirtBike.Position = UDim2.new(0.355907828, 0, 0.792682886, 0)
  290. DirtBike.Size = UDim2.new(0, 200, 0, 50)
  291. DirtBike.Font = Enum.Font.SourceSans
  292. DirtBike.Text = "DirtBike"
  293. DirtBike.TextColor3 = Color3.new(0, 0, 0)
  294. DirtBike.TextScaled = true
  295. DirtBike.TextSize = 14
  296. DirtBike.TextWrapped = true
  297. DirtBike.MouseButton1Click:connect(function()
  298. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1313.71118, 17.3656254, 370.085327) + Vector3.new(1,0,0)
  299. end)
  300.  
  301. Porsche.Name = "Porsche"
  302. Porsche.Parent = mainframe
  303. Porsche.BackgroundColor3 = Color3.new(1, 0, 0)
  304. Porsche.BorderSizePixel = 0
  305. Porsche.Position = UDim2.new(0.0302593671, 0, 0.792682886, 0)
  306. Porsche.Size = UDim2.new(0, 200, 0, 50)
  307. Porsche.Font = Enum.Font.SourceSans
  308. Porsche.Text = "Porsche"
  309. Porsche.TextColor3 = Color3.new(0, 0, 0)
  310. Porsche.TextScaled = true
  311. Porsche.TextSize = 14
  312. Porsche.TextWrapped = true
  313. Porsche.MouseButton1Click:connect(function()
  314. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1112.11475, 101.16069, 1290.57654) + Vector3.new(1,0,0)
  315. end)
  316.  
  317. SwatCar.Name = "SwatCar"
  318. SwatCar.Parent = mainframe
  319. SwatCar.BackgroundColor3 = Color3.new(1, 0, 0)
  320. SwatCar.BorderSizePixel = 0
  321. SwatCar.Position = UDim2.new(0.680115223, 0, 0.792682886, 0)
  322. SwatCar.Size = UDim2.new(0, 200, 0, 50)
  323. SwatCar.Font = Enum.Font.SourceSans
  324. SwatCar.Text = "SwatCar"
  325. SwatCar.TextColor3 = Color3.new(0, 0, 0)
  326. SwatCar.TextScaled = true
  327. SwatCar.TextSize = 14
  328. SwatCar.TextWrapped = true
  329. SwatCar.MouseButton1Click:connect(function()
  330. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1355.2417, 18, -1531.86047) + Vector3.new(1,0,0)
  331. end)
  332.  
  333. Buggatti.Name = "Buggatti"
  334. Buggatti.Parent = mainframe
  335. Buggatti.BackgroundColor3 = Color3.new(1, 0, 0)
  336. Buggatti.BorderSizePixel = 0
  337. Buggatti.Position = UDim2.new(0.355907828, 0, 0.89895469, 0)
  338. Buggatti.Size = UDim2.new(0, 200, 0, 50)
  339. Buggatti.Font = Enum.Font.SourceSans
  340. Buggatti.Text = "Buggatti"
  341. Buggatti.TextColor3 = Color3.new(0, 0, 0)
  342. Buggatti.TextScaled = true
  343. Buggatti.TextSize = 14
  344. Buggatti.TextWrapped = true
  345. Buggatti.MouseButton1Click:connect(function()
  346. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(245.938766, 17.6064777, 1372.15076) + Vector3.new(1,0,0)
  347. end)
  348.  
  349. Lambo.Name = "Lambo"
  350. Lambo.Parent = mainframe
  351. Lambo.BackgroundColor3 = Color3.new(1, 0, 0)
  352. Lambo.BorderSizePixel = 0
  353. Lambo.Position = UDim2.new(0.0273775235, 0, 0.89895469, 0)
  354. Lambo.Size = UDim2.new(0, 200, 0, 50)
  355. Lambo.Font = Enum.Font.SourceSans
  356. Lambo.Text = "Lambo"
  357. Lambo.TextColor3 = Color3.new(0, 0, 0)
  358. Lambo.TextScaled = true
  359. Lambo.TextSize = 14
  360. Lambo.TextWrapped = true
  361. Lambo.MouseButton1Click:connect(function()
  362. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(144.794067, 17.6189003, 768.572693) + Vector3.new(1,0,0)
  363. end)
  364.  
  365. MiniCooper.Name = "MiniCooper"
  366. MiniCooper.Parent = mainframe
  367. MiniCooper.BackgroundColor3 = Color3.new(1, 0, 0)
  368. MiniCooper.BorderSizePixel = 0
  369. MiniCooper.Position = UDim2.new(0.682997048, 0, 0.89895469, 0)
  370. MiniCooper.Size = UDim2.new(0, 200, 0, 50)
  371. MiniCooper.Font = Enum.Font.SourceSans
  372. MiniCooper.Text = "MiniCooper"
  373. MiniCooper.TextColor3 = Color3.new(0, 0, 0)
  374. MiniCooper.TextScaled = true
  375. MiniCooper.TextSize = 14
  376. MiniCooper.TextWrapped = true
  377. MiniCooper.MouseButton1Click:connect(function()
  378. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(767.823242, 17.3656254, -1216.83643) + Vector3.new(1,0,0)
  379. end)
  380.  
  381. TextLabel.Parent = mainframe
  382. TextLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  383. TextLabel.BorderSizePixel = 0
  384. TextLabel.Size = UDim2.new(0, 694, 0, 50)
  385. TextLabel.Font = Enum.Font.SourceSans
  386. TextLabel.Text = "Jailbreak Gui"
  387. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  388. TextLabel.TextScaled = true
  389. TextLabel.TextSize = 14
  390. TextLabel.TextWrapped = true
  391.  
  392. ExitMain.Name = "ExitMain"
  393. ExitMain.Parent = mainframe
  394. ExitMain.BackgroundColor3 = Color3.new(0, 0, 0)
  395. ExitMain.BorderSizePixel = 0
  396. ExitMain.Position = UDim2.new(0.919308364, 0, 0, 0)
  397. ExitMain.Size = UDim2.new(0, 56, 0, 50)
  398. ExitMain.Text = "X"
  399. ExitMain.TextColor3 = Color3.new(1, 1, 1)
  400. ExitMain.TextScaled = true
  401. ExitMain.TextSize = 14
  402. ExitMain.TextWrapped = true
  403. ExitMain.MouseButton1Click:connect(function()
  404. mainframe.Visible = false
  405. open.visible = true
  406. end)
  407.  
  408. DonutShop.Name = "DonutShop"
  409. DonutShop.Parent = mainframe
  410. DonutShop.BackgroundColor3 = Color3.new(1, 0, 0)
  411. DonutShop.BorderSizePixel = 0
  412. DonutShop.Position = UDim2.new(0.682997108, 0, 0.275261313, 0)
  413. DonutShop.Size = UDim2.new(0, 200, 0, 50)
  414. DonutShop.Font = Enum.Font.SourceSans
  415. DonutShop.Text = "DonutShop"
  416. DonutShop.TextColor3 = Color3.new(0, 0, 0)
  417. DonutShop.TextScaled = true
  418. DonutShop.TextSize = 14
  419. DonutShop.TextWrapped = true
  420. DonutShop.MouseButton1Click:connect(function()
  421. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(273, 18, -1807) + Vector3.new(1,0,0)
  422. end)
  423.  
  424. PickupTruck.Name = "PickupTruck"
  425. PickupTruck.Parent = mainframe
  426. PickupTruck.BackgroundColor3 = Color3.new(1, 0, 0)
  427. PickupTruck.BorderSizePixel = 0
  428. PickupTruck.Position = UDim2.new(0.355907798, 0, 0.275261313, 0)
  429. PickupTruck.Size = UDim2.new(0, 200, 0, 50)
  430. PickupTruck.Font = Enum.Font.SourceSans
  431. PickupTruck.Text = "PickupTruck"
  432. PickupTruck.TextColor3 = Color3.new(0, 0, 0)
  433. PickupTruck.TextScaled = true
  434. PickupTruck.TextSize = 14
  435. PickupTruck.TextWrapped = true
  436. PickupTruck.MouseButton1Click:connect(function()
  437. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1541.10388, 17.746624, 729) + Vector3.new(1,0,0)
  438. end)
  439.  
  440. Tesla3.Name = "Tesla3"
  441. Tesla3.Parent = mainframe
  442. Tesla3.BackgroundColor3 = Color3.new(1, 0, 0)
  443. Tesla3.BorderSizePixel = 0
  444. Tesla3.Position = UDim2.new(0.0273775235, 0, 0.275261343, 0)
  445. Tesla3.Size = UDim2.new(0, 200, 0, 50)
  446. Tesla3.Font = Enum.Font.SourceSans
  447. Tesla3.Text = "Tesla3"
  448. Tesla3.TextColor3 = Color3.new(0, 0, 0)
  449. Tesla3.TextScaled = true
  450. Tesla3.TextSize = 14
  451. Tesla3.TextWrapped = true
  452. Tesla3.MouseButton1Click:connect(function()
  453. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-111.571999, 17.6169529, 541.515747) + Vector3.new(1,0,0)
  454. end)
  455.  
  456. JewleryStr.Name = "JewleryStr"
  457. JewleryStr.Parent = mainframe
  458. JewleryStr.BackgroundColor3 = Color3.new(1, 0, 0)
  459. JewleryStr.BorderSizePixel = 0
  460. JewleryStr.Position = UDim2.new(0.680115283, 0, 0.172473848, 0)
  461. JewleryStr.Size = UDim2.new(0, 200, 0, 50)
  462. JewleryStr.Font = Enum.Font.SourceSans
  463. JewleryStr.Text = "JewleryStr"
  464. JewleryStr.TextColor3 = Color3.new(0, 0, 0)
  465. JewleryStr.TextScaled = true
  466. JewleryStr.TextSize = 14
  467. JewleryStr.TextWrapped = true
  468. JewleryStr.MouseButton1Click:connect(function()
  469. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(124.339157,17.9125443,1318.82336) + Vector3.new(1,0,0)
  470. end)
  471.  
  472. God.Name = "God"
  473. God.Parent = mainframe
  474. God.BackgroundColor3 = Color3.new(1, 0, 0)
  475. God.BorderSizePixel = 0
  476. God.Position = UDim2.new(0.355907798, 0, 0.172473848, 0)
  477. God.Size = UDim2.new(0, 200, 0, 50)
  478. God.Font = Enum.Font.SourceSans
  479. God.Text = "God"
  480. God.TextColor3 = Color3.new(0, 0, 0)
  481. God.TextScaled = true
  482. God.TextSize = 14
  483. God.TextWrapped = true
  484. God.MouseButton1Click:connect(function()
  485. game.Players.LocalPlayer.Character.Humanoid.Name = 1
  486. local l = game.Players.LocalPlayer.Character["1"]:Clone()
  487. l.Parent = game.Players.LocalPlayer.Character
  488. l.Name = "Humanoid"
  489. wait(0.1)
  490. game.Players.LocalPlayer.Character["1"]:Destroy()
  491. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  492. game.Players.LocalPlayer.Character.Animate.Disabled = true
  493. wait(0.1)
  494. game.Players.LocalPlayer.Character.Animate.Disabled = false
  495. game.Players.LocalPlayer.Character.Humanoid.DisplayDistanceType = "None"
  496. end)
  497.  
  498.  
  499. GunStore.Name = "GunStore"
  500. GunStore.Parent = mainframe
  501. GunStore.BackgroundColor3 = Color3.new(1, 0, 0)
  502. GunStore.BorderSizePixel = 0
  503. GunStore.Position = UDim2.new(0.0302593894, 0, 0.172473848, 0)
  504. GunStore.Size = UDim2.new(0, 200, 0, 50)
  505. GunStore.Font = Enum.Font.SourceSans
  506. GunStore.Text = "GunStore"
  507. GunStore.TextColor3 = Color3.new(0, 0, 0)
  508. GunStore.TextScaled = true
  509. GunStore.TextSize = 14
  510. GunStore.TextWrapped = true
  511. GunStore.MouseButton1Click:connect(function()
  512. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-24.4, 18, -1763) + Vector3.new(1,0,0)
  513. end)
  514.  
  515. Btools.Name = "Btools"
  516. Btools.Parent = mainframe
  517. Btools.BackgroundColor3 = Color3.new(1, 0, 0)
  518. Btools.BorderSizePixel = 0
  519. Btools.Position = UDim2.new(0.0288184434, 0, 0.097560972, 0)
  520. Btools.Size = UDim2.new(0, 200, 0, 34)
  521. Btools.Font = Enum.Font.SourceSans
  522. Btools.Text = "Btools"
  523. Btools.TextColor3 = Color3.new(0, 0, 0)
  524. Btools.TextScaled = true
  525. Btools.TextSize = 14
  526. Btools.TextWrapped = true
  527. Btools.MouseButton1Down:connect(function()
  528. game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, true)
  529. for index, child in pairs(game:GetService("Workspace"):GetChildren()) do
  530. if child.ClassName == "Part" then
  531. child.Locked = false
  532. end
  533. if child.ClassName == "MeshPart" then
  534. child.Locked = false
  535. end
  536. if child.ClassName == "UnionOperation" then
  537. child.Locked = false
  538. end
  539. if child.ClassName == "Model" then
  540. for index, chil in pairs(child:GetChildren()) do
  541. if chil.ClassName == "Part" then
  542. chil.Locked = false
  543. end
  544. if chil.ClassName == "MeshPart" then
  545. chil.Locked = false
  546. end
  547. if chil.ClassName == "UnionOperation" then
  548. chil.Locked = false
  549. end
  550. if chil.ClassName == "Model" then
  551. for index, childe in pairs(chil:GetChildren()) do
  552. if childe.ClassName == "Part" then
  553. childe.Locked = false
  554. end
  555. if childe.ClassName == "MeshPart" then
  556. childe.Locked = false
  557. end
  558. if childe.ClassName == "UnionOperation" then
  559. childe.Locked = false
  560. end
  561. if childe.ClassName == "Model" then
  562. for index, childeo in pairs(childe:GetChildren()) do
  563. if childeo.ClassName == "Part" then
  564. childeo.Locked = false
  565. end
  566. if childeo.ClassName == "MeshPart" then
  567. childeo.Locked = false
  568. end
  569. if childeo.ClassName == "UnionOperation" then
  570. childeo.Locked = false
  571. end
  572. if childeo.ClassName == "Model" then
  573. end
  574. end
  575. end
  576. end
  577. end
  578. end
  579. end
  580. end
  581. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  582. c.BinType = Enum.BinType.Hammer
  583. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  584. c.BinType = Enum.BinType.Clone
  585. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  586. c.BinType = Enum.BinType.Grab
  587. end)
  588.  
  589. WS.Name = "WS"
  590. WS.Parent = mainframe
  591. WS.BackgroundColor3 = Color3.new(1, 0, 0)
  592. WS.BorderSizePixel = 0
  593. WS.Position = UDim2.new(0.355907798, 0, 0.097560972, 0)
  594. WS.Size = UDim2.new(0, 200, 0, 34)
  595. WS.Font = Enum.Font.SourceSans
  596. WS.Text = "[X] Walkspeed"
  597. WS.TextColor3 = Color3.new(0, 0, 0)
  598. WS.TextScaled = true
  599. WS.TextSize = 14
  600. WS.TextWrapped = true
  601. WS.MouseButton1Down:connect(function()
  602. local walkspeedplayer = game:GetService("Players").LocalPlayer
  603. local walkspeedmouse = walkspeedplayer:GetMouse()
  604.  
  605. local walkspeedenabled = false
  606.  
  607. function x_walkspeed(key)
  608. if (key == "x") then
  609. if walkspeedenabled == false then
  610. _G.WS = 110;
  611. local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
  612. Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  613. Humanoid.WalkSpeed = _G.WS;
  614. end)
  615. Humanoid.WalkSpeed = _G.WS;
  616.  
  617. walkspeedenabled = true
  618. elseif walkspeedenabled == true then
  619. _G.WS = 20;
  620. local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
  621. Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  622. Humanoid.WalkSpeed = _G.WS;
  623. end)
  624. Humanoid.WalkSpeed = _G.WS;
  625.  
  626. walkspeedenabled = false
  627. end
  628. end
  629. end
  630.  
  631. walkspeedmouse.KeyDown:connect(x_walkspeed)
  632.  
  633. end)
  634.  
  635. Noclip.Name = "Noclip"
  636. Noclip.Parent = mainframe
  637. Noclip.BackgroundColor3 = Color3.new(1, 0, 0)
  638. Noclip.BorderSizePixel = 0
  639. Noclip.Position = UDim2.new(0.682997108, 0, 0.097560972, 0)
  640. Noclip.Size = UDim2.new(0, 200, 0, 34)
  641. Noclip.Font = Enum.Font.SourceSans
  642. Noclip.Text = "Noclip"
  643. Noclip.TextColor3 = Color3.new(0, 0, 0)
  644. Noclip.TextScaled = true
  645. Noclip.TextSize = 14
  646. Noclip.TextWrapped = true
  647. Noclip.MouseButton1Down:connect(function()
  648. game:GetService("Players").LocalPlayer.Character.RightHand.Touched:connect(function(obj)
  649. if obj ~= workspace.Terrain then
  650. obj.CanCollide = false
  651. wait(1)
  652. obj.CanCollide = true
  653. end
  654. end)
  655. end)
  656. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement