Advertisement
unknownexploits

Mad city auto rob

Mar 19th, 2019
18,597
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 23.11 KB | None | 0 0
  1. Vip = false -- Enable this if you have the VIP gamepass then you will get more money
  2.  
  3. Movment = true -- Enables or disables player movment (by default in false to avoid bugs)
  4. clear_appearance = false -- Useful when you use hide_nametag and clear_appearance together (players wont know who you are)
  5.  
  6. hide_nametag = false -- Disables your nametag for other players (useful to avoid reports)
  7. star = false -- If enabled will show a star for other players if hide nametag is on
  8.  
  9. rob_small_things = true -- Disable this if you don't want to rob small things like: houses, stores...
  10.  
  11. start_toggled = false
  12.  
  13. debug_mode = false -- Enables/disables the debug mode (I use this to test things, idk if is useful for you)
  14. view_invisible_parts = true -- if enabled will show invisble parts if the debug mode is on
  15. show_your_nametag = false
  16.  
  17. bank_cooldown = 500
  18. nightclub_cooldown = 500
  19. casino_cooldown = 500
  20.  
  21. cant_rob = "Can't rob the %s because %s"
  22. -----------------------------------------------------------------------------------------------------------------------------
  23.  
  24. local busy = false
  25. local busy_with = ""
  26. local robbingBank = false
  27. local robbingNightclub = false
  28. local robbingCasino = false
  29. local robbingJewerly = false
  30. local toggled = false
  31.  
  32. function clearAppearance()
  33. if clear_appearance == true then
  34. game.Players.LocalPlayer:ClearCharacterAppearance()
  35. end
  36. end
  37.  
  38. function hideNametag() -- Yes, It replicates because you have the network ownership of your character. Don't fuck me saying that this isn't server sided
  39. if hide_nametag == true and star == true then
  40. game.Players.LocalPlayer.Character.NameTag.Title:Destroy()
  41. game.Players.LocalPlayer.Character.NameTag.Script:Destroy()
  42. game.Players.LocalPlayer.Character.NameTag.Icon.Rank:Destroy()
  43. elseif hide_nametag == true and star == false then
  44. game.Players.LocalPlayer.Character.NameTag:Destroy()
  45. end
  46. end
  47.  
  48. function noclip()
  49. game:GetService("RunService").Stepped:connect(function()
  50. game.Players.LocalPlayer.Character.Head.CanCollide = false
  51. game.Players.LocalPlayer.Character.LowerTorso.CanCollide = false
  52. game.Players.LocalPlayer.Character.HumanoidRootPart.CanCollide = false
  53. game.Players.LocalPlayer.Character.UpperTorso.CanCollide = false
  54. end)
  55. game.Players.LocalPlayer.Character.HumanoidRootPart.Changed:connect(function()
  56. game.Players.LocalPlayer.Character.Head.CanCollide = false
  57. game.Players.LocalPlayer.Character.LowerTorso.CanCollide = false
  58. game.Players.LocalPlayer.Character.HumanoidRootPart.CanCollide = false
  59. game.Players.LocalPlayer.Character.UpperTorso.CanCollide = false
  60. end)
  61. end
  62.  
  63. function message(msg, color)
  64. local msg_color = Color3.fromRGB(0, 0, 0)
  65. if color == "green" then
  66. msg_color = Color3.fromRGB(84, 243, 35)
  67. end
  68. if color == "yellow" then
  69. msg_color = Color3.fromRGB(243, 237, 46)
  70. end
  71. if color == "red" then
  72. msg_color = Color3.fromRGB(243, 4, 4)
  73. end
  74. if color == "dark_red" then
  75. msg_color = Color3.fromRGB(127, 2, 2)
  76. end
  77. if color == "blue" then
  78. msg_color = Color3.fromRGB(65, 48, 255)
  79. end
  80. wait(0.3)
  81. game:GetService("StarterGui"):SetCore("ChatMakeSystemMessage",{
  82. Text = msg;
  83. Color = msg_color;
  84. Font = Enum.Font.Cartoon;
  85. })
  86. end
  87.  
  88. function toggle()
  89. game.Players.LocalPlayer.Chatted:connect(function(msg)
  90. if msg:lower() == "/e toggle" then
  91. if toggled == false then
  92. wait(1)
  93. message("Starting the auto rob...", "yellow")
  94. toggled = true
  95. noclip()
  96. hideNametag()
  97. clearAppearance()
  98. if Movment == false then
  99. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 0
  100. game.Players.LocalPlayer.PlayerScripts.ControlScript.Disabled = true
  101. end
  102. wait(0.5)
  103. message("Auto rob started!", "green")
  104. else
  105. message("Stopping the auto rob...", "yellow")
  106. message("Ending current robs...", "yellow")
  107. repeat
  108. wait()
  109. until(busy == false and robbingBank == false and robbingNightclub == false)
  110. --message("An error ocurred: the script can't stop the auto rob!", "dark_red")
  111. game.Players.LocalPlayer.PlayerScripts.ControlScript.Disabled = false
  112. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  113. toggled = false
  114. --[[for i = 1,10 do
  115. wait(1)
  116. game.Players.LocalPlayer.Character.HumanoidRootPart.Position = Vector3.new(2138,25,358)
  117. end]]
  118. wait(0.5)
  119. game.Players.LocalPlayer.Character.Head:Destroy()
  120. message("Auto rob stopped!", "red")
  121. end
  122. end
  123. end)
  124. end
  125.  
  126. --[[function teleport(xyz)
  127. for i = 1,2 do
  128. wait(3)
  129. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(xyz)
  130. end
  131. end]]
  132.  
  133. local died_fix = coroutine.create(function()
  134. while wait() do
  135. game.Players.LocalPlayer.Character:WaitForChild("Humanoid").Died:Connect(function()
  136. if toggled == true then
  137. toggled = false
  138. wait(10)
  139. message("You died! Resuming the auto rob.", "yellow")
  140. game.Players.LocalPlayer.PlayerScripts.ControlScript.Disabled = false
  141. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  142. wait(5)
  143. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 0
  144. game.Players.LocalPlayer.PlayerScripts.ControlScript.Disabled = true
  145. wait(1)
  146. hideNametag()
  147. clearAppearance()
  148. busy = false
  149. toggled = true
  150. message("Auto rob successfully resumed!", "green")
  151. wait(20)
  152. end
  153. end)
  154. end
  155. end)
  156.  
  157. local debug_things = coroutine.create(function()
  158. if debug_mode == true and view_invisible_parts == true then
  159. for i, v in pairs(workspace:GetDescendants()) do
  160. if v:IsA("Part") and v.Transparency == 1 then
  161. v.Transparency = 0.3
  162. end
  163. end
  164. end
  165. if debug_mode == true and show_your_nametag == true then
  166. game.Players.LocalPlayer.Character.NameTag.Enabled = true
  167. end
  168. end)
  169.  
  170. local robCashRegister = coroutine.create(function()
  171. while wait(5) do
  172. pcall(function()
  173. if toggled == true and busy == false and robbingBank == false and robbingNightclub == false then
  174. for i, v in pairs(workspace.ObjectSelection:GetChildren()) do
  175. if v.Name == "CashRegister" then
  176. local part = v:FindFirstChildOfClass("Part")
  177. if part.Name ~= "Nope" and robbingBank == false and robbingNightclub == false then
  178. busy = true
  179. busy_with = "robbing cash registers"
  180. wait(1.5)
  181. local pos = v.SmashCash.Position
  182. for i = 1,5 do
  183. wait(1)
  184. game.Players.LocalPlayer.Character.HumanoidRootPart.Position = pos
  185. end
  186. wait(0.5)
  187. v.SmashCash.SmashCash.Event:FireServer()
  188. wait(2)
  189. if part.Name == "Nope" and robbingBank == false and robbingNightclub == false then
  190. busy = false
  191. end
  192. end
  193. end
  194. end
  195. elseif debug_mode == true and busy == true then
  196. print(string.format(cant_rob, "cash registers", busy_with))
  197. end
  198. end)
  199. end
  200. end)
  201.  
  202. local robDiamondBox = coroutine.create(function()
  203. while wait(5) do
  204. pcall(function()
  205. if toggled == true and busy == false and robbingBank == false and robbingNightclub == false then
  206. for i, v in pairs(workspace.ObjectSelection:GetChildren()) do
  207. if v.Name == "DiamondBox" then
  208. local part = v:FindFirstChildOfClass("Part")
  209. if part.Name ~= "Nope" and robbingBank == false and robbingNightclub == false then
  210. busy = true
  211. busy_with = "robbing diamond boxes"
  212. wait(1.5)
  213. local pos = v.SmashCash.Position
  214. for i = 1,5 do
  215. wait(1)
  216. game.Players.LocalPlayer.Character.HumanoidRootPart.Position = pos
  217. end
  218. wait(0.3)
  219. v.SmashCash.SmashCash.Event:FireServer()
  220. wait(2)
  221. if part.Name ~= "Nope" and robbingBank == false and robbingNightclub == false then
  222.  
  223. else
  224. busy = false
  225. end
  226. end
  227. end
  228. end
  229. elseif debug_mode == true and busy == true then
  230. print(string.format(cant_rob, "diamond boxes", busy_with))
  231. end
  232. end)
  233. end
  234. end)
  235.  
  236. local robSafe = coroutine.create(function()
  237. while wait(5) do
  238. pcall(function()
  239. if toggled == true and busy == false and robbingBank == false and robbingNightclub == false then
  240. for i, v in pairs(workspace.ObjectSelection:GetChildren()) do
  241. if v.Name == "Safe" then
  242. local part = v:FindFirstChildOfClass("Part")
  243. if part.Name ~= "Nope" and robbingBank == false and robbingNightclub == false then
  244. busy = true
  245. busy_with = "robbing safes"
  246. wait(5)
  247. local pos = v.SmashCash.Position
  248. for i = 1,10 do
  249. wait(0.3)
  250. game.Players.LocalPlayer.Character.HumanoidRootPart.Position = pos
  251. end
  252. wait(0.3)
  253. v.SmashCash.SmashCash.Event:FireServer()
  254. wait(2)
  255. if part.Name ~= "Nope" and robbingBank == false and robbingNightclub == false then
  256.  
  257. else
  258. busy = false
  259. end
  260. end
  261. end
  262. end
  263. elseif debug_mode == true and busy == true then
  264. print(string.format(cant_rob, "safes", busy_with))
  265. end
  266. end)
  267. end
  268. end)
  269.  
  270. local robTipJar = coroutine.create(function()
  271. while wait(5) do
  272. pcall(function()
  273. if toggled == true and busy == false and robbingBank == false and robbingNightclub == false then
  274. for i, v in pairs(workspace.ObjectSelection:GetChildren()) do
  275. if v.Name == "TipJar" then
  276. local part = v:FindFirstChildOfClass("Part")
  277. if part.Name == "SmashCash" and robbingBank == false and robbingNightclub == false then
  278. busy = true
  279. busy_with = "robbing tip jars"
  280. local pos = v.SmashCash.Position
  281. for i = 1,5 do
  282. wait(1)
  283. game.Players.LocalPlayer.Character.HumanoidRootPart.Position = pos
  284. end
  285. wait(0.3)
  286. v.SmashCash.SmashCash.Event:FireServer()
  287. wait(2)
  288. if part.Name == "SmashCash" and robbingBank == false and robbingNightclub == false then
  289.  
  290. else
  291. busy = false
  292. end
  293. end
  294. end
  295. end
  296. elseif debug_mode == true and busy == true then
  297. print(string.format(cant_rob, "tip jars", busy_with))
  298. end
  299. end)
  300. end
  301. end)
  302.  
  303. local robLuggage = coroutine.create(function()
  304. while wait(5) do
  305. pcall(function()
  306. if toggled == true and busy == false and robbingBank == false and robbingNightclub == false then
  307. for i, v in pairs(workspace.ObjectSelection:GetChildren()) do
  308. if v.Name == "Luggage" then
  309. local part = v:FindFirstChildOfClass("Part")
  310. if part.Name ~= "Nope" and robbingBank == false and robbingNightclub == false then
  311. busy = true
  312. busy_with = "robbing luggage"
  313. wait(1.5)
  314. local pos = v.SmashCash.Position
  315. for i = 1,5 do
  316. wait(1)
  317. game.Players.LocalPlayer.Character.HumanoidRootPart.Position = pos
  318. end
  319. wait(0.5)
  320. v.SmashCash.SmashCash.Event:FireServer()
  321. wait(2)
  322. if part.Name == "Nope" and robbingBank == false and robbingNightclub == false then
  323. busy = false
  324. end
  325. end
  326. end
  327. end
  328. elseif debug_mode == true and busy == true then
  329. print(string.format(cant_rob, "cash registers", busy_with))
  330. end
  331. end)
  332. end
  333. end)
  334.  
  335. local robCash = coroutine.create(function()
  336. while wait(5) do
  337. wait()
  338. pcall(function()
  339. if toggled == true and busy == false and robbingBank == false and robbingNightclub == false then
  340. for i, v in pairs(workspace.ObjectSelection:GetChildren()) do
  341. if v.Name == "Cash" then
  342. local part = v:FindFirstChildOfClass("MeshPart")
  343. if part.Name == "Cash" and robbingBank == false and robbingNightclub == false then
  344. busy = true
  345. busy_with = "robbing cash"
  346. local pos = v.Cash.Position
  347. for i = 1,10 do
  348. wait(0.3)
  349. game.Players.LocalPlayer.Character.HumanoidRootPart.Position = pos
  350. end
  351. wait(0.3)
  352. v.Cash.Cash.Event:FireServer()
  353. wait(2)
  354. if part.Name == "Cash" and robbingBank == false and robbingNightclub == false then
  355.  
  356. else
  357. busy = false
  358. end
  359. end
  360. end
  361. end
  362. elseif debug_mode == true and busy == true then
  363. print(string.format(cant_rob, "cash", busy_with))
  364. end
  365. end)
  366. end
  367. end)
  368.  
  369. local robTv = coroutine.create(function()
  370. while wait(5) do
  371. pcall(function()
  372. if toggled == true and busy == false and robbingBank == false and robbingNightclub == false then
  373. for i, v in pairs(workspace.ObjectSelection:GetChildren()) do
  374. if v.Name == "TV" then
  375. local part = v:FindFirstChildOfClass("Part")
  376. if part.Name ~= "Nope" and robbingBank == false and robbingNightclub == false then
  377. busy = true
  378. busy_with = "robbing TVs"
  379. wait(3)
  380. local pos = v.StealTV.Position
  381. for i = 1,5 do
  382. wait(1)
  383. game.Players.LocalPlayer.Character.HumanoidRootPart.Position = pos
  384. end
  385. wait(0.3)
  386. v.StealTV.StealTV.Event:FireServer()
  387. wait(2)
  388. if part.Name ~= "Nope" and robbingBank == false and robbingNightclub == false then
  389.  
  390. else
  391. busy = false
  392. end
  393. end
  394. end
  395. end
  396. elseif debug_mode == true and busy == true then
  397. print(string.format(cant_rob, "TVs", busy_with))
  398. end
  399. end)
  400. end
  401. end)
  402.  
  403. local robAtm = coroutine.create(function()
  404. while wait(5) do
  405. pcall(function()
  406. if toggled == true and busy == false and robbingBank == false and robbingNightclub == false then
  407. for i, v in pairs(workspace.ObjectSelection:GetChildren()) do
  408. if v.Name == "ATM" then
  409. local part = v:FindFirstChildOfClass("Part")
  410. if part.Name ~= "Nope" and robbingBank == false and robbingNightclub == false then
  411. busy = true
  412. busy_with = "robbing ATMs"
  413. wait(1.5)
  414. local pos = v.ATM.Position
  415. for i = 1,5 do
  416. wait(1)
  417. game.Players.LocalPlayer.Character.HumanoidRootPart.Position = pos
  418. end
  419. wait(0.3)
  420. v.ATM.ATM.Event:FireServer()
  421. wait(2)
  422. if part.Name ~= "Nope" and robbingBank == false and robbingNightclub == false then
  423.  
  424. else
  425. busy = false
  426. end
  427. end
  428. end
  429. end
  430. elseif debug_mode == true and busy == true then
  431. print(string.format(cant_rob, "ATMs", busy_with))
  432. end
  433. end)
  434. end
  435. end)
  436.  
  437. local robSlotmachine = coroutine.create(function()
  438. while wait(5) do
  439. pcall(function()
  440. if toggled == true and busy == false and robbingBank == false and robbingNightclub == false then
  441. for i, v in pairs(workspace.ObjectSelection:GetChildren()) do
  442. if v.Name == "SlotMachine" then
  443. local part = v:FindFirstChildOfClass("Part")
  444. if part.Name ~= "Nope" and part.name == "SlotMachine" and robbingBank == false and robbingNightclub == false then
  445. busy = true
  446. busy_with = "robbing slot machines"
  447. wait(1.5)
  448. local pos = v.SlotMachine.Position
  449. for i = 1, 1,5 do
  450. wait(1)
  451. game.Players.LocalPlayer.Character.HumanoidRootPart.Position = pos
  452. end
  453. wait(0.5)
  454. v.SlotMachine.SlotMachine.Event:FireServer()
  455. wait(2)
  456. if part.Name ~= "Nope" and robbingBank == false and robbingNightclub == false then
  457. else
  458. busy = false
  459. end
  460. end
  461. end
  462. end
  463. elseif debug_mode == true and busy == true then
  464. print(string.format(cant_rob, "slot machines", busy_with))
  465. end
  466. end)
  467. end
  468. end)
  469.  
  470. local robBank = coroutine.create(function()
  471. while wait(2) do
  472. pcall(function()
  473. if toggled == true and game.ReplicatedStorage.HeistStatus.Bank.Locked.Value == false and robbingNightclub == false then
  474. robbingBank = true
  475. busy = true
  476. busy_with = "robbing bank"
  477. if debug_mode == true then
  478. warn("All robs have been paused to rob the bank")
  479. end
  480. wait(5)
  481. --[[for i, v in pairs (workspace.ObjectSelection:GetChildren()) do
  482. if v.Name == "HackComputer" then
  483. for i = 1,10 do
  484. wait(1.5)
  485. game.Players.LocalPlayer.Character.HumanoidRootPart.Position = Vector3.new(636.778, 27.5895, 529.505)
  486. v.HackComputer.HackComputer.Event:FireServer()
  487. end
  488. v.HackComputer.HackComputer.Event:FireServer()
  489. wait(1)
  490. v.HackComputer.HackComputer.Event:FireServer()
  491. wait(1.5)
  492. return
  493. end
  494. wait(3)
  495. break
  496. end]]
  497. for i = 1,5 do
  498. wait(1.5)
  499. game.Players.LocalPlayer.Character.HumanoidRootPart.Position = Vector3.new(739,0,488)
  500. end
  501. wait(.5)
  502. local pos = workspace.Bank.MoneyBags["Money Bag"].Position
  503. for i = 1,5 do
  504. wait(1.5)
  505. game.Players.LocalPlayer.Character.HumanoidRootPart.Position = pos
  506. end
  507. if Vip == false then
  508. repeat
  509. wait()
  510. until game.Players.LocalPlayer.PlayerGui.MainGUI.StatsHUD.CashBagHUD.Cash.Amount.Text == "$3000"
  511. else
  512. repeat
  513. wait()
  514. until game.Players.LocalPlayer.PlayerGui.MainGUI.StatsHUD.CashBagHUD.Cash.Amount.Text == "$6000"
  515. end
  516.  
  517. for i = 1,5 do
  518. wait(1.5)
  519. game.Players.LocalPlayer.Character.HumanoidRootPart.Position = Vector3.new(2034, 25, 447)
  520. end
  521. robbingBank = false
  522. busy = false
  523. wait(bank_cooldown)
  524. elseif debug_mode == true and busy == true then
  525. warn(string.format(cant_rob, "bank", "it's closed"))
  526. end
  527. end)
  528. end
  529. end)
  530.  
  531. local robNightclub = coroutine.create(function()
  532. while wait(1) do
  533. pcall(function()
  534. if toggled == true and game.ReplicatedStorage.HeistStatus.Club.Locked.Value == false and robbingNightclub == false then
  535. robbingNightclub = true
  536. busy = true
  537. busy_with = "robbing night club"
  538. wait(5)
  539. if debug_mode == true then
  540. warn("All robs have been paused to rob the night club")
  541. end
  542. for i = 1,5 do
  543. wait(3)
  544. game.Players.LocalPlayer.Character.HumanoidRootPart.Position = Vector3.new(1362,42,-153)
  545. end
  546. wait(3)
  547. for i = 1,5 do
  548. wait(2)
  549. game.Players.LocalPlayer.Character.HumanoidRootPart.Position = Vector3.new(1349,142,-100)
  550. end
  551. wait(0.3)
  552. for i, v in pairs(workspace.ObjectSelection.HackKeyPad:GetChildren()) do
  553. if v.Name == "HackKeyPad" then
  554. v.HackKeyPad.Event:FireServer()
  555. end
  556. end
  557. wait(3)
  558. for i = 1,5 do
  559. wait(2)
  560. game.Players.LocalPlayer.Character.HumanoidRootPart.Position = Vector3.new(1361,142,-155)
  561. end
  562. if Vip == false then
  563. repeat
  564. wait()
  565. until game.Players.LocalPlayer.PlayerGui.MainGUI.StatsHUD.CashBagHUD.Cash.Amount.Text == "$6000"
  566. else
  567. repeat
  568. wait()
  569. until game.Players.LocalPlayer.PlayerGui.MainGUI.StatsHUD.CashBagHUD.Cash.Amount.Text == "$12000"
  570. end
  571. for i = 1,10 do
  572. wait(1)
  573. game.Players.LocalPlayer.Character.HumanoidRootPart.Position = Vector3.new(2034, 25, 447)
  574. end
  575. robbingNightclub = false
  576. busy = false
  577. wait(nightclub_cooldown)
  578. elseif debug_mode == true and game.ReplicatedStorage.HeistStatus.Club.Locked.Value == true then
  579. warn(string.format(cant_rob, "night club", "it's closed"))
  580. end
  581. end)
  582. end
  583. end)
  584.  
  585. local robCasino = coroutine.create(function()
  586. while wait(1) do
  587. pcall(function()
  588. if game.ReplicatedStorage.HeistStatus.Casino.Locked.Value == false then
  589. robbingCasino = true
  590. busy = true
  591. busy_with = "robbing casino"
  592. --[[for i, v in pairs (workspace.ObjectSelection:GetChildren()) do
  593. if v.Name == "HackComputer" then
  594. for i = 1,10 do
  595. wait(1.5)
  596. game.Players.LocalPlayer.Character.HumanoidRootPart.Position = Vector3.new(636.778, 27.5895, 529.505)
  597. v.HackComputer.HackComputer.Event:FireServer()
  598. end
  599. v.HackComputer.HackComputer.Event:FireServer()
  600. wait(1)
  601. v.HackComputer.HackComputer.Event:FireServer()
  602. wait(1.5)
  603. return
  604. end
  605. wait(15)
  606. break
  607. end]]
  608. if debug_mode == true then
  609. warn("All robs have been paused to rob the casino")
  610. end
  611.  
  612. wait(5)
  613. for i = 1,10 do
  614. wait(0.5)
  615. game.Players.LocalPlayer.Character.HumanoidRootPart.Position = Vector3.new(1646,142,-155)
  616. end
  617. wait(35)
  618. for i = 1,10 do
  619. wait(0.5)
  620. game.Players.LocalPlayer.Character.HumanoidRootPart.Position = Vector3.new(2034, 25, 447)
  621. end
  622. robbingCasino = false
  623. busy = false
  624. wait(casino_cooldown)
  625. else
  626. warn(string.format(cant_rob, "casino", "it's closed"))
  627. end
  628. end)
  629. end
  630. end)
  631.  
  632.  
  633. coroutine.resume(died_fix)
  634. --coroutine.resume(busy_fix)
  635. coroutine.resume(debug_things)
  636.  
  637. coroutine.resume(robNightclub)
  638. coroutine.resume(robBank)
  639.  
  640. if rob_small_things == true then
  641. coroutine.resume(robCashRegister)
  642. coroutine.resume(robDiamondBox)
  643. coroutine.resume(robSafe)
  644. coroutine.resume(robTipJar)
  645. coroutine.resume(robLuggage)
  646.  
  647. coroutine.resume(robCash)
  648. coroutine.resume(robTv)
  649. coroutine.resume(robAtm)
  650. coroutine.resume(robSlotmachine)
  651. end
  652.  
  653. if start_toggled == true then
  654. message("Thanks for using Londiuh's auto rob script!", "blue")
  655. message("Starting...", "yellow")
  656. noclip()
  657. hideNametag()
  658. clearAppearance()
  659. toggle()
  660. toggled = true
  661. message("Starting...")
  662. else
  663. message("Thanks for using Londiuh's auto rob script!\n\nTo start/stop use \"/e toggle\"", "blue")
  664. toggle()
  665. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement