Advertisement
user1321

Untitled

Sep 3rd, 2024 (edited)
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 58.54 KB | None | 0 0
  1. getgenv().adverting = false
  2. local vu = game:GetService("VirtualUser")
  3. game:GetService("Players").LocalPlayer.Idled:connect(function()
  4. vu:Button2Down(Vector2.new(0, 0), workspace.CurrentCamera.CFrame)
  5. wait(1)
  6. vu:Button2Up(Vector2.new(0, 0), workspace.CurrentCamera.CFrame)
  7. end)
  8.  
  9. getgenv().isDropping = false
  10. local speed = 50
  11. local c
  12. local h
  13. local bv
  14. local bav
  15. local cam
  16. local flying
  17. local p = game.Players.LocalPlayer
  18. local buttons = {
  19. W = false,
  20. S = false,
  21. A = false,
  22. D = false,
  23. Moving = false
  24. }
  25.  
  26. local startFly = function()
  27. if not p.Character or not p.Character.Head or flying then
  28. return
  29. end
  30. c = p.Character
  31. h = c.Humanoid
  32. h.PlatformStand = true
  33. cam = workspace:WaitForChild('Camera')
  34. bv = Instance.new("BodyVelocity")
  35. bav = Instance.new("BodyAngularVelocity")
  36. bv.Velocity, bv.MaxForce, bv.P = Vector3.new(0, 0, 0), Vector3.new(10000, 10000, 10000), 1000
  37. bav.AngularVelocity, bav.MaxTorque, bav.P = Vector3.new(0, 0, 0), Vector3.new(10000, 10000, 10000), 1000
  38. bv.Parent = c.Head
  39. bav.Parent = c.Head
  40. flying = true
  41. h.Died:connect(function()
  42. flying = false
  43. end)
  44. end
  45.  
  46. local Players = game:GetService('Players')
  47.  
  48. game.Players.LocalPlayer.Character.Humanoid.Health = 0
  49.  
  50. game.StarterGui:SetCore("SendNotification", {
  51. Title = "Script Loaded";
  52. Text = "thx to faisal8754 i will remake it soon";
  53. Duration = 5;
  54. })
  55.  
  56. local endFly = function()
  57. if not p.Character or not flying then
  58. return
  59. end
  60. h.PlatformStand = false
  61. bv:Destroy()
  62. bav:Destroy()
  63. flying = false
  64. end
  65.  
  66. game:GetService("UserInputService").InputBegan:connect(function(input, GPE)
  67. if GPE then
  68. return
  69. end
  70. for i, e in pairs(buttons) do
  71. if i ~= "Moving" and input.KeyCode == Enum.KeyCode[i] then
  72. buttons[i] = true
  73. buttons.Moving = true
  74. end
  75. end
  76. end)
  77.  
  78. game:GetService("UserInputService").InputEnded:connect(function(input, GPE)
  79. if GPE then
  80. return
  81. end
  82. local a = false
  83. for i, e in pairs(buttons) do
  84. if i ~= "Moving" then
  85. if input.KeyCode == Enum.KeyCode[i] then
  86. buttons[i] = false
  87. end
  88. if buttons[i] then
  89. a = true
  90. end
  91. end
  92. end
  93. buttons.Moving = a
  94. end)
  95.  
  96. local setVec = function(vec)
  97. return vec * (speed / vec.Magnitude)
  98. end
  99.  
  100. game:GetService("RunService").Heartbeat:connect(function(step)
  101. if flying and c and c.PrimaryPart then
  102. local p = c.PrimaryPart.Position
  103. local cf = cam.CFrame
  104. local ax, ay, az = cf:toEulerAnglesXYZ()
  105. c:SetPrimaryPartCFrame(CFrame.new(p.x, p.y, p.z) * CFrame.Angles(ax, ay, az))
  106. if buttons.Moving then
  107. local t = Vector3.new()
  108. if buttons.W then
  109. t = t + (setVec(cf.lookVector))
  110. end
  111. if buttons.S then
  112. t = t - (setVec(cf.lookVector))
  113. end
  114. if buttons.A then
  115. t = t - (setVec(cf.rightVector))
  116. end
  117. if buttons.D then
  118. t = t + (setVec(cf.rightVector))
  119. end
  120. c:TranslateBy(t * step)
  121. end
  122. end
  123. end)
  124. Players.PlayerAdded:Connect(function(player)
  125. game.StarterGui:SetCore("SendNotification", {
  126. Title = "Someone joined!",
  127. Text = player.name .. " joined the game.",
  128. Duration = 5
  129. })
  130. end)
  131.  
  132. local function PlayerAdded(Player)
  133. local function Chatted(Message)
  134. local plr = game.Players.LocalPlayer
  135. local character = plr.Character or plr.CharacterAdded:Wait()
  136. local humanoid = character:FindFirstChild("Humanoid")
  137. local PlayerHumanoid = plr.Character:WaitForChild("Humanoid")
  138. local targetHumanoid = Player.Character:WaitForChild("Humanoid")
  139. local LastTargetPosition = targetHumanoid.RootPart.CFrame
  140. local Length = 3
  141.  
  142. if Player.UserId == getgenv().controller then
  143.  
  144. local finalMsg = Message:lower()
  145.  
  146. for i, v in pairs(getgenv().alts) do
  147. if v == plr.UserId then
  148. if finalMsg == getgenv().prefix .. "fly " .. plr.Name:lower() then
  149. startFly()
  150.  
  151. end
  152. if finalMsg == getgenv().prefix .. "fly" then
  153. startFly()
  154.  
  155. end
  156. if finalMsg == getgenv().prefix .. "setup admin" then
  157. game.Players.LocalPlayer.Character.Head.Anchored = false
  158. for i, v in pairs(getgenv().alts) do
  159. if i == "Alt1" then
  160. if v == plr.UserId then
  161. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  162. CFrame.new(-883, -38, -623)
  163. end
  164. end
  165. if i == "Alt2" then
  166. if v == plr.UserId then
  167. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  168. CFrame.new(-878, -38, -623)
  169. end
  170. end
  171. if i == "Alt3" then
  172. if v == plr.UserId then
  173. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  174. CFrame.new(-873, -38, -623)
  175. end
  176. end
  177. if i == "Alt4" then
  178. if v == plr.UserId then
  179. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  180. CFrame.new(-868, -38, -624)
  181. end
  182. end
  183. if i == "Alt5" then
  184. if v == plr.UserId then
  185. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  186. CFrame.new(-862, -38, -624)
  187. end
  188. end
  189. if i == "Alt6" then
  190. if v == plr.UserId then
  191. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  192. CFrame.new(-857, -38, -624)
  193. end
  194. end
  195. if i == "Alt7" then
  196. if v == plr.UserId then
  197. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  198. CFrame.new(-857, -38, -618)
  199. end
  200. end
  201. if i == "Alt8" then
  202. if v == plr.UserId then
  203. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  204. CFrame.new(-862, -38, -618)
  205. end
  206. end
  207. if i == "Alt9" then
  208. if v == plr.UserId then
  209. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  210. CFrame.new(-867, -38, -618)
  211. end
  212. end
  213. if i == "Alt10" then
  214. if v == plr.UserId then
  215. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  216. CFrame.new(-872, -38, -618)
  217. end
  218. end
  219. if i == "Alt11" then
  220. if v == plr.UserId then
  221. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  222. CFrame.new(-877, -38, -618)
  223. end
  224. end
  225. if i == "Alt12" then
  226. if v == plr.UserId then
  227. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  228. CFrame.new(-882, -38, -618)
  229. end
  230. end
  231. if i == "Alt13" then
  232. if v == plr.UserId then
  233. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  234. CFrame.new(-882, -38, -612)
  235. end
  236. end
  237. if i == "Alt14" then
  238. if v == plr.UserId then
  239. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  240. CFrame.new(-878, -38, -611)
  241. end
  242. end
  243. if i == "Alt15" then
  244. if v == plr.UserId then
  245. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  246. CFrame.new(-872, -38, -611)
  247. end
  248. end
  249. if i == "Alt16" then
  250. if v == plr.UserId then
  251. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  252. CFrame.new(-867, -38, -612)
  253. end
  254. end
  255. if i == "Alt17" then
  256. if v == plr.UserId then
  257. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  258. CFrame.new(-861, -38, -612)
  259. end
  260. end
  261. if i == "Alt18" then
  262. if v == plr.UserId then
  263. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  264. CFrame.new(-861, -38, -607)
  265. end
  266. end
  267. if i == "Alt19" then
  268. if v == plr.UserId then
  269. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  270. CFrame.new(-867, -38, -607)
  271. end
  272. end
  273. if i == "Alt20" then
  274. if v == plr.UserId then
  275. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  276. CFrame.new(-872, -38, -607)
  277. end
  278. end
  279. if i == "Alt21" then
  280. if v == plr.UserId then
  281. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  282. CFrame.new(-878, -38, -608)
  283. end
  284. end
  285. if i == "Alt22" then
  286. if v == plr.UserId then
  287. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  288. CFrame.new(-883, -38, -608)
  289. end
  290. end
  291. if i == "Alt23" then
  292. if v == plr.UserId then
  293. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  294. CFrame.new(-883, -38, -603)
  295. end
  296. end
  297. if i == "Alt24" then
  298. if v == plr.UserId then
  299. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  300. CFrame.new(-878, -38, -603)
  301. end
  302. end
  303. if i == "Alt25" then
  304. if v == plr.UserId then
  305. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  306. CFrame.new(-873, -38, -602)
  307. end
  308. end
  309. if i == "Alt26" then
  310. if v == plr.UserId then
  311. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  312. CFrame.new(-867, -38, -602)
  313. end
  314. end
  315. if i == "Alt27" then
  316. if v == plr.UserId then
  317. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  318. CFrame.new(-861, -38, -602)
  319. end
  320. end
  321. if i == "Alt28" then
  322. if v == plr.UserId then
  323. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  324. CFrame.new(-862, -38, -598)
  325. end
  326. end
  327. if i == "Alt29" then
  328. if v == plr.UserId then
  329. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  330. CFrame.new(-867, -38, -598)
  331. end
  332. end
  333. if i == "Alt30" then
  334. if v == plr.UserId then
  335. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  336. CFrame.new(-872, -38, -598)
  337. end
  338. end
  339. if i == "Alt31" then
  340. if v == plr.UserId then
  341. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  342. CFrame.new(-878, -38, -599)
  343. end
  344. end
  345. if i == "Alt32" then
  346. if v == plr.UserId then
  347. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  348. CFrame.new(-884, -38, -599)
  349. end
  350. end
  351. if i == "Alt33" then
  352. if v == plr.UserId then
  353. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  354. CFrame.new(-884, -38, -594)
  355. end
  356. end
  357. if i == "Alt34" then
  358. if v == plr.UserId then
  359. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  360. CFrame.new(-880, -38, -594)
  361. end
  362. end
  363. if i == "Alt35" then
  364. if v == plr.UserId then
  365. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  366. CFrame.new(-874, -38, -594)
  367. end
  368. end
  369. if i == "Alt36" then
  370. if v == plr.UserId then
  371. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  372. CFrame.new(-869, -38, -594)
  373. end
  374. end
  375. if i == "Alt37" then
  376. if v == plr.UserId then
  377. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  378. CFrame.new(-864, -38, -594)
  379. end
  380. end
  381. if i == "Alt38" then
  382. if v == plr.UserId then
  383. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  384. CFrame.new(-858, -38, -594)
  385. end
  386. end
  387. end
  388. end
  389.  
  390. if finalMsg == getgenv().prefix .. "setup bank" then
  391. game.Players.LocalPlayer.Character.Head.Anchored = false
  392. for i, v in pairs(getgenv().alts) do
  393. if i == "Alt1" then
  394. if v == plr.UserId then
  395. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  396. CFrame.new(-389, 21, -338)
  397. end
  398. end
  399. if i == "Alt2" then
  400. if v == plr.UserId then
  401. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  402. CFrame.new(-385, 21, -338)
  403. end
  404. end
  405. if i == "Alt3" then
  406. if v == plr.UserId then
  407. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  408. CFrame.new(-380, 21, -337)
  409. end
  410. end
  411. if i == "Alt4" then
  412. if v == plr.UserId then
  413. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  414. CFrame.new(-376, 21, -338)
  415. end
  416. end
  417. if i == "Alt5" then
  418. if v == plr.UserId then
  419. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  420. CFrame.new(-370, 21, -338)
  421. end
  422. end
  423. if i == "Alt6" then
  424. if v == plr.UserId then
  425. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  426. CFrame.new(-366, 21, -338)
  427. end
  428. end
  429. if i == "Alt7" then
  430. if v == plr.UserId then
  431. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  432. CFrame.new(-361, 21, -338)
  433. end
  434. end
  435. if i == "Alt8" then
  436. if v == plr.UserId then
  437. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  438. CFrame.new(-361, 21, -333)
  439. end
  440. end
  441. if i == "Alt9" then
  442. if v == plr.UserId then
  443. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  444. CFrame.new(-365, 21, -334)
  445. end
  446. end
  447. if i == "Alt10" then
  448. if v == plr.UserId then
  449. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  450. CFrame.new(-370, 21, -334)
  451. end
  452. end
  453. if i == "Alt11" then
  454. if v == plr.UserId then
  455. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  456. CFrame.new(-375, 21, -334)
  457. end
  458. end
  459. if i == "Alt12" then
  460. if v == plr.UserId then
  461. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  462. CFrame.new(-381, 21, -334)
  463. end
  464. end
  465. if i == "Alt13" then
  466. if v == plr.UserId then
  467. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  468. CFrame.new(-386, 21, -334)
  469. end
  470. end
  471. if i == "Alt14" then
  472. if v == plr.UserId then
  473. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  474. CFrame.new(-390, 21, -334)
  475. end
  476. end
  477. if i == "Alt15" then
  478. if v == plr.UserId then
  479. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  480. CFrame.new(-390, 21, -331)
  481. end
  482. end
  483. if i == "Alt16" then
  484. if v == plr.UserId then
  485. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  486. CFrame.new(-386, 21, -331)
  487. end
  488. end
  489. if i == "Alt17" then
  490. if v == plr.UserId then
  491. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  492. CFrame.new(-382, 21, -331)
  493. end
  494. end
  495. if i == "Alt18" then
  496. if v == plr.UserId then
  497. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  498. CFrame.new(-376, 21, -331)
  499. end
  500. end
  501. if i == "Alt19" then
  502. if v == plr.UserId then
  503. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  504. CFrame.new(-371, 21, -331)
  505. end
  506. end
  507. if i == "Alt20" then
  508. if v == plr.UserId then
  509. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  510. CFrame.new(-366, 21, -331)
  511. end
  512. end
  513. if i == "Alt21" then
  514. if v == plr.UserId then
  515. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  516. CFrame.new(-361, 21, -331)
  517. end
  518. end
  519. if i == "Alt22" then
  520. if v == plr.UserId then
  521. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  522. CFrame.new(-361, 21, -327)
  523. end
  524. end
  525. if i == "Alt23" then
  526. if v == plr.UserId then
  527. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  528. CFrame.new(-365, 21, -327)
  529. end
  530. end
  531. if i == "Alt24" then
  532. if v == plr.UserId then
  533. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  534. CFrame.new(-371, 21, -326)
  535. end
  536. end
  537. if i == "Alt25" then
  538. if v == plr.UserId then
  539. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  540. CFrame.new(-376, 21, -327)
  541. end
  542. end
  543. if i == "Alt26" then
  544. if v == plr.UserId then
  545. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  546. CFrame.new(-381, 21, -326)
  547. end
  548. end
  549. if i == "Alt27" then
  550. if v == plr.UserId then
  551. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  552. CFrame.new(-385, 21, -327)
  553. end
  554. end
  555. if i == "Alt28" then
  556. if v == plr.UserId then
  557. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  558. CFrame.new(-390, 21, -323)
  559. end
  560. end
  561. if i == "Alt29" then
  562. if v == plr.UserId then
  563. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  564. CFrame.new(-390, 21, -326)
  565. end
  566. end
  567. if i == "Alt30" then
  568. if v == plr.UserId then
  569. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  570. CFrame.new(-390, 21, -323)
  571. end
  572. end
  573. if i == "Alt31" then
  574. if v == plr.UserId then
  575. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  576. CFrame.new(-385, 21, -323)
  577. end
  578. end
  579. if i == "Alt32" then
  580. if v == plr.UserId then
  581. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  582. CFrame.new(-381, 21, -323)
  583. end
  584. end
  585. if i == "Alt33" then
  586. if v == plr.UserId then
  587. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  588. CFrame.new(-375, 21, -324)
  589. end
  590. end
  591. if i == "Alt34" then
  592. if v == plr.UserId then
  593. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  594. CFrame.new(-370, 21, -323)
  595. end
  596. end
  597. if i == "Alt35" then
  598. if v == plr.UserId then
  599. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  600. CFrame.new(-365, 21, -324)
  601. end
  602. end
  603. if i == "Alt36" then
  604. if v == plr.UserId then
  605. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  606. CFrame.new(-360, 21, -324)
  607. end
  608. end
  609. if i == "Alt37" then
  610. if v == plr.UserId then
  611. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  612. CFrame.new(-359, 21, -318)
  613. end
  614. end
  615. if i == "Alt38" then
  616. if v == plr.UserId then
  617. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  618. CFrame.new(-364, 21, -319)
  619. end
  620. end
  621. end
  622. end
  623.  
  624. if finalMsg == getgenv().prefix .. "drop" then
  625.  
  626. if getgenv().isDropping == false then
  627.  
  628. getgenv().isDropping = true
  629.  
  630. if getgenv().isDropping == true then
  631. game:GetService("VirtualInputManager"):SendKeyEvent(true, 102, false, yomama)
  632. local args = {
  633. [1] = "Started Dropping!",
  634. [2] = "All"
  635. }
  636.  
  637. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(
  638. unpack(args))
  639. end
  640. while getgenv().isDropping == true do
  641.  
  642. if game:GetService("Players").LocalPlayer.DataFolder.Currency.Value < 10000 then
  643. local args = {
  644. [1] = "Ran out of money, stopped dropping.",
  645. [2] = "All"
  646. }
  647.  
  648. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents
  649. .SayMessageRequest:FireServer(unpack(args))
  650. end
  651.  
  652. local args = {
  653. [1] = "DropMoney",
  654. [2] = "10000"
  655. }
  656.  
  657. game:GetService("ReplicatedStorage").MainEvent:FireServer(unpack(args))
  658. wait(15)
  659. end
  660. else
  661.  
  662. getgenv().isDropping = false
  663. if getgenv().isDropping == false then
  664. game:GetService("VirtualInputManager"):SendKeyEvent(false, 102, false, yomama)
  665. local args = {
  666. [1] = "Stopped Dropping!",
  667. [2] = "All"
  668. }
  669.  
  670. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(
  671. unpack(args))
  672. end
  673.  
  674. end
  675.  
  676. end
  677.  
  678. if finalMsg == getgenv().prefix .. "drop " .. plr.Name:lower() then
  679.  
  680. if getgenv().isDropping == false then
  681.  
  682. getgenv().isDropping = true
  683.  
  684. if getgenv().isDropping == true then
  685. game:GetService("VirtualInputManager"):SendKeyEvent(true, 102, false, yomama)
  686. local args = {
  687. [1] = "Started Dropping!",
  688. [2] = "All"
  689. }
  690.  
  691. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(
  692. unpack(args))
  693. end
  694. while getgenv().isDropping == true do
  695.  
  696. if game:GetService("Players").LocalPlayer.DataFolder.Currency.Value < 10000 then
  697. local args = {
  698. [1] = "Ran out of money, stopped dropping.",
  699. [2] = "All"
  700. }
  701.  
  702. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents
  703. .SayMessageRequest:FireServer(unpack(args))
  704. end
  705.  
  706. local args = {
  707. [1] = "DropMoney",
  708. [2] = "10000"
  709. }
  710.  
  711. game:GetService("ReplicatedStorage").MainEvent:FireServer(unpack(args))
  712. wait(15)
  713. end
  714. else
  715.  
  716. getgenv().isDropping = false
  717. if getgenv().isDropping == false then
  718. game:GetService("VirtualInputManager"):SendKeyEvent(false, 102, false, yomama)
  719. local args = {
  720. [1] = "Stopped Dropping!",
  721. [2] = "All"
  722. }
  723.  
  724. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(
  725. unpack(args))
  726. end
  727.  
  728. end
  729.  
  730. end
  731.  
  732. if finalMsg == getgenv().prefix .. "advert" then
  733.  
  734.  
  735. if getgenv().adverting == false then
  736.  
  737. getgenv().adverting = true
  738.  
  739. while getgenv().adverting == true do
  740.  
  741. local args = {
  742. [1] = getgenv().adMessage,
  743. [2] = "All"
  744. }
  745.  
  746. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(
  747. unpack(args))
  748. wait(getgenv().adMessageCooldown)
  749.  
  750. end
  751. else
  752.  
  753. getgenv().adverting = false
  754.  
  755. end
  756.  
  757. end
  758.  
  759. if finalMsg == getgenv().prefix .. "advert " .. plr.Name:lower() then
  760.  
  761. if getgenv().adverting == false then
  762.  
  763. getgenv().adverting = true
  764.  
  765. while getgenv().adverting == true do
  766.  
  767. local args = {
  768. [1] = getgenv().adMessage,
  769. [2] = "All"
  770. }
  771.  
  772. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(
  773. unpack(args))
  774. wait(getgenv().adMessageCooldown)
  775.  
  776. end
  777. else
  778.  
  779. getgenv().adverting = false
  780.  
  781. end
  782.  
  783. end
  784.  
  785. if finalMsg == getgenv().prefix .. "vibe" then
  786.  
  787. game:GetService("Players"):Chat("/e dance2")
  788.  
  789. end
  790. if finalMsg == getgenv().prefix .. "vibe " .. plr.Name:lower() then
  791.  
  792. game:GetService("Players"):Chat("/e dance2")
  793.  
  794. end
  795.  
  796. if finalMsg == getgenv().prefix .. "wallet " .. plr.Name:lower() then
  797. for i, v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  798. if v.name == "Wallet" then
  799. v.Parent = game.Players.LocalPlayer.Character
  800. else
  801. local localPlayer = game.Players.LocalPlayer
  802. local humanoid = localPlayer.Character:FindFirstChildOfClass("Humanoid")
  803. if humanoid then
  804. humanoid:UnequipTools()
  805. end
  806. end
  807. end
  808.  
  809. end
  810.  
  811. if finalMsg == getgenv().prefix .. "wallet" then
  812. for i, v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  813. if v.name == "Wallet" then
  814. v.Parent = game.Players.LocalPlayer.Character
  815. else
  816. local localPlayer = game.Players.LocalPlayer
  817. local humanoid = localPlayer.Character:FindFirstChildOfClass("Humanoid")
  818. if humanoid then
  819. humanoid:UnequipTools()
  820. end
  821. end
  822. end
  823.  
  824. end
  825.  
  826.  
  827. if finalMsg == getgenv().prefix .. "airlock " .. plr.Name:lower() then
  828. game.Players.LocalPlayer.Character.Head.Anchored = false
  829. local Animation = Instance.new("Animation")
  830. Animation.AnimationId = "rbxassetid://3541114300"
  831. local LoadAnimation = game.Players.LocalPlayer.Character:FindFirstChildWhichIsA("Humanoid"):LoadAnimation(Animation)
  832. LoadAnimation.Priority = Enum.AnimationPriority.Action
  833. LoadAnimation:Stop()
  834.  
  835. local player = game.Players.LocalPlayer
  836. local character = player.Character
  837. local humanoid = character:FindFirstChild("Humanoid")
  838. local LPlr = game.Players.LocalPlayer
  839. local Character = LPlr.Character
  840. local HRP = Character:WaitForChild("HumanoidRootPart")
  841. humanoid.Jump = true
  842. wait(0.3)
  843. game.Players.LocalPlayer.Character.Head.Anchored = true
  844. local Animation = Instance.new("Animation")
  845. Animation.AnimationId = "rbxassetid://3541114300"
  846. local LoadAnimation = game.Players.LocalPlayer.Character:FindFirstChildWhichIsA("Humanoid"):LoadAnimation(Animation)
  847. LoadAnimation.Priority = Enum.AnimationPriority.Action
  848. LoadAnimation:Play()
  849.  
  850.  
  851. end
  852. if finalMsg == getgenv().prefix .. "airlock" then
  853. game.Players.LocalPlayer.Character.Head.Anchored = false
  854. local Animation = Instance.new("Animation")
  855. Animation.AnimationId = "rbxassetid://3541114300"
  856. local LoadAnimation = game.Players.LocalPlayer.Character:FindFirstChildWhichIsA("Humanoid"):LoadAnimation(Animation)
  857. LoadAnimation.Priority = Enum.AnimationPriority.Action
  858. LoadAnimation:Stop()
  859.  
  860. local player = game.Players.LocalPlayer
  861. local character = player.Character
  862. local humanoid = character:FindFirstChild("Humanoid")
  863. local LPlr = game.Players.LocalPlayer
  864. local Character = LPlr.Character
  865. local HRP = Character:WaitForChild("HumanoidRootPart")
  866. humanoid.Jump = true
  867. wait(0.3)
  868. game.Players.LocalPlayer.Character.Head.Anchored = true
  869. local Animation = Instance.new("Animation")
  870. Animation.AnimationId = "rbxassetid://3541114300"
  871. local LoadAnimation = game.Players.LocalPlayer.Character:FindFirstChildWhichIsA("Humanoid"):LoadAnimation(Animation)
  872. LoadAnimation.Priority = Enum.AnimationPriority.Action
  873. LoadAnimation:Play()
  874.  
  875.  
  876. end
  877. if finalMsg == getgenv().prefix .. "kill" then
  878. humanoid.Health = 0
  879. end
  880.  
  881. if finalMsg == getgenv().prefix .. "kill " .. plr.Name:lower() then
  882. humanoid.Health = 0
  883. end
  884.  
  885. if finalMsg == getgenv().prefix .. "kick" then
  886. plr:Kick("You've been kicked by the Controller.")
  887. end
  888. if finalMsg == getgenv().prefix .. "kick " .. plr.Name:lower() then
  889. plr:Kick("You've been kicked by the Controller.")
  890. end
  891.  
  892. if finalMsg == getgenv().prefix .. "bringalts" then
  893. game.Players.LocalPlayer.Character.Head.Anchored = false
  894. PlayerHumanoid.RootPart.CFrame = LastTargetPosition + LastTargetPosition.LookVector * Length
  895. PlayerHumanoid.RootPart.CFrame =
  896. CFrame.new(PlayerHumanoid.RootPart.CFrame.Position, Vector3.new(
  897. LastTargetPosition.Position.X, PlayerHumanoid.RootPart.CFrame.Position.Y,
  898. LastTargetPosition.Position.Z))
  899. end
  900.  
  901. if finalMsg == getgenv().prefix .. "bring " .. plr.Name:lower() then
  902. game.Players.LocalPlayer.Character.Head.Anchored = false
  903. PlayerHumanoid.RootPart.CFrame = LastTargetPosition + LastTargetPosition.LookVector * Length
  904. PlayerHumanoid.RootPart.CFrame =
  905. CFrame.new(PlayerHumanoid.RootPart.CFrame.Position, Vector3.new(
  906. LastTargetPosition.Position.X, PlayerHumanoid.RootPart.CFrame.Position.Y,
  907. LastTargetPosition.Position.Z))
  908. end
  909.  
  910. if finalMsg == getgenv().prefix .. "mask on" then
  911.  
  912. if game.Players.LocalPlayer.Backpack:FindFirstChild("[Mask]") then
  913. game.Players.LocalPlayer.Backpack:FindFirstChild("[Mask]").Parent = game.Players.LocalPlayer.Character
  914. wait(.2)
  915. game.Players.LocalPlayer.Character:FindFirstChild('[Mask]'):Activate()
  916.  
  917. else
  918.  
  919. _G.SavedPosition = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position
  920.  
  921. game.Players.LocalPlayer.Character:FindFirstChildOfClass("Humanoid"):UnequipTools()
  922.  
  923. local plr = game.Players.LocalPlayer
  924. plr.Character.HumanoidRootPart.CFrame = game.Workspace.Ignored.Shop["[Surgeon Mask] - $27"].Head.CFrame
  925. wait(.3)
  926. fireclickdetector(game.Workspace.Ignored.Shop["[Surgeon Mask] - $27"].ClickDetector)
  927. wait(.3)
  928. if game.Players.LocalPlayer.Backpack:FindFirstChild("[Mask]") then
  929. game.Players.LocalPlayer.Backpack:FindFirstChild("[Mask]").Parent = game.Players.LocalPlayer.Character
  930. end
  931. wait(.2)
  932. game:GetService("VirtualUser"):ClickButton1(Vector2.new())
  933. wait()
  934. game.Players.LocalPlayer.Character:FindFirstChildOfClass("Humanoid"):UnequipTools()
  935. wait(.3)
  936. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(_G.SavedPosition)
  937. wait(2)
  938.  
  939. if game.Players.LocalPlayer.Backpack:FindFirstChild("[Mask]") then
  940. game.Players.LocalPlayer.Backpack:FindFirstChild("[Mask]").Parent = game.Players.LocalPlayer.Character
  941. wait(.2)
  942. game.Players.LocalPlayer.Character:FindFirstChild('[Mask]'):Activate()
  943.  
  944. end
  945. end
  946.  
  947.  
  948. if finalMsg == getgenv().prefix .. "mask off" then
  949. if game.Players.LocalPlayer.Backpack:FindFirstChild("[Mask]") then
  950. game.Players.LocalPlayer.Backpack:FindFirstChild("[Mask]").Parent = game.Players.LocalPlayer.Character
  951. wait(.2)
  952. game.Players.LocalPlayer.Character:FindFirstChild('[Mask]'):Activate()
  953. end
  954. end
  955. end
  956. end
  957. end
  958.  
  959. end
  960. end
  961. Player.Chatted:Connect(Chatted)
  962. end
  963.  
  964. local GetPlayers = Players:GetPlayers()
  965. for i = 1, #GetPlayers do
  966. local Player = GetPlayers[i]
  967. coroutine.resume(coroutine.create(function()
  968. PlayerAdded(Player)
  969. end))
  970. end
  971. Players.PlayerAdded:Connect(PlayerAdded)
  972.  
  973. if game.Players.LocalPlayer.UserId == getgenv().controller then
  974. function RandomVariable(length)
  975. local res = ""
  976. for i = 1, length do
  977. res = res .. string.char(math.random(97, 122))
  978. end
  979. return res
  980. end
  981.  
  982. -- Gui to Lua
  983. -- Version: 3.2
  984.  
  985. -- Instances:
  986.  
  987. coroutine.wrap(AOSAXLW_fake_script)()
  988. local function XXYN_fake_script() -- TextButton_11.LocalScript
  989. local script = Instance.new('LocalScript', TextButton_11)
  990.  
  991. local button = script.Parent
  992.  
  993. function leftClick()
  994. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-581, 8, -735)
  995. end
  996.  
  997. button.MouseButton1Click:Connect(leftClick)
  998. end
  999. coroutine.wrap(XXYN_fake_script)()
  1000. local function IGPQZ_fake_script() -- TextButton_12.LocalScript
  1001. local script = Instance.new('LocalScript', TextButton_12)
  1002.  
  1003. local button = script.Parent
  1004.  
  1005. function leftClick()
  1006. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-872, -38, -585)
  1007. end
  1008.  
  1009. button.MouseButton1Click:Connect(leftClick)
  1010. end
  1011. coroutine.wrap(IGPQZ_fake_script)()
  1012. local function XGCD_fake_script() -- Search_2.LocalScript
  1013. local script = Instance.new('LocalScript', Search_2)
  1014.  
  1015. local usname = script.Parent.username
  1016.  
  1017. local button = script.Parent.searchBTN
  1018. local cash = script.Parent.cash
  1019. local wanted = script.Parent.wanted
  1020.  
  1021. function leftClick()
  1022. local fuckkk = script.Parent.UserIMG
  1023. local aaakakakkakaka = script.Parent.TextBox.Text
  1024. local player = game:GetService("Players")[aaakakakkakaka]
  1025.  
  1026. local userId = player.UserId
  1027.  
  1028. local thumbType = Enum.ThumbnailType.AvatarBust
  1029.  
  1030. local thumbSize = Enum.ThumbnailSize.Size420x420
  1031.  
  1032. local content, isReady = game.Players:GetUserThumbnailAsync(userId, thumbType, thumbSize)
  1033.  
  1034. fuckkk.Image = content
  1035.  
  1036. usname.Text = "Username: " .. tostring(aaakakakkakaka)
  1037. cash.Text = "Money: " .. game:GetService("Players")[tostring(aaakakakkakaka)].DataFolder.Currency.Value
  1038. wanted.Text = "Wanted: " ..
  1039. game:GetService("Players")[tostring(aaakakakkakaka)].DataFolder.Information.Wanted
  1040. .Value
  1041. end
  1042.  
  1043. button.MouseButton1Click:Connect(leftClick)
  1044. end
  1045. coroutine.wrap(XGCD_fake_script)()
  1046. local function PJUHTHR_fake_script() -- Main.LocalScript
  1047. local script = Instance.new('LocalScript', Main)
  1048.  
  1049. local s = script.Parent.Parent.Main
  1050.  
  1051. s.Draggable = true
  1052. s.Active = true
  1053. s.Selectable = true
  1054. end
  1055. coroutine.wrap(PJUHTHR_fake_script)()
  1056.  
  1057. end
  1058.  
  1059. for i, v in pairs(getgenv().alts) do
  1060.  
  1061. if v == game.Players.LocalPlayer.UserId then
  1062.  
  1063. Clip = false
  1064.  
  1065. local speaker = game.Players.LocalPlayer
  1066. wait(0.1)
  1067. local function NoclipLoop()
  1068. if Clip == false and speaker.Character ~= nil then
  1069. for _, child in pairs(speaker.Character:GetDescendants()) do
  1070. if child:IsA("BasePart") and child.CanCollide == true and child.Name ~= floatName then
  1071. child.CanCollide = false
  1072. end
  1073. end
  1074. end
  1075. end
  1076. Noclipping = game:GetService('RunService').Stepped:Connect(NoclipLoop)
  1077. workspace:FindFirstChildOfClass('Terrain').WaterWaveSize = 0
  1078. workspace:FindFirstChildOfClass('Terrain').WaterWaveSpeed = 0
  1079. workspace:FindFirstChildOfClass('Terrain').WaterReflectance = 0
  1080. workspace:FindFirstChildOfClass('Terrain').WaterTransparency = 0
  1081. game:GetService("Lighting").GlobalShadows = false
  1082. game:GetService("Lighting").FogEnd = 9e9
  1083. settings().Rendering.QualityLevel = 1
  1084. for i, v in pairs(game:GetDescendants()) do
  1085. if v:IsA("Part") or v:IsA("UnionOperation") or v:IsA("MeshPart") or v:IsA("CornerWedgePart") or
  1086. v:IsA("TrussPart") then
  1087. v.Material = "Plastic"
  1088. v.Reflectance = 0
  1089. elseif v:IsA("Decal") then
  1090. v.Transparency = 1
  1091. elseif v:IsA("ParticleEmitter") or v:IsA("Trail") then
  1092. v.Lifetime = NumberRange.new(0)
  1093. elseif v:IsA("Explosion") then
  1094. v.BlastPressure = 1
  1095. v.BlastRadius = 1
  1096. end
  1097. end
  1098. for i, v in pairs(game:GetService("Lighting"):GetDescendants()) do
  1099. if v:IsA("BlurEffect") or v:IsA("SunRaysEffect") or v:IsA("ColorCorrectionEffect") or
  1100. v:IsA("BloomEffect") or v:IsA("DepthOfFieldEffect") then
  1101. v.Enabled = false
  1102. end
  1103. end
  1104. workspace.DescendantAdded:Connect(function(child)
  1105. coroutine.wrap(function()
  1106. if child:IsA('ForceField') then
  1107. game:GetService('RunService').Heartbeat:Wait()
  1108. child:Destroy()
  1109. elseif child:IsA('Sparkles') then
  1110. game:GetService('RunService').Heartbeat:Wait()
  1111. child:Destroy()
  1112. elseif child:IsA('Smoke') or child:IsA('Fire') then
  1113. game:GetService('RunService').Heartbeat:Wait()
  1114. child:Destroy()
  1115. end
  1116. end)()
  1117. end)
  1118.  
  1119. local timeBegan = tick()
  1120. for i, v in ipairs(workspace:GetDescendants()) do
  1121. if v:IsA("BasePart") then
  1122. v.Material = "SmoothPlastic"
  1123. end
  1124. end
  1125. for i, v in ipairs(game:GetService("Lighting"):GetChildren()) do
  1126. v:Destroy()
  1127. end
  1128. local timeEnd = tick() - timeBegan
  1129. local timeMS = math.floor(timeEnd * 1000)
  1130.  
  1131. for i, e in pairs(l:GetChildren()) do
  1132. if e:IsA("BlurEffect") or e:IsA("SunRaysEffect") or e:IsA("ColorCorrectionEffect") or
  1133. e:IsA("BloomEffect") or e:IsA("DepthOfFieldEffect") then
  1134. e.Enabled = false
  1135. end
  1136. end
  1137.  
  1138.  
  1139. for i, e in pairs(l:GetChildren()) do
  1140. if e:IsA("BlurEffect") or e:IsA("SunRaysEffect") or e:IsA("ColorCorrectionEffect") or
  1141. e:IsA("BloomEffect") or e:IsA("DepthOfFieldEffect") then
  1142. e.Enabled = false
  1143. end
  1144. end
  1145.  
  1146. function RandomVariable(length)
  1147. local res = ""
  1148. for i = 1, length do
  1149. res = res .. string.char(math.random(97, 122))
  1150. end
  1151. return res
  1152. end
  1153.  
  1154.  
  1155.  
  1156. -- Scripts:
  1157.  
  1158.  
  1159.  
  1160.  
  1161.  
  1162.  
  1163. local RunService = game:GetService("RunService")
  1164. local MaxFPS = getgenv().altFPS
  1165. while true do
  1166. local t0 = tick()
  1167. RunService.Heartbeat:Wait()
  1168. repeat
  1169. until (t0 + 1 / MaxFPS) < tick()
  1170. end
  1171. end
  1172. end
  1173.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement