Upscalefanatic3

Mad-Lads v3! | Mad City GUI | (OP)

Feb 10th, 2019
416
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 32.34 KB | None | 0 0
  1. -- Made by Jxnt#9029 Enjoy!
  2.  
  3.  
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local MainTab = Instance.new("Frame")
  6. local Header = Instance.new("TextLabel")
  7. local Credits = Instance.new("TextLabel")
  8. local Fly = Instance.new("TextButton")
  9. local Noclip = Instance.new("TextButton")
  10. local AutoXPOff = Instance.new("TextButton")
  11. local AutoRob = Instance.new("TextButton")
  12. local AutoArrest = Instance.new("TextButton")
  13. local Teleports = Instance.new("TextButton")
  14. local AutoXPOn = Instance.new("TextButton")
  15. local SetSpeed = Instance.new("TextButton")
  16. local SetGravity = Instance.new("TextButton")
  17. local Number = Instance.new("TextBox")
  18. local ExitMain = Instance.new("TextButton")
  19. local TeleportTab = Instance.new("Frame")
  20. local Header_2 = Instance.new("TextLabel")
  21. local ExitTeleports = Instance.new("TextButton")
  22. local Garage = Instance.new("TextButton")
  23. local Base = Instance.new("TextButton")
  24. local Camaro = Instance.new("TextButton")
  25. local Bank = Instance.new("TextButton")
  26. local Jewelry = Instance.new("TextButton")
  27. local Header_3 = Instance.new("TextLabel")
  28. local Credits_2 = Instance.new("Frame")
  29. local Bean07 = Instance.new("TextLabel")
  30. local Credits_3 = Instance.new("TextLabel")
  31. local TheLondiux = Instance.new("TextLabel")
  32. local Tos = Instance.new("TextLabel")
  33. local Ok = Instance.new("TextButton")
  34.  
  35. ScreenGui.Parent = game.CoreGui
  36. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  37.  
  38. MainTab.Name = "Main Tab"
  39. MainTab.Parent = ScreenGui
  40. MainTab.Active = true
  41. MainTab.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  42. MainTab.BackgroundTransparency = 0.25
  43. MainTab.BorderColor3 = Color3.new(1, 1, 1)
  44. MainTab.BorderSizePixel = 2
  45. MainTab.ClipsDescendants = true
  46. MainTab.Position = UDim2.new(0.412600368, 0, 0.323095888, 0)
  47. MainTab.Selectable = true
  48. MainTab.Size = UDim2.new(0, 282, 0, 263)
  49. MainTab.Visible = false
  50. MainTab.Draggable = true
  51.  
  52. Header.Name = "Header"
  53. Header.Parent = MainTab
  54. Header.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  55. Header.BorderColor3 = Color3.new(1, 1, 1)
  56. Header.BorderSizePixel = 2
  57. Header.Size = UDim2.new(0, 282, 0, 20)
  58. Header.Font = Enum.Font.Cartoon
  59. Header.Text = "Mad-Lads v3"
  60. Header.TextColor3 = Color3.new(1, 1, 1)
  61. Header.TextSize = 22
  62.  
  63. Credits.Name = "Credits"
  64. Credits.Parent = MainTab
  65. Credits.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  66. Credits.BorderColor3 = Color3.new(1, 1, 1)
  67. Credits.BorderSizePixel = 2
  68. Credits.Position = UDim2.new(0, 0, 0.932270944, 0)
  69. Credits.Size = UDim2.new(0, 282, 0, 17)
  70. Credits.Font = Enum.Font.Cartoon
  71. Credits.Text = ""
  72. Credits.TextColor3 = Color3.new(1, 1, 1)
  73. Credits.TextSize = 17
  74.  
  75. Fly.Name = "Fly"
  76. Fly.Parent = MainTab
  77. Fly.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  78. Fly.BackgroundTransparency = 0.25
  79. Fly.BorderColor3 = Color3.new(1, 1, 1)
  80. Fly.BorderSizePixel = 2
  81. Fly.Position = UDim2.new(0.0396602079, 0, 0.135094613, 0)
  82. Fly.Size = UDim2.new(0, 72, 0, 30)
  83. Fly.Font = Enum.Font.Cartoon
  84. Fly.Text = "Fly [F]"
  85. Fly.TextColor3 = Color3.new(1, 1, 1)
  86. Fly.TextSize = 14
  87. Fly.MouseButton1Click:connect (function()
  88. repeat wait()
  89.  
  90. until game:GetService"Players".LocalPlayer and game:GetService"Players".LocalPlayer.Character and game:GetService"Players".LocalPlayer.Character:findFirstChild("UpperTorso") and game:GetService"Players".LocalPlayer.Character:findFirstChild("Humanoid")
  91. local mouse = game:GetService"Players".LocalPlayer:GetMouse()
  92. repeat wait() until mouse
  93. local plr = game:GetService"Players".LocalPlayer
  94. local torso = plr.Character.UpperTorso
  95. local flying = true
  96. local deb = true
  97. local ctrl = {f = 0, b = 0, l = 0, r = 0}
  98. local lastctrl = {f = 0, b = 0, l = 0, r = 0}
  99. local maxspeed = 100
  100. local speed = 0
  101.  
  102. function Fly()
  103. local bg = Instance.new("BodyGyro", torso)
  104. bg.P = 9e4
  105. bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  106. bg.cframe = torso.CFrame
  107. local bv = Instance.new("BodyVelocity", torso)
  108. bv.velocity = Vector3.new(0,0.1,0)
  109. bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
  110. repeat wait()
  111. plr.Character.Humanoid.PlatformStand = true
  112. if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
  113. speed = speed+.5+(speed/maxspeed)
  114. if speed > maxspeed then
  115. speed = maxspeed
  116. end
  117. elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
  118. speed = speed-1
  119. if speed < 0 then
  120. speed = 0
  121. end
  122. end
  123. if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
  124. bv.velocity = ((game:GetService("Workspace").CurrentCamera.CoordinateFrame.lookVector * (ctrl.f+ctrl.b)) + ((game:GetService("Workspace").CurrentCamera.CoordinateFrame * CFrame.new(ctrl.l+ctrl.r,(ctrl.f+ctrl.b)*.2,0).p) - game:GetService("Workspace").CurrentCamera.CoordinateFrame.p))*speed
  125. lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
  126. elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
  127. bv.velocity = ((game:GetService("Workspace").CurrentCamera.CoordinateFrame.lookVector * (lastctrl.f+lastctrl.b)) + ((game:GetService("Workspace").CurrentCamera.CoordinateFrame * CFrame.new(lastctrl.l+lastctrl.r,(lastctrl.f+lastctrl.b)*.2,0).p) - game:GetService("Workspace").CurrentCamera.CoordinateFrame.p))*speed
  128. else
  129. bv.velocity = Vector3.new(0,0.1,0)
  130. end
  131. bg.cframe = game:GetService("Workspace").CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/maxspeed),0,0)
  132. until not flying
  133. ctrl = {f = 0, b = 0, l = 0, r = 0}
  134. lastctrl = {f = 0, b = 0, l = 0, r = 0}
  135. speed = 0
  136. bg:Destroy()
  137. bv:Destroy()
  138. plr.Character.Humanoid.PlatformStand = false
  139. end
  140. mouse.KeyDown:connect(function(key)
  141. if key:lower() == "f" then
  142. if flying then flying = false
  143. else
  144. flying = true
  145. Fly()
  146. end
  147. elseif key:lower() == "w" then
  148. ctrl.f = 1
  149. elseif key:lower() == "s" then
  150. ctrl.b = -1
  151. elseif key:lower() == "a" then
  152. ctrl.l = -1
  153. elseif key:lower() == "d" then
  154. ctrl.r = 1
  155. end
  156. end)
  157. mouse.KeyUp:connect(function(key)
  158. if key:lower() == "w" then
  159. ctrl.f = 0
  160. elseif key:lower() == "s" then
  161. ctrl.b = 0
  162. elseif key:lower() == "a" then
  163. ctrl.l = 0
  164. elseif key:lower() == "d" then
  165. ctrl.r = 0
  166. end
  167. end)
  168. Fly()
  169. end)
  170.  
  171. Noclip.Name = "Noclip"
  172. Noclip.Parent = MainTab
  173. Noclip.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  174. Noclip.BackgroundTransparency = 0.25
  175. Noclip.BorderColor3 = Color3.new(1, 1, 1)
  176. Noclip.BorderSizePixel = 2
  177. Noclip.Position = UDim2.new(0.0396602079, 0, 0.290291309, 0)
  178. Noclip.Size = UDim2.new(0, 72, 0, 30)
  179. Noclip.Font = Enum.Font.Cartoon
  180. Noclip.Text = "Noclip [N]"
  181. Noclip.TextColor3 = Color3.new(1, 1, 1)
  182. Noclip.TextSize = 14
  183. Noclip.MouseButton1Click:connect (function()
  184. local Player = game.Players.LocalPlayer
  185. local Mouse = Player:GetMouse();
  186.  
  187. Mouse.KeyDown:connect(function(key)
  188. if key == "n" then
  189. local plr = game:GetService("Players")local Z=game:GetService("Players").LocalPlayer;function Torso(plr)if plr.Character then if plr.Character:FindFirstChild('UpperTorso')then return plr.Character.UpperTorso else return plr.Character.Torso end end end;if Clip==true then Clip=false;return end;Clip=true;game:GetService("RunService").Stepped:connect(function()Torso(Z).CanCollide=not Clip;Z.Character.Head.CanCollide=not Clip;Z.Character.HumanoidRootPart.CanCollide=not Clip;if Z.Character.UpperTorso then Z.Character.LowerTorso.CanCollide=not Clip end end)Z.Character.RightFoot.Touched:connect(function(_)Torso(Z).CanCollide=not Clip;Z.Character.Head.CanCollide=not Clip;Z.Character.HumanoidRootPart.CanCollide=not Clip;if Z.Character.UpperTorso then Z.Character.LowerTorso.CanCollide=not Clip end end)Z.Character.LeftFoot.Touched:connect(function(a0)Torso(Z).CanCollide=not Clip;Z.Character.Head.CanCollide=not Clip;Z.Character.HumanoidRootPart.CanCollide=not Clip;if Z.Character.UpperTorso then Z.Character.LowerTorso.CanCollide=not Clip end end)Z.Character.RightLowerLeg.Touched:connect(function(a1)Torso(Z).CanCollide=not Clip;Z.Character.Head.CanCollide=not Clip;Z.Character.HumanoidRootPart.CanCollide=not Clip;if Z.Character.UpperTorso then Z.Character.LowerTorso.CanCollide=not Clip end end)Z.Character.LeftLowerLeg.Touched:connect(function(a2)Torso(Z).CanCollide=not Clip;Z.Character.Head.CanCollide=not Clip;Z.Character.HumanoidRootPart.CanCollide=not Clip;if Z.Character.UpperTorso then Z.Character.LowerTorso.CanCollide=not Clip end end)Z.Character.RightHand.Touched:connect(function(a3)Torso(Z).CanCollide=not Clip;Z.Character.Head.CanCollide=not Clip;Z.Character.HumanoidRootPart.CanCollide=not Clip;if Z.Character.UpperTorso then Z.Character.LowerTorso.CanCollide=not Clip end end)Z.Character.LeftHand.Touched:connect(function(a4)Torso(Z).CanCollide=not Clip;Z.Character.Head.CanCollide=not Clip;Z.Character.HumanoidRootPart.CanCollide=not Clip;if Z.Character.UpperTorso then Z.Character.LowerTorso.CanCollide=not Clip end end)Z.Character.Head.Touched:connect(function(a5)Torso(Z).CanCollide=not Clip;Z.Character.Head.CanCollide=not Clip;Z.Character.HumanoidRootPart.CanCollide=not Clip;if Z.Character.UpperTorso then Z.Character.LowerTorso.CanCollide=not Clip end end)Z.Character.Torso.Touched:connect(function(a6)Torso(Z).CanCollide=not Clip;Z.Character.Head.CanCollide=not Clip;Z.Character.HumanoidRootPart.CanCollide=not Clip;if Z.Character.UpperTorso then Z.Character.LowerTorso.CanCollide=not Clip end end)
  190. end
  191. end)
  192. end)
  193.  
  194. AutoXPOff.Name = "AutoXP [Off]"
  195. AutoXPOff.Parent = MainTab
  196. AutoXPOff.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  197. AutoXPOff.BackgroundTransparency = 0.25
  198. AutoXPOff.BorderColor3 = Color3.new(1, 1, 1)
  199. AutoXPOff.BorderSizePixel = 2
  200. AutoXPOff.Position = UDim2.new(0.36888656, 0, 0.441685736, 0)
  201. AutoXPOff.Size = UDim2.new(0, 72, 0, 30)
  202. AutoXPOff.Font = Enum.Font.Cartoon
  203. AutoXPOff.Text = "AutoXP [Off]"
  204. AutoXPOff.TextColor3 = Color3.new(1, 1, 1)
  205. AutoXPOff.TextSize = 14
  206. AutoXPOff.MouseButton1Click:connect (function()
  207. AutoXPOff.Visible = false
  208. AutoXPOn.Visible = true
  209. _G.YEET = true
  210. while wait() do
  211. if _G.YEET then
  212. for _, v in next, game.Players:GetPlayers() do
  213. if v.Team.Name == "Criminals" then
  214. game.Players.LocalPlayer.Character.Humanoid:UnequipTools()
  215. if not workspace.ObjectSelection:FindFirstChild(v.Name.."'s Vehicle") then
  216. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame
  217. game.Players.LocalPlayer.Character.Humanoid:EquipTool(game.Players.LocalPlayer.Backpack:FindFirstChild("Tazer"))
  218. game.ReplicatedStorage.Event:FireServer("TAZ", v.Character.HumanoidRootPart)
  219. end
  220. end
  221. end
  222. end
  223. end
  224. _G.YEET = true
  225. end)
  226.  
  227. AutoRob.Name = "AutoRob"
  228. AutoRob.Parent = MainTab
  229. AutoRob.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  230. AutoRob.BackgroundTransparency = 0.25
  231. AutoRob.BorderColor3 = Color3.new(1, 1, 1)
  232. AutoRob.BorderSizePixel = 2
  233. AutoRob.Position = UDim2.new(0.36888656, 0, 0.135094583, 0)
  234. AutoRob.Size = UDim2.new(0, 72, 0, 30)
  235. AutoRob.Font = Enum.Font.Cartoon
  236. AutoRob.Text = "AutoRob"
  237. AutoRob.TextColor3 = Color3.new(1, 1, 1)
  238. AutoRob.TextSize = 14
  239. AutoRob.MouseButton1Click:connect (function()
  240. game:GetService("RunService").Stepped:connect(function()
  241. game.Players.LocalPlayer.Character.Head.CanCollide = false
  242. game.Players.LocalPlayer.Character.LowerTorso.CanCollide = false
  243. game.Players.LocalPlayer.Character.HumanoidRootPart.CanCollide = false
  244. game.Players.LocalPlayer.Character.UpperTorso.CanCollide = false
  245. end)
  246.  
  247. game.Players.LocalPlayer.Character.HumanoidRootPart.Changed:connect(function()
  248. game.Players.LocalPlayer.Character.Head.CanCollide = false
  249. game.Players.LocalPlayer.Character.LowerTorso.CanCollide = false
  250. game.Players.LocalPlayer.Character.HumanoidRootPart.CanCollide = false
  251. game.Players.LocalPlayer.Character.UpperTorso.CanCollide = false
  252. end)
  253.  
  254. local busy = false
  255. local busy_with = "busy_with"
  256. local thing = "thing"
  257. local busy_str = "Can't rob %s because you are busy with %s"
  258. local not_finished = "Can't rob other things because the %s rob isn't finished"
  259.  
  260. local cashRegister = coroutine.wrap(function()
  261. while wait(5) do
  262. pcall(function()
  263. if busy == false then
  264. for i, v in pairs(workspace.ObjectSelection:GetChildren()) do
  265. if v.Name == "CashRegister" then
  266. local part = v:FindFirstChildOfClass("Part")
  267. if part.Name ~= "Nope" then
  268. busy = true
  269. busy_with = "cash registers"
  270. local pos = v.SmashCash.Position
  271. for i = 1, math.random(5,10) do
  272. wait(.1)
  273. game.Players.LocalPlayer.Character.HumanoidRootPart.Position = pos
  274. end
  275. wait(0.3)
  276. v.SmashCash.SmashCash.Event:FireServer()
  277. wait(2)
  278. if part.Name ~= "Nope" then
  279. warn(string.format(not_finished, "cash registers"))
  280. else
  281. busy = false
  282. end
  283. end
  284. end
  285. end
  286. else
  287. thing = "cash registers"
  288. warn(string.format(busy_str, thing, busy_with))
  289. end
  290. end)
  291. end
  292. end)
  293.  
  294. local diamondBox = coroutine.wrap(function()
  295. while wait(5) do
  296. pcall(function()
  297. if busy == false then
  298. for i, v in pairs(workspace.ObjectSelection:GetChildren()) do
  299. if v.Name == "DiamondBox" then
  300. local part = v:FindFirstChildOfClass("Part")
  301. if part.Name ~= "Nope" then
  302. busy = true
  303. busy_with = "diamond boxes"
  304. local pos = v.SmashCash.Position
  305. for i = 1, math.random(5,10) do
  306. wait(.1)
  307. game.Players.LocalPlayer.Character.HumanoidRootPart.Position = pos
  308. end
  309. wait(0.3)
  310. v.SmashCash.SmashCash.Event:FireServer()
  311. wait(2)
  312. if part.Name ~= "Nope" then
  313. warn(string.format(not_finished, "diamond boxes"))
  314. else
  315. busy = false
  316. end
  317. end
  318. end
  319. end
  320. else
  321. thing = "diamond boxes"
  322. warn(string.format(busy_str, thing, busy_with))
  323. end
  324. end)
  325. end
  326. end)
  327.  
  328. local safe = coroutine.wrap(function()
  329. while wait(5) do
  330. pcall(function()
  331. if busy == false then
  332. for i, v in pairs(workspace.ObjectSelection:GetChildren()) do
  333. if v.Name == "Safe" then
  334. local part = v:FindFirstChildOfClass("Part")
  335. if part.Name ~= "Nope" then
  336. busy = true
  337. busy_with = "safes"
  338. local pos = v.SmashCash.Position
  339. for i = 1, math.random(5,10) do
  340. wait(.1)
  341. game.Players.LocalPlayer.Character.HumanoidRootPart.Position = pos
  342. end
  343. wait(0.3)
  344. v.SmashCash.SmashCash.Event:FireServer()
  345. wait(2)
  346. if part.Name ~= "Nope" then
  347. warn(string.format(not_finished, "safes"))
  348. else
  349. busy = false
  350. end
  351. end
  352. end
  353. end
  354. else
  355. thing = "safes"
  356. warn(string.format(busy_str, thing, busy_with))
  357. end
  358. end)
  359. end
  360. end)
  361.  
  362. local tipJar = coroutine.wrap(function()
  363. while wait(5) do
  364. pcall(function()
  365. if busy == false then
  366. for i, v in pairs(workspace.ObjectSelection:GetChildren()) do
  367. if v.Name == "TipJar" then
  368. local part = v:FindFirstChildOfClass("Part")
  369. if part.Name == "SmashCash" then
  370. busy = true
  371. busy_with = "tip jars"
  372. local pos = v.SmashCash.Position
  373. for i = 1, math.random(5,10) do
  374. wait(.1)
  375. game.Players.LocalPlayer.Character.HumanoidRootPart.Position = pos
  376. end
  377. wait(0.3)
  378. v.SmashCash.SmashCash.Event:FireServer()
  379. wait(2)
  380. if part.Name == "SmashCash" then
  381. warn(string.format(not_finished, "tip jars"))
  382. else
  383. busy = false
  384. end
  385. end
  386. end
  387. end
  388. else
  389. thing = "tip jars"
  390. warn(string.format(busy_str, thing, busy_with))
  391. end
  392. end)
  393. end
  394. end)
  395.  
  396. local cash = coroutine.wrap(function()
  397. while wait(5) do
  398. pcall(function()
  399. if busy == false then
  400. for i, v in pairs(workspace.ObjectSelection:GetChildren()) do
  401. if v.Name == "Cash" then
  402. local part = v:FindFirstChildOfClass("MeshPart")
  403. if part.Name == "Cash" then
  404. busy = true
  405. busy_with = "cash"
  406. local pos = v.Cash.Position
  407. for i = 1, math.random(5,10) do
  408. wait(.1)
  409. game.Players.LocalPlayer.Character.HumanoidRootPart.Position = pos
  410. end
  411. wait(0.3)
  412. v.Cash.Cash.Event:FireServer()
  413. wait(2)
  414. if part.Name == "Cash" then
  415. warn(string.format(not_finished, "cash"))
  416. else
  417. busy = false
  418. end
  419. end
  420. end
  421. end
  422. else
  423. thing = "cash"
  424. warn(string.format(busy_str, thing, busy_with))
  425. end
  426. end)
  427. end
  428. end)
  429.  
  430. local tv = coroutine.wrap(function()
  431. while wait(5) do
  432. pcall(function()
  433. if busy == false then
  434. for i, v in pairs(workspace.ObjectSelection:GetChildren()) do
  435. if v.Name == "TV" then
  436. local part = v:FindFirstChildOfClass("Part")
  437. if part.Name ~= "Nope" then
  438. busy = true
  439. busy_with = "TVs"
  440. local pos = v.StealTV.Position
  441. for i = 1, math.random(5,10) do
  442. wait(.1)
  443. game.Players.LocalPlayer.Character.HumanoidRootPart.Position = pos
  444. end
  445. wait(0.3)
  446. v.StealTV.StealTV.Event:FireServer()
  447. wait(2)
  448. if part.Name ~= "Nope" then
  449. warn(string.format(not_finished, "TVs"))
  450. else
  451. busy = false
  452. end
  453. end
  454. end
  455. end
  456. else
  457. thing = "TVs"
  458. warn(string.format(busy_str, thing, busy_with))
  459. end
  460. end)
  461. end
  462. end)
  463.  
  464. local dropCrate = coroutine.wrap(function()
  465. while wait(5) do
  466. pcall(function()
  467. if busy == false then
  468. for i, v in pairs(workspace.ObjectSelection:GetChildren()) do
  469. if v.Name == "DropCrate" then
  470. local part = v:FindFirstChildOfClass("Part")
  471. if part.Name ~= "Nope" then
  472. busy = true
  473. busy_with = "drop crates"
  474. local pos = v.DropCrate.Position
  475. for i = 1, math.random(5,10) do
  476. wait(.1)
  477. game.Players.LocalPlayer.Character.HumanoidRootPart.Position = pos
  478. end
  479. wait(0.3)
  480. v.DropCrate.DropCrate.Event:FireServer()
  481. wait(2)
  482. if part.Name ~= "Nope" then
  483. warn(string.format(not_finished, "drop crates"))
  484. else
  485. busy = false
  486. end
  487. end
  488. end
  489. end
  490. else
  491. thing = "drop crates"
  492. warn(string.format(busy_str, thing, busy_with))
  493. end
  494. end)
  495. end
  496. end)
  497.  
  498. local atm = coroutine.wrap(function()
  499. while wait(5) do
  500. pcall(function()
  501. if busy == false then
  502. for i, v in pairs(workspace.ObjectSelection:GetChildren()) do
  503. if v.Name == "ATM" then
  504. local part = v:FindFirstChildOfClass("Part")
  505. if part.Name ~= "Nope" then
  506. busy = true
  507. busy_with = "ATMs"
  508. local pos = v.ATM.Position
  509. for i = 1, math.random(5,10) do
  510. wait(.1)
  511. game.Players.LocalPlayer.Character.HumanoidRootPart.Position = pos
  512. end
  513. wait(0.3)
  514. v.ATM.ATM.Event:FireServer()
  515. wait(2)
  516. if part.Name ~= "Nope" then
  517. warn(string.format(not_finished, "ATMs"))
  518. else
  519. busy = false
  520. end
  521. end
  522. end
  523. end
  524. else
  525. thing = "ATMs"
  526. warn(string.format(busy_str, thing, busy_with))
  527. end
  528. end)
  529. end
  530. end)
  531.  
  532. cashRegister()
  533. wait(20)
  534. diamondBox()
  535. wait(15)
  536. safe()
  537. wait(15)
  538. tipJar()
  539. wait(15)
  540. cash()
  541. wait(15)
  542. tv()
  543. --wait(15)
  544. --dropCrate()
  545. wait(15)
  546. atm()
  547. end)
  548.  
  549. AutoArrest.Name = "AutoArrest"
  550. AutoArrest.Parent = MainTab
  551. AutoArrest.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  552. AutoArrest.BackgroundTransparency = 0.25
  553. AutoArrest.BorderColor3 = Color3.new(1, 1, 1)
  554. AutoArrest.BorderSizePixel = 2
  555. AutoArrest.Position = UDim2.new(0.36888653, 0, 0.290291309, 0)
  556. AutoArrest.Size = UDim2.new(0, 72, 0, 30)
  557. AutoArrest.Font = Enum.Font.Cartoon
  558. AutoArrest.Text = "AutoArrest"
  559. AutoArrest.TextColor3 = Color3.new(1, 1, 1)
  560. AutoArrest.TextSize = 14
  561. AutoArrest.MouseButton1Click:connect (function()
  562. while wait() do
  563. game.Players.LocalPlayer.Character.Humanoid:EquipTool(game.Players.LocalPlayer.Backpack.Handcuffs)
  564. game.ReplicatedStorage.Event:FireServer("Equip", game.Players.LocalPlayer.Character, game.Players.LocalPlayer.Character.Handcuffs.Handle)
  565. for i,v in pairs(game.Players:GetChildren()) do
  566. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame
  567. wait(0.4)
  568. game.ReplicatedStorage.Event:FireServer("Arrest", v)
  569. wait(.2)
  570. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(0, 0,0)
  571. end
  572. wait(0.25)
  573. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(0, -1000,0)
  574. game.Players.LocalPlayer.Character:BreakJoints()
  575. wait(20)
  576. end
  577. end)
  578.  
  579. Teleports.Name = "Teleports"
  580. Teleports.Parent = MainTab
  581. Teleports.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  582. Teleports.BackgroundTransparency = 0.25
  583. Teleports.BorderColor3 = Color3.new(1, 1, 1)
  584. Teleports.BorderSizePixel = 2
  585. Teleports.Position = UDim2.new(0.692305267, 0, 0.135094613, 0)
  586. Teleports.Size = UDim2.new(0, 72, 0, 30)
  587. Teleports.Font = Enum.Font.Cartoon
  588. Teleports.Text = "Teleports"
  589. Teleports.TextColor3 = Color3.new(1, 1, 1)
  590. Teleports.TextSize = 14
  591. Teleports.MouseButton1Click:connect (function()
  592. TeleportTab.Visible = true
  593. end)
  594.  
  595. AutoXPOn.Name = "AutoXP [On]"
  596. AutoXPOn.Parent = MainTab
  597. AutoXPOn.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  598. AutoXPOn.BackgroundTransparency = 0.25
  599. AutoXPOn.BorderColor3 = Color3.new(1, 1, 1)
  600. AutoXPOn.BorderSizePixel = 2
  601. AutoXPOn.Position = UDim2.new(0.36888653, 0, 0.441685677, 0)
  602. AutoXPOn.Size = UDim2.new(0, 72, 0, 30)
  603. AutoXPOn.Visible = false
  604. AutoXPOn.Font = Enum.Font.Cartoon
  605. AutoXPOn.Text = "AutoXP [On]"
  606. AutoXPOn.TextColor3 = Color3.new(1, 1, 1)
  607. AutoXPOn.TextSize = 14
  608. AutoXPOn.MouseButton1Click:connect (function()
  609. AutoXPOn.Visible = false
  610. _G.YEET = false
  611. AutoXPOff.Visible = true
  612. end)
  613.  
  614. SetSpeed.Name = "Set Speed"
  615. SetSpeed.Parent = MainTab
  616. SetSpeed.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  617. SetSpeed.BackgroundTransparency = 0.25
  618. SetSpeed.BorderColor3 = Color3.new(1, 1, 1)
  619. SetSpeed.BorderSizePixel = 2
  620. SetSpeed.Position = UDim2.new(0.224057466, 0, 0.664066195, 0)
  621. SetSpeed.Size = UDim2.new(0, 73, 0, 30)
  622. SetSpeed.Font = Enum.Font.Cartoon
  623. SetSpeed.Text = "Set Speed"
  624. SetSpeed.TextColor3 = Color3.new(1, 1, 1)
  625. SetSpeed.TextSize = 14
  626. SetSpeed.MouseButton1Click:connect (function()
  627. plr = game.Players.LocalPlayer
  628. plr.Character.Humanoid.WalkSpeed = Number.Text
  629. end)
  630.  
  631. SetGravity.Name = "Set Gravity"
  632. SetGravity.Parent = MainTab
  633. SetGravity.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  634. SetGravity.BackgroundTransparency = 0.25
  635. SetGravity.BorderColor3 = Color3.new(1, 1, 1)
  636. SetGravity.BorderSizePixel = 2
  637. SetGravity.Position = UDim2.new(0.52543211, 0, 0.664066195, 0)
  638. SetGravity.Size = UDim2.new(0, 72, 0, 30)
  639. SetGravity.Font = Enum.Font.Cartoon
  640. SetGravity.Text = "Set Gravity"
  641. SetGravity.TextColor3 = Color3.new(1, 1, 1)
  642. SetGravity.TextSize = 14
  643. SetGravity.MouseButton1Click:connect (function()
  644. game.Workspace.Gravity = Number.Text
  645. end)
  646.  
  647. Number.Name = "Number"
  648. Number.Parent = MainTab
  649. Number.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  650. Number.BackgroundTransparency = 0.25
  651. Number.BorderColor3 = Color3.new(1, 1, 1)
  652. Number.BorderSizePixel = 2
  653. Number.Position = UDim2.new(0.224057466, 0, 0.807674289, 0)
  654. Number.Size = UDim2.new(0, 157, 0, 21)
  655. Number.Font = Enum.Font.Cartoon
  656. Number.Text = ""
  657. Number.TextColor3 = Color3.new(0, 0, 0)
  658. Number.TextSize = 14
  659.  
  660. ExitMain.Name = "Exit Main"
  661. ExitMain.Parent = MainTab
  662. ExitMain.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  663. ExitMain.BorderSizePixel = 0
  664. ExitMain.Position = UDim2.new(0.916998029, 0, 0, 0)
  665. ExitMain.Size = UDim2.new(0, 23, 0, 19)
  666. ExitMain.Font = Enum.Font.Cartoon
  667. ExitMain.Text = "X"
  668. ExitMain.TextColor3 = Color3.new(1, 1, 1)
  669. ExitMain.TextSize = 14
  670. ExitMain.MouseButton1Click:connect (function()
  671. MainTab.Visible = false
  672. end)
  673.  
  674. TeleportTab.Name = "Teleport Tab"
  675. TeleportTab.Parent = ScreenGui
  676. TeleportTab.Active = true
  677. TeleportTab.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  678. TeleportTab.BackgroundTransparency = 0.25
  679. TeleportTab.BorderColor3 = Color3.new(1, 1, 1)
  680. TeleportTab.BorderSizePixel = 2
  681. TeleportTab.ClipsDescendants = true
  682. TeleportTab.Position = UDim2.new(0.621988893, 0, 0.218673214, 0)
  683. TeleportTab.Selectable = true
  684. TeleportTab.Size = UDim2.new(0, 84, 0, 219)
  685. TeleportTab.Visible = false
  686. TeleportTab.Draggable = true
  687.  
  688. Header_2.Name = "Header"
  689. Header_2.Parent = TeleportTab
  690. Header_2.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  691. Header_2.BorderColor3 = Color3.new(1, 1, 1)
  692. Header_2.BorderSizePixel = 2
  693. Header_2.Size = UDim2.new(0, 84, 0, 20)
  694. Header_2.Font = Enum.Font.Cartoon
  695. Header_2.Text = ""
  696. Header_2.TextColor3 = Color3.new(1, 1, 1)
  697. Header_2.TextSize = 22
  698.  
  699. ExitTeleports.Name = "Exit Teleports"
  700. ExitTeleports.Parent = TeleportTab
  701. ExitTeleports.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  702. ExitTeleports.BorderSizePixel = 0
  703. ExitTeleports.Position = UDim2.new(0.729411781, 0, 0, 0)
  704. ExitTeleports.Size = UDim2.new(0, 23, 0, 19)
  705. ExitTeleports.Font = Enum.Font.Cartoon
  706. ExitTeleports.Text = "X"
  707. ExitTeleports.TextColor3 = Color3.new(1, 1, 1)
  708. ExitTeleports.TextSize = 14
  709. ExitTeleports.MouseButton1Click:connect (function()
  710. TeleportTab.Visible = false
  711. end)
  712.  
  713. Garage.Name = "Garage"
  714. Garage.Parent = TeleportTab
  715. Garage.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  716. Garage.BackgroundTransparency = 0.25
  717. Garage.BorderColor3 = Color3.new(1, 1, 1)
  718. Garage.BorderSizePixel = 2
  719. Garage.Position = UDim2.new(0.0747687817, 0, 0.652119875, 0)
  720. Garage.Size = UDim2.new(0, 72, 0, 30)
  721. Garage.Font = Enum.Font.Cartoon
  722. Garage.Text = "Garage"
  723. Garage.TextColor3 = Color3.new(1, 1, 1)
  724. Garage.TextSize = 17
  725. Garage.MouseButton1Click:connect (function()
  726. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(231.40872192383,24.549949645996,-493.32705688477)
  727. end)
  728.  
  729. Base.Name = "Base"
  730. Base.Parent = TeleportTab
  731. Base.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  732. Base.BackgroundTransparency = 0.25
  733. Base.BorderColor3 = Color3.new(1, 1, 1)
  734. Base.BorderSizePixel = 2
  735. Base.Position = UDim2.new(0.0747687817, 0, 0.480433851, 0)
  736. Base.Size = UDim2.new(0, 72, 0, 30)
  737. Base.Font = Enum.Font.Cartoon
  738. Base.Text = "Base"
  739. Base.TextColor3 = Color3.new(1, 1, 1)
  740. Base.TextSize = 17
  741. Base.MouseButton1Click:connect (function()
  742. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(2116.2019042969,25.10528755188,348.36651611328)
  743. end)
  744.  
  745. Camaro.Name = "Camaro"
  746. Camaro.Parent = TeleportTab
  747. Camaro.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  748. Camaro.BackgroundTransparency = 0.25
  749. Camaro.BorderColor3 = Color3.new(1, 1, 1)
  750. Camaro.BorderSizePixel = 2
  751. Camaro.Position = UDim2.new(0.0747687817, 0, 0.827622652, 0)
  752. Camaro.Size = UDim2.new(0, 72, 0, 30)
  753. Camaro.Font = Enum.Font.Cartoon
  754. Camaro.Text = "Camaro"
  755. Camaro.TextColor3 = Color3.new(1, 1, 1)
  756. Camaro.TextSize = 17
  757. Camaro.MouseButton1Click:connect (function()
  758. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-882.36700439453,53.278591156006,-2648.3139648438)
  759. end)
  760.  
  761. Bank.Name = "Bank"
  762. Bank.Parent = TeleportTab
  763. Bank.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  764. Bank.BackgroundTransparency = 0.25
  765. Bank.BorderColor3 = Color3.new(1, 1, 1)
  766. Bank.BorderSizePixel = 2
  767. Bank.Position = UDim2.new(0.0747687817, 0, 0.119703263, 0)
  768. Bank.Size = UDim2.new(0, 72, 0, 30)
  769. Bank.Font = Enum.Font.Cartoon
  770. Bank.Text = "Bank"
  771. Bank.TextColor3 = Color3.new(1, 1, 1)
  772. Bank.TextSize = 17
  773. Bank.MouseButton1Click:connect (function()
  774. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(690.11553955078,24.889343261719,446.09664916992)
  775. end)
  776.  
  777. Jewelry.Name = "Jewelry"
  778. Jewelry.Parent = TeleportTab
  779. Jewelry.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  780. Jewelry.BackgroundTransparency = 0.25
  781. Jewelry.BorderColor3 = Color3.new(1, 1, 1)
  782. Jewelry.BorderSizePixel = 2
  783. Jewelry.Position = UDim2.new(0.0747687817, 0, 0.303432226, 0)
  784. Jewelry.Size = UDim2.new(0, 72, 0, 30)
  785. Jewelry.Font = Enum.Font.Cartoon
  786. Jewelry.Text = "Jewelry"
  787. Jewelry.TextColor3 = Color3.new(1, 1, 1)
  788. Jewelry.TextSize = 17
  789. Jewelry.MouseButton1Click:connect (function()
  790. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-203.3496960449,24.578149795532,731.06182861328)
  791. end)
  792.  
  793. Header_3.Name = "Header"
  794. Header_3.Parent = GunsTab
  795. Header_3.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  796. Header_3.BorderColor3 = Color3.new(1, 1, 1)
  797. Header_3.BorderSizePixel = 2
  798. Header_3.Size = UDim2.new(0, 84, 0, 20)
  799. Header_3.Font = Enum.Font.Cartoon
  800. Header_3.Text = ""
  801. Header_3.TextColor3 = Color3.new(1, 1, 1)
  802. Header_3.TextSize = 22
  803.  
  804. Credits_2.Name = "Credits"
  805. Credits_2.Parent = ScreenGui
  806. Credits_2.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  807. Credits_2.BackgroundTransparency = 0.25
  808. Credits_2.BorderColor3 = Color3.new(1, 1, 1)
  809. Credits_2.BorderSizePixel = 2
  810. Credits_2.ClipsDescendants = true
  811. Credits_2.Position = UDim2.new(0.439777642, 0, 0.337837845, 0)
  812. Credits_2.Selectable = true
  813. Credits_2.Size = UDim2.new(0, 195, 0, 241)
  814.  
  815. Bean07.Name = "Bean07"
  816. Bean07.Parent = Credits_2
  817. Bean07.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  818. Bean07.BackgroundTransparency = 0.25
  819. Bean07.BorderColor3 = Color3.new(1, 1, 1)
  820. Bean07.BorderSizePixel = 2
  821. Bean07.Position = UDim2.new(0.0535057895, 0, 0.178707227, 0)
  822. Bean07.Size = UDim2.new(0, 174, 0, 30)
  823. Bean07.Font = Enum.Font.Cartoon
  824. Bean07.Text = "Bean07 for Auto XP!"
  825. Bean07.TextColor3 = Color3.new(1, 1, 1)
  826. Bean07.TextScaled = true
  827. Bean07.TextSize = 30
  828. Bean07.TextWrapped = true
  829.  
  830. Credits_3.Name = "Credits"
  831. Credits_3.Parent = Credits_2
  832. Credits_3.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  833. Credits_3.BorderColor3 = Color3.new(1, 1, 1)
  834. Credits_3.BorderSizePixel = 2
  835. Credits_3.Size = UDim2.new(0, 195, 0, 33)
  836. Credits_3.Font = Enum.Font.Cartoon
  837. Credits_3.Text = "Credits"
  838. Credits_3.TextColor3 = Color3.new(1, 1, 1)
  839. Credits_3.TextSize = 22
  840.  
  841. TheLondiux.Name = "TheLondiux"
  842. TheLondiux.Parent = Credits_2
  843. TheLondiux.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  844. TheLondiux.BackgroundTransparency = 0.25
  845. TheLondiux.BorderColor3 = Color3.new(1, 1, 1)
  846. TheLondiux.BorderSizePixel = 2
  847. TheLondiux.Position = UDim2.new(0.0535057895, 0, 0.334600776, 0)
  848. TheLondiux.Size = UDim2.new(0, 174, 0, 30)
  849. TheLondiux.Font = Enum.Font.Cartoon
  850. TheLondiux.Text = "TheLondiux for Auto Rob!"
  851. TheLondiux.TextColor3 = Color3.new(1, 1, 1)
  852. TheLondiux.TextScaled = true
  853. TheLondiux.TextSize = 30
  854. TheLondiux.TextWrapped = true
  855.  
  856. Tos.Name = "Tos"
  857. Tos.Parent = Credits_2
  858. Tos.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  859. Tos.BackgroundTransparency = 0.25
  860. Tos.BorderColor3 = Color3.new(1, 1, 1)
  861. Tos.BorderSizePixel = 2
  862. Tos.Position = UDim2.new(0.0740187466, 0, 0.50190115, 0)
  863. Tos.Size = UDim2.new(0, 166, 0, 66)
  864. Tos.Font = Enum.Font.Cartoon
  865. Tos.Text = "Please dont give me credit for the Auto Rob or Auto XP, Those scripts were made by other people letting me put them in here, Thanks!"
  866. Tos.TextColor3 = Color3.new(1, 1, 1)
  867. Tos.TextScaled = true
  868. Tos.TextSize = 30
  869. Tos.TextWrapped = true
  870.  
  871. Ok.Name = "Ok!"
  872. Ok.Parent = Credits_2
  873. Ok.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  874. Ok.BackgroundTransparency = 0.25
  875. Ok.BorderColor3 = Color3.new(1, 1, 1)
  876. Ok.BorderSizePixel = 2
  877. Ok.Position = UDim2.new(0.371454626, 0, 0.829875529, 0)
  878. Ok.Size = UDim2.new(0, 49, 0, 30)
  879. Ok.Font = Enum.Font.Cartoon
  880. Ok.Text = "Ok!"
  881. Ok.TextColor3 = Color3.new(1, 1, 1)
  882. Ok.TextScaled = true
  883. Ok.TextSize = 14
  884. Ok.TextWrapped = true
  885. Ok.MouseButton1Click:connect (function()
  886. Credits_2.Visible = false
  887. MainTab.Visible = true
  888. end)
Add Comment
Please, Sign In to add comment