Advertisement
nguyenminhnghia

Untitled

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