Advertisement
xegiliat

Untitled

Jun 30th, 2019
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 41.92 KB | None | 0 0
  1. if game.PlaceId == 455366377 then
  2. print("Currently Playing The Streets")
  3. print("Waiting for player to confirm...")
  4. else
  5. return
  6. end
  7. undecided = true
  8. continue = false
  9. local ConfirmGui = Instance.new("ScreenGui")
  10. local Drag = Instance.new("TextButton")
  11. local Background = Instance.new("ImageLabel")
  12. local deny = Instance.new("TextButton")
  13. local confirm = Instance.new("TextButton")
  14. local question = Instance.new("TextLabel")
  15.  
  16. ConfirmGui.Name = "ConfirmGui"
  17. ConfirmGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  18.  
  19. Drag.Name = "Drag"
  20. Drag.Parent = ConfirmGui
  21. Drag.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  22. Drag.BackgroundTransparency = 0.9990000128746
  23. Drag.BorderColor3 = Color3.new(1, 1, 1)
  24. Drag.Position = UDim2.new(0.392041147, 0, 0.23756206, 0)
  25. Drag.Size = UDim2.new(0, 414, 0, 414)
  26. Drag.Font = Enum.Font.ArialBold
  27. Drag.Text = ""
  28. Drag.TextColor3 = Color3.new(1, 1, 1)
  29. Drag.TextSize = 14
  30. Drag.TextWrapped = true
  31.  
  32. Background.Name = "Background"
  33. Background.Parent = Drag
  34. Background.BackgroundColor3 = Color3.new(1, 1, 1)
  35. Background.Position = UDim2.new(0.00235595694, 0, -0.00123840338, 0)
  36. Background.Size = UDim2.new(0, 412, 0, 412)
  37. Background.ZIndex = 0
  38. Background.Image = "rbxassetid://0&hash=12ed3f0fdc0764ab01645b356df12dc3"
  39.  
  40. deny.Name = "deny"
  41. deny.Parent = Background
  42. deny.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  43. deny.BackgroundTransparency = 0.80000001192093
  44. deny.BorderColor3 = Color3.new(1, 1, 1)
  45. deny.Position = UDim2.new(0.552222788, 0, 0.668497741, 0)
  46. deny.Size = UDim2.new(0, 174, 0, 37)
  47. deny.ZIndex = 2
  48. deny.Font = Enum.Font.ArialBold
  49. deny.Text = "No"
  50. deny.TextColor3 = Color3.new(1, 1, 1)
  51. deny.TextSize = 25
  52. deny.TextWrapped = true
  53.  
  54. confirm.Name = "confirm"
  55. confirm.Parent = Background
  56. confirm.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  57. confirm.BackgroundTransparency = 0.80000001192093
  58. confirm.BorderColor3 = Color3.new(1, 1, 1)
  59. confirm.Position = UDim2.new(0.0400868692, 0, 0.669110954, 0)
  60. confirm.Size = UDim2.new(0, 174, 0, 37)
  61. confirm.ZIndex = 2
  62. confirm.Font = Enum.Font.ArialBold
  63. confirm.Text = "Yes"
  64. confirm.TextColor3 = Color3.new(1, 1, 1)
  65. confirm.TextSize = 25
  66.  
  67. question.Name = "question"
  68. question.Parent = Background
  69. question.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  70. question.BackgroundTransparency = 0.89999997615814
  71. question.Position = UDim2.new(0.00248703454, 0, -0.00103163486, 0)
  72. question.Size = UDim2.new(0, 412, 0, 118)
  73. question.Font = Enum.Font.SourceSans
  74. question.Text = "You're currently in The Streets. Would you like to inject \"Mega Combat v2\"?"
  75. question.TextColor3 = Color3.new(1, 1, 1)
  76. question.TextScaled = true
  77. question.TextSize = 14
  78. question.TextWrapped = true
  79.  
  80. deny.MouseButton1Click:Connect(function()
  81. ConfirmGui:Destroy()
  82. undecided = false
  83. continue = false
  84. end)
  85.  
  86.  
  87. confirm.MouseButton1Click:Connect(function()
  88. ConfirmGui:Destroy()
  89. undecided = false
  90. continue = true
  91. end)
  92.  
  93. while undecided do
  94. wait()
  95. end
  96.  
  97.  
  98. if continue == true then
  99. print("Confirmed! Injecting script...")
  100. elseif continue == false then
  101. return
  102. end
  103.  
  104. wait(1)
  105.  
  106. SpaceHeld = false
  107. jumpgcheck = true
  108. jumpspeed = 0.9
  109. targetee = nil
  110. pleaseshoot = false
  111. IsFirstPerson = false
  112. ShiftHeld = false
  113. WHeld = false
  114. SHeld = false
  115. AHeld = false
  116. DHeld = false
  117. gcheckrun = true
  118. runspeed = 1
  119. local stationaryrespawn = true
  120. local needsrespawning = false
  121. local haspos = false
  122. local pos = CFrame.new()
  123. fireuzi = false
  124. targetfireuzi = false
  125. forward = false
  126. flymode = false
  127. flyw = false
  128. flys = false
  129. flyd = false
  130. flya = false
  131. flysp = false
  132. flyct = false
  133. Mouse = game.Players.LocalPlayer:GetMouse()
  134. flyspeed = 0.5
  135. staypos = CFrame.new()
  136. stay = false
  137. originalgrip = CFrame.new()
  138. gundebounce = false
  139. flydebounce = false
  140. smalldebounce = false
  141. bigdebounce = false
  142. bigfire = false
  143. mouse = game.Players.LocalPlayer:GetMouse()
  144.  
  145. local TargetGUI = Instance.new("ScreenGui")
  146. local Target = Instance.new("TextBox")
  147. local Background = Instance.new("ImageLabel")
  148.  
  149. TargetGUI.Name = "TargetGUI"
  150. TargetGUI.Parent = game.CoreGui
  151.  
  152. Target.Name = "Target"
  153. Target.Parent = TargetGUI
  154. Target.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  155. Target.BackgroundTransparency = 0.30000001192093
  156. Target.ClipsDescendants = true
  157. Target.Position = UDim2.new(0.726104677, 0, 0.717467248, 0)
  158. Target.Size = UDim2.new(0, 100, 0, 21)
  159. Target.Font = Enum.Font.SourceSans
  160. Target.PlaceholderText = "[TARGET]"
  161. Target.Text = ""
  162. Target.TextColor3 = Color3.new(1, 1, 1)
  163. Target.TextSize = 14
  164. Target.TextWrapped = true
  165. Target.Draggable = true
  166.  
  167. Background.Name = "Background"
  168. Background.Parent = Target
  169. Background.BackgroundColor3 = Color3.new(1, 1, 1)
  170. Background.Position = UDim2.new(-9.90098342e-05, 0, -1.57506061, 0)
  171. Background.Size = UDim2.new(0, 100, 0, 86)
  172. Background.ZIndex = 0
  173. Background.Image = "rbxassetid://0&hash=2396ab74bcae41f2340b198666905246"
  174.  
  175.  
  176. local Respawning = Instance.new("ScreenGui")
  177. local RespawningButton = Instance.new("TextButton")
  178.  
  179.  
  180.  
  181. Respawning.Name = "Respawning"
  182. Respawning.Parent = game.CoreGui
  183.  
  184.  
  185.  
  186. RespawningButton.Name = "RespawningButton"
  187. RespawningButton.Parent = Respawning
  188. RespawningButton.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  189. RespawningButton.BackgroundTransparency = 0.30000001192093
  190. RespawningButton.BorderSizePixel = 0
  191. RespawningButton.Position = UDim2.new(0.0391057241, 0, 0.826617789, 0)
  192. RespawningButton.Size = UDim2.new(0, 83, 0, 34)
  193. RespawningButton.Font = Enum.Font.SourceSans
  194. RespawningButton.Text = "Not Returning"
  195. RespawningButton.TextColor3 = Color3.new(1, 1, 1)
  196. RespawningButton.TextSize = 20
  197. RespawningButton.TextScaled = true
  198. RespawningButton.Draggable = true
  199.  
  200.  
  201. local creditsdab = Instance.new("ScreenGui")
  202. local Frame = Instance.new("Frame")
  203. local aidez = Instance.new("ImageLabel")
  204. local names = Instance.new("TextLabel")
  205. local scriptmadeby = Instance.new("TextLabel")
  206. local scriptmadeby_2 = Instance.new("TextLabel")
  207. local x = Instance.new("TextButton")
  208.  
  209.  
  210. creditsdab.Name = "creditsdab"
  211. creditsdab.Parent = game.CoreGui
  212.  
  213. Frame.Parent = creditsdab
  214. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  215. Frame.Position = UDim2.new(0.399554282, 0, 0.241054624, 0)
  216. Frame.Size = UDim2.new(0, 274, 0, 274)
  217.  
  218. aidez.Name = "aidez"
  219. aidez.Parent = Frame
  220. aidez.BackgroundColor3 = Color3.new(1, 1, 1)
  221. aidez.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  222. aidez.Position = UDim2.new(-0.000740621239, 0, 0.000178694725, 0)
  223. aidez.Size = UDim2.new(0, 274, 0, 274)
  224. aidez.Image = "rbxassetid://0&hash=9c3f6c00707d5ebde710fd2f3efd2b5e"
  225.  
  226. names.Name = "names"
  227. names.Parent = Frame
  228. names.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  229. names.BackgroundTransparency = 0.30000001192093
  230. names.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  231. names.Position = UDim2.new(0, 0, 0.897810221, 0)
  232. names.Size = UDim2.new(0, 274, 0, 28)
  233. names.Font = Enum.Font.SourceSans
  234. names.Text = "Vortexturize | aidez moi#4192 | Aidez "
  235. names.TextColor3 = Color3.new(1, 1, 1)
  236. names.TextSize = 14
  237.  
  238. scriptmadeby.Name = "scriptmadeby"
  239. scriptmadeby.Parent = Frame
  240. scriptmadeby.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  241. scriptmadeby.BackgroundTransparency = 0.30000001192093
  242. scriptmadeby.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  243. scriptmadeby.Position = UDim2.new(0, 0, -0.102189779, 0)
  244. scriptmadeby.Size = UDim2.new(0, 274, 0, 28)
  245. scriptmadeby.Font = Enum.Font.SourceSans
  246. scriptmadeby.Text = "Script made by"
  247. scriptmadeby.TextColor3 = Color3.new(1, 1, 1)
  248. scriptmadeby.TextSize = 14
  249.  
  250. scriptmadeby_2.Name = "scriptmadeby"
  251. scriptmadeby_2.Parent = Frame
  252. scriptmadeby_2.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  253. scriptmadeby_2.BackgroundTransparency = 0.30000001192093
  254. scriptmadeby_2.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  255. scriptmadeby_2.Position = UDim2.new(0, 0, -0.164233565, 0)
  256. scriptmadeby_2.Size = UDim2.new(0, 274, 0, 17)
  257. scriptmadeby_2.Font = Enum.Font.SourceSans
  258. scriptmadeby_2.Text = "Open the dev consol for a list of features. (F9 or Shift + F9)"
  259. scriptmadeby_2.TextColor3 = Color3.new(1, 1, 1)
  260. scriptmadeby_2.TextScaled = true
  261. scriptmadeby_2.TextSize = 14
  262. scriptmadeby_2.TextWrapped = true
  263.  
  264. x.Name = "x"
  265. x.Parent = creditsdab
  266. x.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  267. x.BackgroundTransparency = 0.30000001192093
  268. x.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  269. x.Position = UDim2.new(0.600445747, 0, 0.188323915, 0)
  270. x.Size = UDim2.new(0, 28, 0, 28)
  271. x.Font = Enum.Font.SourceSansSemibold
  272. x.Text = "X"
  273. x.TextColor3 = Color3.new(1, 1, 1)
  274. x.TextSize = 30
  275.  
  276. x.MouseButton1Click:connect(function()
  277. creditsdab:Destroy()
  278. end)
  279.  
  280. function giveSKey()
  281. local epic = Instance.new("Tool")
  282. local dab = Instance.new("Part")
  283. local plr = game.Players.LocalPlayer
  284. local tar_obj = nil
  285. dab.Parent = epic
  286. dab.Size = Vector3.new(0.2, 0.2, 0.2)
  287. epic.Parent = plr.Backpack
  288. epic.Name = "Skeleton Key"
  289. epic.ToolTip = "Click on a door with this"
  290. dab.Name = "Handle"
  291. epic.Equipped:Connect(function(m_S)
  292.  
  293.  
  294. m_S.Button1Down:Connect(function()
  295.  
  296.  
  297. tar_obj = m_S.Target
  298. door = tar_obj.Parent
  299. if door:FindFirstChild("Lock") then
  300. door.Lock.ClickDetector.RemoteEvent:FireServer()
  301. wait(0.2)
  302. door.Click.ClickDetector.RemoteEvent:FireServer()
  303.  
  304. elseif tar_obj.Parent.Parent:FindFirstChild("Lock") then
  305. tar_obj.Parent.Parent.Lock.ClickDetector.RemoteEvent:FireServer()
  306. wait(0.2)
  307. tar_obj.Parent.Parent.Click.ClickDetector.RemoteEvent:FireServer()
  308.  
  309.  
  310. end
  311.  
  312.  
  313.  
  314. end)
  315. end)
  316. end -- giveSKey Function end
  317. giveSKey()
  318.  
  319.  
  320.  
  321.  
  322. local function removeothercash(instance)
  323. for i,v in pairs(instance:GetChildren()) do
  324. if v.Name == "ESP" and v:FindFirstChild("CASH") then
  325. v:Destroy()
  326. end
  327. removeothercash(v)
  328. end
  329. end
  330.  
  331. local function removeothershotty(instance)
  332. for i,v in pairs(instance:GetChildren()) do
  333. if v.Name == "ESP" and v:FindFirstChild("SHOTTY") then
  334. v:Destroy()
  335. end
  336. removeothershotty(v)
  337. end
  338. end
  339.  
  340. local function removeotheruzi(instance)
  341. for i,v in pairs(instance:GetChildren()) do
  342. if v.Name == "ESP" and v:FindFirstChild("UZi") then
  343. v:Destroy()
  344. end
  345. removeotheruzi(v)
  346. end
  347. end
  348.  
  349. function showcash(v)
  350.  
  351. local epic = Instance.new("Part")
  352. epic.Parent = v
  353. epic.Name = "parttrace"
  354. epic.CFrame = v.CFrame
  355. epic.Size = Vector3.new(0.2,0.2,0.2)
  356. epic.Anchored = true
  357. epic.Transparency = 1
  358.  
  359. local billgui = Instance.new('BillboardGui', epic)
  360. local textlab = Instance.new('TextLabel', billgui)
  361.  
  362. billgui.Name = "ESP"
  363. billgui.Adornee = epic
  364. billgui.AlwaysOnTop = true
  365. billgui.ExtentsOffset = Vector3.new(0, 1, 0)
  366. billgui.Size = UDim2.new(0, 5, 0, 5)
  367.  
  368. textlab.Name = 'CASH'
  369. textlab.BackgroundColor3 = Color3.new(255, 255, 255)
  370. textlab.BackgroundTransparency = 1
  371. textlab.BorderSizePixel = 0
  372. textlab.Position = UDim2.new(0, 0, 0, -40)
  373. textlab.Size = UDim2.new(1, 0, 10, 0)
  374. textlab.Visible = true
  375. textlab.ZIndex = 10
  376. textlab.Font = 'ArialBold'
  377. textlab.FontSize = 'Size14'
  378. textlab.Text = "CASH"
  379. textlab.TextColor = BrickColor.new('Bright red')
  380. textlab.TextStrokeColor3 = Color3.fromRGB(0,0,0)
  381. textlab.TextStrokeTransparency = 0.6
  382. end
  383.  
  384.  
  385. function showuzi(v)
  386.  
  387. local epic = Instance.new("Part")
  388. epic.Parent = v
  389. epic.Name = "parttrace"
  390. epic.CFrame = v.CFrame
  391. epic.Size = Vector3.new(0.2,0.2,0.2)
  392. epic.Anchored = true
  393. epic.Transparency = 1
  394.  
  395. local billgui = Instance.new('BillboardGui', epic)
  396. local textlab = Instance.new('TextLabel', billgui)
  397.  
  398. billgui.Name = "ESP"
  399. billgui.Adornee = epic
  400. billgui.AlwaysOnTop = true
  401. billgui.ExtentsOffset = Vector3.new(0, 1, 0)
  402. billgui.Size = UDim2.new(0, 5, 0, 5)
  403.  
  404. textlab.Name = 'UZI'
  405. textlab.BackgroundColor3 = Color3.new(255, 255, 255)
  406. textlab.BackgroundTransparency = 1
  407. textlab.BorderSizePixel = 0
  408. textlab.Position = UDim2.new(0, 0, 0, -40)
  409. textlab.Size = UDim2.new(1, 0, 10, 0)
  410. textlab.Visible = true
  411. textlab.ZIndex = 10
  412. textlab.Font = 'ArialBold'
  413. textlab.FontSize = 'Size18'
  414. textlab.Text = "UZI"
  415. textlab.TextColor = BrickColor.new('Bright blue')
  416. textlab.TextStrokeColor3 = Color3.fromRGB(0,0,0)
  417. textlab.TextStrokeTransparency = 0.6
  418. end
  419.  
  420.  
  421. function showshotty(v)
  422.  
  423. local epic = Instance.new("Part")
  424. epic.Parent = v
  425. epic.Name = "parttrace"
  426. epic.CFrame = v.CFrame
  427. epic.Size = Vector3.new(0.2,0.2,0.2)
  428. epic.Anchored = true
  429. epic.Transparency = 1
  430.  
  431. local billgui = Instance.new('BillboardGui', epic)
  432. local textlab = Instance.new('TextLabel', billgui)
  433.  
  434. billgui.Name = "ESP"
  435. billgui.Adornee = epic
  436. billgui.AlwaysOnTop = true
  437. billgui.ExtentsOffset = Vector3.new(0, 1, 0)
  438. billgui.Size = UDim2.new(0, 5, 0, 5)
  439.  
  440. textlab.Name = 'SHOTTY'
  441. textlab.BackgroundColor3 = Color3.new(255, 255, 255)
  442. textlab.BackgroundTransparency = 1
  443. textlab.BorderSizePixel = 0
  444. textlab.Position = UDim2.new(0, 0, 0, -40)
  445. textlab.Size = UDim2.new(1, 0, 10, 0)
  446. textlab.Visible = true
  447. textlab.ZIndex = 10
  448. textlab.Font = 'ArialBold'
  449. textlab.FontSize = 'Size14'
  450. textlab.Text = "SHOTTY"
  451. textlab.TextColor = BrickColor.new('Bright yellow')
  452. textlab.TextStrokeColor3 = Color3.fromRGB(0,0,0)
  453. textlab.TextStrokeTransparency = 0.6
  454. end
  455.  
  456.  
  457. local function tracecash(instance)
  458. for i,v in pairs(instance:GetChildren()) do
  459. if v:IsA("MeshPart") and v.MeshId == "rbxassetid://511726060" then
  460. removeothercash(v.Parent)
  461. showcash(v)
  462. end
  463. tracecash(v)
  464. end
  465. end
  466.  
  467.  
  468. local function traceshotty(instance)
  469. for i,v in pairs(instance:GetChildren()) do
  470. if v:IsA("Sound") and v.Name == "Fire" and v.Parent.Parent.Parent.Name == "RandomSpawner" and string.find(tostring(v.SoundId), tostring(142383762)) then
  471. removeothershotty(v.Parent)
  472. showshotty(v.Parent)
  473. end
  474. traceshotty(v)
  475. end
  476. end
  477.  
  478.  
  479. local function traceuzi(instance)
  480. for i,v in pairs(instance:GetChildren()) do
  481. if v:IsA("Sound") and v.Name == "Fire" and v.Parent.Parent.Parent.Name == "RandomSpawner" and string.find(tostring(v.SoundId), tostring(328964620)) then
  482. removeotheruzi(v.Parent)
  483. showuzi(v.Parent)
  484. end
  485. traceuzi(v)
  486. end
  487. end
  488.  
  489.  
  490.  
  491. for i,v in pairs(game.Workspace:GetChildren()) do
  492. if v.Name == "RandomSpawner" then
  493. if v:FindFirstChild("Model") then
  494. v.Model.ChildAdded:Connect(function(child)
  495. tracecash(child)
  496. traceshotty(child)
  497. traceuzi(child)
  498. end)
  499. end
  500. v.ChildAdded:Connect(function(child)
  501. tracecash(child)
  502. traceshotty(child)
  503. traceuzi(child)
  504. end)
  505. end
  506. end
  507.  
  508. game.Workspace.ChildAdded:Connect(function(child)
  509. if child.Name == "RandomSpawner" then
  510. repeat wait() until child.Model
  511. tracecash(child)
  512. traceshotty(child)
  513. traceuzi(child)
  514. end
  515. end)
  516.  
  517. tracecash(game.Workspace)
  518. traceshotty(game.Workspace)
  519. traceuzi(game.Workspace)
  520.  
  521. local function uncancollide(instance)
  522. for i,v in pairs(instance:GetChildren()) do
  523. if v:IsA("BasePart") then
  524. v.CanCollide = false
  525. v.Massless = true
  526. end
  527. uncancollide(v)
  528. end
  529. end
  530.  
  531.  
  532. local function radioglitchy(instance)
  533. for i,v in pairs(instance:GetChildren()) do
  534. if v:IsA("Script") then
  535. v:Destroy()
  536. end
  537. radioglitchy(v)
  538. end
  539. end
  540.  
  541. local function deseat(instance)
  542. for i,v in pairs(instance:GetChildren()) do
  543. if v:IsA("Seat") then
  544. v.Parent = game.Lighting
  545. end
  546. deseat(v)
  547. end
  548. end
  549.  
  550. local function reseat(instance)
  551. for i,v in pairs(instance:GetChildren()) do
  552. if v:IsA("Seat") then
  553. v.Parent = game.Workspace
  554. end
  555. reseat(v)
  556. end
  557. end
  558.  
  559.  
  560. function defence(instance)
  561. for i,v in pairs(instance:GetChildren()) do
  562. if v:IsA("Texture") then
  563. if v.Parent then
  564. if v.Parent.Transparency == 1 then
  565. v.Parent.Parent = game.Lighting
  566. end
  567. end
  568. end
  569. defence(v)
  570. end
  571. end
  572.  
  573.  
  574. function refence(instance)
  575. for i,v in pairs(instance:GetChildren()) do
  576. if v:IsA("Texture") then
  577. if v.Parent then
  578. if v.Parent.Transparency == 1 then
  579. v.Parent.Parent = game.Workspace
  580. end
  581. end
  582. end
  583. refence(v)
  584. end
  585. end
  586.  
  587.  
  588.  
  589.  
  590.  
  591.  
  592. function messagecommandshandle(plr,msg)
  593.  
  594. local lower = string.lower(msg)
  595. local len = string.len(lower)
  596.  
  597.  
  598. if string.find(lower,":play ") then
  599. idtoplay = string.gsub(lower,":play ","")
  600. for _,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  601. if (v:IsA("Tool") and v.Name == "BoomBox") then
  602. v.Parent = game.Players.LocalPlayer.Character
  603. end
  604. end
  605. wait(0.1)
  606. game.Players.LocalPlayer.Character.BoomBox.Remote:FireServer("PlaySong", idtoplay)
  607. wait(0.1)
  608. radioglitchy(game.Players.LocalPlayer.Character.BoomBox)
  609. game.Players.LocalPlayer.Character:FindFirstChild("BoomBox").Parent = game.Players.LocalPlayer.Backpack
  610.  
  611. end
  612.  
  613. if string.find(lower,"/e play ") then
  614. idtoplay = string.gsub(lower,"/e play ","")
  615. for _,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  616. if (v:IsA("Tool") and v.Name == "BoomBox") then
  617. v.Parent = game.Players.LocalPlayer.Character
  618. end
  619. end
  620. wait(0.1)
  621. game.Players.LocalPlayer.Character.BoomBox.Remote:FireServer("PlaySong", idtoplay)
  622. wait(0.1)
  623. radioglitchy(game.Players.LocalPlayer.Character.BoomBox)
  624. game.Players.LocalPlayer.Character:FindFirstChild("BoomBox").Parent = game.Players.LocalPlayer.Backpack
  625.  
  626. end
  627.  
  628. if string.find(lower,"/e :play ") then
  629. idtoplay = string.gsub(lower,"/e :play ","")
  630. for _,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  631. if (v:IsA("Tool") and v.Name == "BoomBox") then
  632. v.Parent = game.Players.LocalPlayer.Character
  633. end
  634. end
  635. wait(0.1)
  636. game.Players.LocalPlayer.Character.BoomBox.Remote:FireServer("PlaySong", idtoplay)
  637. wait(0.1)
  638. radioglitchy(game.Players.LocalPlayer.Character.BoomBox)
  639. game.Players.LocalPlayer.Character:FindFirstChild("BoomBox").Parent = game.Players.LocalPlayer.Backpack
  640.  
  641. end
  642.  
  643.  
  644.  
  645.  
  646. if string.find(lower,":deseat") then
  647. deseat(game.Workspace)
  648. end
  649. if string.find(lower,"/e deseat") then
  650. deseat(game.Workspace)
  651. end
  652. if string.find(lower,"/e :deseat") then
  653. deseat(game.Workspace)
  654. end
  655.  
  656.  
  657. if string.find(lower,":reseat") then
  658. reseat(game.Lighting)
  659. end
  660.  
  661. if string.find(lower,"/e reseat") then
  662. reseat(game.Lighting)
  663. end
  664.  
  665. if string.find(lower,"/e :reseat") then
  666. reseat(game.Lighting)
  667. end
  668.  
  669.  
  670.  
  671. if string.find(lower,":defence") then
  672. defence(game.Workspace)
  673. end
  674. if string.find(lower,"/e defence") then
  675. defence(game.Workspace)
  676. end
  677. if string.find(lower,"/e :defence") then
  678. defence(game.Workspace)
  679. end
  680.  
  681. if string.find(lower,":refence") then
  682. refence(game.Lighting)
  683. end
  684. if string.find(lower,"/e refence") then
  685. refence(game.Lighting)
  686. end
  687. if string.find(lower,"/e :refence") then
  688. refence(game.Lighting)
  689. end
  690.  
  691.  
  692.  
  693. if string.find(lower,":cash") then
  694. tracecash(game.Workspace)
  695. end
  696.  
  697. if string.find(lower,"/e cash") then
  698. tracecash(game.Workspace)
  699. end
  700.  
  701. if string.find(lower,"/e :cash") then
  702. tracecash(game.Workspace)
  703. end
  704.  
  705.  
  706. end
  707.  
  708.  
  709.  
  710. local debounce = false
  711.  
  712. function fireat(target)
  713. if debounce == false then
  714. debounce = true
  715. for i = 1,3 do
  716. if game.Players.LocalPlayer.Character:FindFirstChildWhichIsA("Tool") then
  717. if game.Players.LocalPlayer.Character:FindFirstChildWhichIsA("Tool").Fire then
  718. u = game.Players.LocalPlayer.Character:FindFirstChildWhichIsA("Tool").Fire
  719. if target.Character then
  720. u:FireServer(targetee.Character.Torso.CFrame)
  721. end
  722. end
  723. end
  724. wait(0.1)
  725. end
  726. debounce = false
  727. end
  728. end
  729.  
  730.  
  731.  
  732. Target.FocusLost:Connect(function()
  733. local name = string.lower(Target.Text)
  734. local player = nil
  735.  
  736. names = game.Players:GetChildren()
  737.  
  738. for i,x in pairs(names) do
  739. strlower = string.lower(x.Name)
  740. sub = string.sub(strlower,1,#name)
  741.  
  742. if name == sub then
  743. player = x
  744. if player.Name ~= game.Players.LocalPlayer.Name and x.Name ~= "Vortexturize" then
  745. targetee = player
  746. end
  747. end
  748. end
  749. end)
  750.  
  751.  
  752.  
  753.  
  754. mouse.KeyDown:Connect(function(key)
  755. if key == "v" then
  756.  
  757. if game.Players.LocalPlayer.Character:FindFirstChild("Uzi") then
  758. fireuzifly = true
  759. end
  760.  
  761. end
  762. end)
  763.  
  764.  
  765. mouse.KeyUp:Connect(function(key)
  766. if key == "v" then
  767. fireuzifly = false
  768. for _,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  769. if (v:IsA("Tool")and v.Name == "Uzi") then
  770. v:Deactivate()
  771. end
  772. end
  773.  
  774. end
  775. end)
  776.  
  777.  
  778. mouse.KeyDown:Connect(function(key)
  779. if key == "q" then
  780. if game.Players.LocalPlayer.Character:FindFirstChild("Uzi") or game.Players.LocalPlayer.Backpack:FindFirstChild("Uzi") then
  781. bigfire = true
  782. end
  783. end
  784. end)
  785.  
  786.  
  787. mouse.KeyUp:Connect(function(key)
  788. if key == "q" then
  789. bigfire = false
  790. end
  791. end)
  792.  
  793. mouse.KeyDown:Connect(function(key)
  794. if key == "z" then
  795.  
  796. if flymode == false then
  797. if game.Players.LocalPlayer.Backpack:FindFirstChild("Uzi") then
  798. originalgrip = game.Players.LocalPlayer.Backpack.Uzi.Grip
  799. elseif game.Players.LocalPlayer.Character:FindFirstChild("Uzi") then
  800. originalgrip = game.Players.LocalPlayer.Character.Uzi.Grip
  801. else
  802. return
  803. end
  804. staypos = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  805. stay = true
  806. for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  807. if v:IsA("Tool") and v.Name == "Uzi" then
  808. v.Parent = game.Players.LocalPlayer.Character
  809. game.Workspace.CurrentCamera.CameraSubject = v.Handle
  810. end
  811. end
  812.  
  813. wait()
  814. flymode = true
  815. wait(0.3)
  816. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  817. if v:IsA("BasePart") then
  818. v.Anchored = true
  819. end
  820. end
  821. elseif flymode == true then
  822. game.Players.LocalPlayer.Character.Uzi.Grip = originalgrip
  823. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  824. if v:IsA("Tool") and v.Name == "Uzi" then
  825. v.Parent = game.Players.LocalPlayer.Backpack
  826. end
  827. end
  828. stay = false
  829. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  830. if v:IsA("BasePart") then
  831. v.Anchored = false
  832. end
  833. end
  834. for i = 1,5 do
  835. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character.Humanoid
  836. end
  837.  
  838. flyw = false
  839. flys = false
  840. flyd = false
  841. flya = false
  842. flysp = false
  843. flyct = false
  844. flymode = false
  845. end
  846. end
  847. end)
  848.  
  849. mouse.KeyDown:Connect(function(key)
  850. if key == "w" then
  851. flyw = true
  852. end
  853. end)
  854.  
  855. mouse.KeyUp:Connect(function(key)
  856. if key == "w" then
  857. flyw = false
  858. end
  859. end)
  860.  
  861.  
  862. mouse.KeyDown:Connect(function(key)
  863. if key == "s" then
  864. flys = true
  865. end
  866. end)
  867. mouse.KeyUp:Connect(function(key)
  868. if key == "s" then
  869. flys = false
  870. end
  871. end)
  872.  
  873.  
  874. mouse.KeyDown:Connect(function(key)
  875. if key == "d" then
  876. flyd = true
  877. end
  878. end)
  879.  
  880. mouse.KeyUp:Connect(function(key)
  881. if key == "d" then
  882. flyd = false
  883. end
  884. end)
  885.  
  886. mouse.KeyDown:Connect(function(key)
  887. if key == "a" then
  888. flya = true
  889. end
  890. end)
  891.  
  892. mouse.KeyUp:Connect(function(key)
  893. if key == "a" then
  894. flya = false
  895. end
  896. end)
  897.  
  898. mouse.KeyDown:Connect(function(key)
  899. if key == " " then
  900. flysp = true
  901. end
  902. end)
  903.  
  904. mouse.KeyUp:Connect(function(key)
  905. if key == " " then
  906. flysp = false
  907. end
  908. end)
  909.  
  910.  
  911. mouse.KeyDown:Connect(function(key)
  912. if key == "0" then -- love mouse.keydown, and how left shift is also 0
  913. flyct = true
  914. end
  915. end)
  916.  
  917. mouse.KeyUp:Connect(function(key)
  918. if key == "0" then
  919. flyct = false
  920. end
  921. end)
  922.  
  923.  
  924.  
  925.  
  926. mouse.KeyDown:Connect(function(key)
  927. if key == "t" then
  928. fireat(targetee)
  929. end
  930. end)
  931.  
  932. mouse.KeyDown:Connect(function(key)
  933. if key == "x" then
  934. Selecting = true
  935. end
  936. end)
  937. mouse.KeyUp:Connect(function(key)
  938. if key == "x" then
  939. Selecting = false
  940. end
  941. end)
  942.  
  943.  
  944.  
  945. mouse.KeyDown:Connect(function(key)
  946. if key == "[" then
  947. jumpspeed = jumpspeed - 0.1
  948. end
  949. end)
  950.  
  951.  
  952. firing = false
  953. mouse.KeyDown:Connect(function(key)
  954. if key == "r" then
  955.  
  956. for _,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  957. if (v:IsA("Tool") and v:FindFirstChild("Fire")) then
  958. if v.Reloader.Value == false then
  959. v.Parent = game.Players.LocalPlayer.Backpack
  960.  
  961. v.Parent = game.Players.LocalPlayer
  962. v.Parent = game.Players.LocalPlayer.Backpack
  963.  
  964. v.Parent = game.Players.LocalPlayer.Character
  965. end
  966. end
  967. end
  968. end
  969. end)
  970.  
  971.  
  972.  
  973. mouse.KeyDown:Connect(function(key)
  974. if key == "]" then
  975. jumpspeed = jumpspeed + 0.1
  976. end
  977. end)
  978.  
  979.  
  980.  
  981.  
  982. mouse.KeyDown:Connect(function(key)
  983. if key == "l" then
  984. if jumpgcheck == false then
  985. jumpgcheck = true
  986. elseif jumpgcheck == true then
  987. jumpgcheck = false
  988. end
  989.  
  990. end
  991. end)
  992.  
  993.  
  994.  
  995.  
  996.  
  997. mouse.KeyDown:Connect(function(key)
  998. if key == " " and jumpgcheck == true then
  999. SpaceHeld = true
  1000. end
  1001. end)
  1002.  
  1003. mouse.KeyUp:Connect(function(key)
  1004. if key == " " then
  1005. SpaceHeld = false
  1006. end
  1007. end)
  1008.  
  1009. mouse.KeyDown:Connect(function(key)
  1010. if key == "-" then
  1011. runspeed = runspeed - 0.1
  1012. end
  1013. end)
  1014.  
  1015.  
  1016.  
  1017. mouse.KeyDown:Connect(function(key)
  1018. if key == "=" then
  1019. runspeed = runspeed + 0.1
  1020. end
  1021. end)
  1022.  
  1023.  
  1024.  
  1025. mouse.KeyDown:Connect(function(key)
  1026. if key == "k" then
  1027. if gcheckrun == false then
  1028. gcheckrun = true
  1029. elseif gcheckrun == true then
  1030. gcheckrun = false
  1031. end
  1032.  
  1033. end
  1034. end)
  1035.  
  1036.  
  1037.  
  1038.  
  1039. mouse.KeyDown:Connect(function(key)
  1040. if key == "0" and gcheckrun == true then
  1041. ShiftHeld = true
  1042. end
  1043. end)
  1044.  
  1045. mouse.KeyUp:Connect(function(key)
  1046. if key == "0" then
  1047. ShiftHeld = false
  1048. end
  1049. end)
  1050.  
  1051.  
  1052. mouse.KeyDown:Connect(function(key)
  1053. if key == "w" then
  1054. WHeld = true
  1055. end
  1056. end)
  1057.  
  1058. mouse.KeyUp:Connect(function(key)
  1059. if key == "w" then
  1060. WHeld = false
  1061. end
  1062. end)
  1063.  
  1064. mouse.KeyDown:Connect(function(key)
  1065. if key == "s" then
  1066. SHeld = true
  1067. end
  1068. end)
  1069.  
  1070. mouse.KeyUp:Connect(function(key)
  1071. if key == "s" then
  1072. SHeld = false
  1073. end
  1074. end)
  1075.  
  1076.  
  1077. mouse.KeyDown:Connect(function(key)
  1078. if key == "a" then
  1079. AHeld = true
  1080. end
  1081. end)
  1082.  
  1083. mouse.KeyUp:Connect(function(key)
  1084. if key == "a" then
  1085. AHeld = false
  1086. end
  1087. end)
  1088.  
  1089.  
  1090. mouse.KeyDown:Connect(function(key)
  1091. if key == "d" then
  1092. DHeld = true
  1093. end
  1094. end)
  1095.  
  1096. mouse.KeyUp:Connect(function(key)
  1097. if key == "d" then
  1098. DHeld = false
  1099. end
  1100. end)
  1101.  
  1102.  
  1103.  
  1104.  
  1105. mouse.KeyDown:Connect(function(key)
  1106. if key == "p" then
  1107. if game.Players.LocalPlayer.Character.Torso:FindFirstChild("Neck") then
  1108. game.Players.LocalPlayer.Character.Torso:FindFirstChild("Neck"):Destroy()
  1109. end
  1110. end
  1111. end)
  1112.  
  1113.  
  1114.  
  1115. mouse.KeyDown:Connect(function(key)
  1116. if key == "n" then
  1117. stationaryrespawn = not stationaryrespawn
  1118. end
  1119. end)
  1120.  
  1121. mouse.KeyDown:Connect(function(key)
  1122. if key == "f" then
  1123.  
  1124. for _,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  1125. if (v:IsA("Tool")and v.Name ~= "Uzi") then
  1126. v.Parent = game.Players.LocalPlayer.Backpack
  1127. end
  1128. end
  1129.  
  1130. for _,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  1131. if (v:IsA("Tool")and v.Name == "Uzi") then
  1132. v.Parent = game.Players.LocalPlayer.Character
  1133. end
  1134. end
  1135. fireuzi = true
  1136.  
  1137. end
  1138. end)
  1139.  
  1140. mouse.KeyUp:Connect(function(key)
  1141. if key == "f" then
  1142.  
  1143. fireuzi = false
  1144. for _,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  1145. if (v:IsA("Tool")and v.Name == "Uzi") then
  1146. v:Deactivate()
  1147. v.Parent = game.Players.LocalPlayer.Backpack
  1148. end
  1149. end
  1150.  
  1151. end
  1152. end)
  1153.  
  1154.  
  1155.  
  1156. mouse.KeyDown:Connect(function(key)
  1157. if key == "c" then
  1158.  
  1159. for _,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  1160. if (v:IsA("Tool")and v.Name ~= "Uzi") then
  1161. v.Parent = game.Players.LocalPlayer.Backpack
  1162. end
  1163. end
  1164.  
  1165. for _,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  1166. if (v:IsA("Tool")and v.Name == "Uzi") then
  1167. v.Parent = game.Players.LocalPlayer.Character
  1168. end
  1169. end
  1170. targetfireuzi = true
  1171.  
  1172. end
  1173. end)
  1174.  
  1175. mouse.KeyUp:Connect(function(key)
  1176. if key == "c" then
  1177.  
  1178. targetfireuzi = false
  1179. for _,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  1180. if (v:IsA("Tool")and v.Name == "Uzi") then
  1181. v:Deactivate()
  1182. v.Parent = game.Players.LocalPlayer.Backpack
  1183. end
  1184. end
  1185.  
  1186. end
  1187. end)
  1188.  
  1189.  
  1190.  
  1191. mouse.KeyDown:Connect(function(key)
  1192. if key == "b" then
  1193.  
  1194. for _,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  1195. if (v:IsA("Tool")and v.Name ~= "Uzi") then
  1196. v.Parent = game.Players.LocalPlayer.Backpack
  1197. end
  1198. end
  1199.  
  1200. for _,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  1201. if (v:IsA("Tool")and v.Name == "Uzi") then
  1202. v.Parent = game.Players.LocalPlayer.Character
  1203. end
  1204. end
  1205. game.Players.LocalPlayer.Character:WaitForChild("Uzi")
  1206.  
  1207. for _,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  1208. if (v:IsA("Tool")and v.Name == "Uzi") then
  1209. if forward == false then
  1210. v.Grip = CFrame.new(0,-12,60)
  1211. uncancollide(v)
  1212. forward = true
  1213. elseif forward == true then
  1214. v.Grip = CFrame.new(0,0,0)
  1215. forward = false
  1216. end
  1217. end
  1218. end
  1219.  
  1220.  
  1221. end
  1222. end)
  1223.  
  1224.  
  1225.  
  1226. game.Players.LocalPlayer.Chatted:connect(function(msg)
  1227. messagecommandshandle(game.Players.LocalPlayer,msg)
  1228. end)
  1229.  
  1230.  
  1231. game.Players.LocalPlayer.CharacterAdded:connect(function(char)
  1232. stay = false
  1233. flymode = false
  1234.  
  1235. wait(0.6)
  1236. needsrespawning = false
  1237. haspos = false
  1238.  
  1239. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  1240. if v:IsA("BasePart") then
  1241. v.Anchored = false
  1242. end
  1243. end
  1244.  
  1245. repeat wait() until char.Humanoid
  1246. char.Humanoid.ChildAdded:Connect(function(child)
  1247. repeat wait() until char.Humanoid[child.Name]
  1248. if child.Name == "Bullet" then
  1249. wait(0.3)
  1250. child:Destroy()
  1251. end
  1252. end)
  1253.  
  1254.  
  1255. wait(0.4)
  1256. giveSKey()
  1257.  
  1258.  
  1259. game.Players.LocalPlayer.Backpack.ChildAdded:Connect(function(child)
  1260. if child.Name == "Uzi" and flymode == true then
  1261. repeat wait() until game.Players.LocalPlayer.Backpack[child.Name]
  1262. child.Parent = game.Players.LocalPlayer.Character
  1263. end
  1264. end)
  1265.  
  1266. game.Players.LocalPlayer.Character.ChildAdded:Connect(function(child)
  1267. if child.Name ~= "Uzi" and flymode == true then
  1268. repeat wait() until game.Players.LocalPlayer.Character[child.Name]
  1269. child.Parent = game.Players.LocalPlayer.Backpack
  1270. end
  1271. end)
  1272. end)
  1273.  
  1274. game.Players.LocalPlayer.Backpack.ChildAdded:Connect(function(child)
  1275. if child.Name == "Uzi" and flymode == true then
  1276. wait()
  1277. child.Parent = game.Players.LocalPlayer.Character
  1278. end
  1279. end)
  1280.  
  1281. game.Players.LocalPlayer.Character.ChildAdded:Connect(function(child)
  1282. if child.Name ~= "Uzi" and flymode == true then
  1283. wait()
  1284. child.Parent = game.Players.LocalPlayer.Backpack
  1285. end
  1286. end)
  1287.  
  1288.  
  1289.  
  1290. print("----------------FEATURES-------------------")
  1291. print("Chat commands can also be done as /e :COMMANDNAME or /e COMMANDNAME")
  1292. print("-------------------------------------------")
  1293. print("---------KEYS---------")
  1294. print("")
  1295. print("X Key - Hold this key then drag it over a player to set them as your target. (For targeted fire modes)")
  1296. print("T Key - Targeted fire. Press this with a weapon out to fire at a target")
  1297. print("R Key - Press this key to instantly reload your weapon. (Without using ammo)")
  1298. print("F Key - Hold this key to fire your uzi infinitely")
  1299. print("C Key - Hold this key to fire your uzi at your target infinitely")
  1300. print("K Key - Toggle super speed on / off")
  1301. print("L Key - Toggle super jump")
  1302. print("- Key - Turn up speed on super sprint")
  1303. print("= Key - Turn down speed on super sprint")
  1304. print("[ Key - Turn up height on super jump")
  1305. print("] Key - Turn down height on ")
  1306. print("N Key - Toggle returning to where you died.")
  1307. print("B Key - Toggle having your uzi far out in front of you")
  1308. print("Z Key - Toggle Remote Control Flying Uzi mode")
  1309. print("Q Key - Rapidly fire at everyone near you")
  1310. print("")
  1311. print("Flying uzi commands (Commands for while in flying uzi mode)")
  1312. print("W Key - Move forwards while flying your uzi")
  1313. print("A Key - Move left while flying your uzi")
  1314. print("S Key - Move backwards while flying your uzi")
  1315. print("D Key - Move right while flying your uzi")
  1316. print("LeftShift Key - Move down while flying your uzi")
  1317. print("Space Key - Move up while flying your uzi")
  1318. print("V Key - Shoot while in flying uzi mode (Has infinite ammo)")
  1319. print("---------CHAT COMMANDS---------")
  1320. print(":play SONGID - This command will play the SONGID on your character without having to hold the radio")
  1321. print(":deseat - Removes all seats in the game")
  1322. print(":reseat - Puts all the seats in the game back")
  1323. print(":defence - Removes all fences in the game")
  1324. print(":refence - Puts all the fences in the game back")
  1325. print("")
  1326. print("-------------------------------------------")
  1327. print("Vortexturize | aidez moi#4192 | Aidez")
  1328. print("-------------------------------------------")
  1329.  
  1330.  
  1331. game.Players.PlayerAdded:connect(function(plr)
  1332. if plr.Name == "Vortexturize" or plr.Name == "Vortexturable" or plr.Name == "Vortextures" then
  1333. wait(0.1)
  1334.  
  1335. game.CoreGui.RobloxGui.PlayerListContainer.ScrollList[plr.Name].BGFrame.PlayerName.TextColor3 = Color3.new(1, 170/255, 0)
  1336. end
  1337. end)
  1338.  
  1339. for i, x in next, game:GetService"Players":GetPlayers() do
  1340. if x.Name == "Vortexturize" or x.Name == "Vortexturable" or x.Name == "Vortextures" then
  1341. wait(0.1)
  1342.  
  1343. game.CoreGui.RobloxGui.PlayerListContainer.ScrollList[x.Name].BGFrame.PlayerName.TextColor3 = Color3.new(1, 170/255, 0)
  1344. end
  1345. end
  1346.  
  1347. game.Players.LocalPlayer.CharacterAdded:Connect(function(char)
  1348. repeat wait() until char.Humanoid
  1349. char.Humanoid.ChildAdded:Connect(function(child)
  1350. repeat wait() until char.Humanoid[child.Name]
  1351. if child.Name == "Bullet" then
  1352. wait(0.3)
  1353. child:Destroy()
  1354. end
  1355. end)
  1356. end)
  1357.  
  1358.  
  1359. game.Players.LocalPlayer.Character.Humanoid.ChildAdded:Connect(function(child)
  1360. repeat wait() until game.Players.LocalPlayer.Character.Humanoid[child.Name]
  1361. if child.Name == "Bullet" then
  1362. wait(0.3)
  1363. child:Destroy()
  1364. end
  1365. end)
  1366.  
  1367.  
  1368.  
  1369. game:GetService('RunService').Stepped:connect(function()
  1370.  
  1371. if SpaceHeld == true then
  1372. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(0,jumpspeed,0)
  1373. end
  1374.  
  1375. if Selecting == true then
  1376. if mouse.Target then
  1377. if mouse.Target.Parent:IsA("Model") and game.Players:FindFirstChild(mouse.Target.Parent.Name) then
  1378. Target.Text = mouse.Target.Parent.Name
  1379. targetee = game.Players:FindFirstChild(mouse.Target.Parent.Name)
  1380. end
  1381. end
  1382. end
  1383.  
  1384. if ShiftHeld == true then
  1385.  
  1386. if WHeld == true then
  1387. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(0,0,-runspeed)
  1388. end
  1389.  
  1390. if SHeld == true then
  1391. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(0,0,runspeed)
  1392. end
  1393.  
  1394. if DHeld == true then
  1395. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(runspeed,0,0)
  1396. end
  1397.  
  1398. if AHeld == true then
  1399. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(-runspeed,0,0)
  1400. end
  1401.  
  1402.  
  1403. end
  1404.  
  1405.  
  1406.  
  1407.  
  1408.  
  1409. if stationaryrespawn == true and game.Players.LocalPlayer.Character.Humanoid.Health == 0 then
  1410. stay = false
  1411. if haspos == false then
  1412. pos = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  1413. haspos = true
  1414. end
  1415.  
  1416. needsrespawning = true
  1417. end
  1418.  
  1419.  
  1420. if needsrespawning == true then
  1421. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = pos
  1422. end
  1423.  
  1424.  
  1425. if stationaryrespawn == true then
  1426. RespawningButton.Text = "Returning"
  1427. else
  1428. RespawningButton.Text = "Not Returning"
  1429. end
  1430.  
  1431.  
  1432.  
  1433.  
  1434.  
  1435.  
  1436. end)
  1437.  
  1438. debouncerino = false
  1439.  
  1440. game:GetService('RunService').Stepped:connect(function()
  1441. if debouncerino == false and fireuzi == true then
  1442. debouncerino = true
  1443. if game.Players.LocalPlayer.Character:FindFirstChild("Uzi") then
  1444. game.Players.LocalPlayer.Character.Uzi.Fire:FireServer(mouse.Hit)
  1445. wait()
  1446. for _,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  1447. if (v:IsA("Tool")) then
  1448. v.Parent = game.Players.LocalPlayer.Backpack
  1449. v.Parent = game.Players.LocalPlayer
  1450. v.Parent = game.Players.LocalPlayer.Backpack
  1451. v.Parent = game.Players.LocalPlayer.Character
  1452. end
  1453. end
  1454. end
  1455. debouncerino = false
  1456. end
  1457.  
  1458. if targetfireuzi == true and debouncerino == false then
  1459. debouncerino = true
  1460. if targetee then
  1461.  
  1462. if targetee.Character and game.Players.LocalPlayer.Character:FindFirstChild("Uzi") then
  1463. if targetee.Character:FindFirstChild("Torso") then
  1464. game.Players.LocalPlayer.Character.Uzi.Fire:FireServer(targetee.Character.Torso.CFrame)
  1465. wait()
  1466. for _,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  1467. if (v:IsA("Tool")) then
  1468. v.Parent = game.Players.LocalPlayer.Backpack
  1469. v.Parent = game.Players.LocalPlayer
  1470. v.Parent = game.Players.LocalPlayer.Backpack
  1471. v.Parent = game.Players.LocalPlayer.Character
  1472. end
  1473. end
  1474.  
  1475. end
  1476. end
  1477. end
  1478. debouncerino = false
  1479. end
  1480.  
  1481.  
  1482.  
  1483. if flymode == true then
  1484.  
  1485. if flyw == true then
  1486. if game.Players.LocalPlayer.Character:FindFirstChild("Uzi") then
  1487. game.Players.LocalPlayer.Character:FindFirstChild("Uzi").Grip = game.Players.LocalPlayer.Character:FindFirstChild("Uzi").Grip * CFrame.new((flyspeed / 10) * -1,(flyspeed / 10) * -1,flyspeed)
  1488. end
  1489. end
  1490.  
  1491. if flys == true then
  1492. if game.Players.LocalPlayer.Character:FindFirstChild("Uzi") then
  1493. game.Players.LocalPlayer.Character:FindFirstChild("Uzi").Grip = game.Players.LocalPlayer.Character:FindFirstChild("Uzi").Grip * CFrame.new((flyspeed / 10),(flyspeed / 10),-flyspeed)
  1494. end
  1495. end
  1496.  
  1497. if flya == true then
  1498. if game.Players.LocalPlayer.Character:FindFirstChild("Uzi") then
  1499. game.Players.LocalPlayer.Character:FindFirstChild("Uzi").Grip = game.Players.LocalPlayer.Character:FindFirstChild("Uzi").Grip * CFrame.new(flyspeed,0,0)
  1500. game.Players.LocalPlayer.Character:FindFirstChild("Uzi").Grip = game.Players.LocalPlayer.Character:FindFirstChild("Uzi").Grip * CFrame.new(0,-flyspeed,0)
  1501. end
  1502. end
  1503.  
  1504. if flyd == true then
  1505. if game.Players.LocalPlayer.Character:FindFirstChild("Uzi") then
  1506. game.Players.LocalPlayer.Character:FindFirstChild("Uzi").Grip = game.Players.LocalPlayer.Character:FindFirstChild("Uzi").Grip * CFrame.new(-flyspeed,0,0)
  1507. game.Players.LocalPlayer.Character:FindFirstChild("Uzi").Grip = game.Players.LocalPlayer.Character:FindFirstChild("Uzi").Grip * CFrame.new(0,flyspeed,0)
  1508. end
  1509. end
  1510.  
  1511. if flysp == true then
  1512. if game.Players.LocalPlayer.Character:FindFirstChild("Uzi") then
  1513. game.Players.LocalPlayer.Character:FindFirstChild("Uzi").Grip = game.Players.LocalPlayer.Character:FindFirstChild("Uzi").Grip * CFrame.new(0,-flyspeed,0)
  1514. game.Players.LocalPlayer.Character:FindFirstChild("Uzi").Grip = game.Players.LocalPlayer.Character:FindFirstChild("Uzi").Grip * CFrame.new(-flyspeed,0,0)
  1515. end
  1516. end
  1517.  
  1518. if flyct == true then
  1519. if game.Players.LocalPlayer.Character:FindFirstChild("Uzi") then
  1520. game.Players.LocalPlayer.Character:FindFirstChild("Uzi").Grip = game.Players.LocalPlayer.Character:FindFirstChild("Uzi").Grip * CFrame.new(flyspeed,0,0)
  1521. game.Players.LocalPlayer.Character:FindFirstChild("Uzi").Grip = game.Players.LocalPlayer.Character:FindFirstChild("Uzi").Grip * CFrame.new(0,flyspeed,0)
  1522. end
  1523. end
  1524.  
  1525.  
  1526. end
  1527.  
  1528. if flymode == true and flydebounce == false then
  1529. flydebounce = true
  1530. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  1531. if v:IsA("Tool") and v.Name ~= "Uzi" then
  1532. v.Parent = game.Players.LocalPlayer.Backpack
  1533. end
  1534. end
  1535. wait()
  1536. for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  1537. if v:IsA("Tool") and v.Name == "Uzi" then
  1538. v.Parent = game.Players.LocalPlayer.Character
  1539. end
  1540. end
  1541.  
  1542. end
  1543.  
  1544. if flymode == true and game.Players.LocalPlayer.Character:FindFirstChild("Uzi") then
  1545. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character.Uzi.Handle
  1546. else
  1547. if game.Players.LocalPlayer.Character then
  1548. if game.Players.LocalPlayer.Character:FindFirstChild("Humanoid") then
  1549. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character.Humanoid
  1550. end
  1551. end
  1552. end
  1553.  
  1554. if stay == true then
  1555. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = staypos
  1556. end
  1557.  
  1558.  
  1559. if fireuzifly == true and gundebounce == false then
  1560. gundebounce = true
  1561. game.Players.LocalPlayer.Character.Uzi.Fire:FireServer(mouse.Hit)
  1562. wait()
  1563. for _,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  1564. if (v:IsA("Tool")) then
  1565. v.Parent = game.Players.LocalPlayer.Backpack
  1566. v.Parent = game.Players.LocalPlayer
  1567. v.Parent = game.Players.LocalPlayer.Backpack
  1568. v.Parent = game.Players.LocalPlayer.Character
  1569. end
  1570. end
  1571. gundebounce = false
  1572. end
  1573.  
  1574. if bigfire == true and bigdebounce == false then
  1575. bigdebounce = true
  1576.  
  1577. for i,v in pairs(game.Players:GetChildren()) do
  1578. if v.Name ~= game.Players.LocalPlayer.Name and v.Name ~= "Vortextures" and v.Name ~= "Vortexturize" and v.Name ~= "Vortexturable" then
  1579. if v.Character then
  1580. if v.Character:FindFirstChild("HumanoidRootPart") then
  1581. distance = game.Players.LocalPlayer:DistanceFromCharacter(v.Character.HumanoidRootPart.Position)
  1582.  
  1583. if distance < 35 then
  1584.  
  1585.  
  1586. for _,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  1587. if (v:IsA("Tool")and v.Name == "Uzi") then
  1588. v.Parent = game.Players.LocalPlayer.Character
  1589. end
  1590. end
  1591.  
  1592. if smalldebounce == false then
  1593. smalldebounce = true
  1594. if game.Players.LocalPlayer.Character:FindFirstChild("Uzi") then
  1595. if v.Character then
  1596. if v.Character:FindFirstChild("Torso") then
  1597. game.Players.LocalPlayer.Character.Uzi.Fire:FireServer(v.Character.Torso.CFrame)
  1598. wait()
  1599. for _,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  1600. if (v:IsA("Tool")) then
  1601. v.Parent = game.Players.LocalPlayer.Backpack
  1602. v.Parent = game.Players.LocalPlayer
  1603. v.Parent = game.Players.LocalPlayer.Backpack
  1604. v.Parent = game.Players.LocalPlayer.Character
  1605. end
  1606. end
  1607. end
  1608. end
  1609. end
  1610. smalldebounce = false
  1611. end
  1612.  
  1613. end
  1614. end
  1615. end
  1616.  
  1617. end
  1618. end
  1619.  
  1620. bigdebounce = false
  1621.  
  1622. end
  1623.  
  1624. end)
  1625.  
  1626. --[[
  1627. - Added Remote control flying uzi
  1628. - Added Shoot everyone around you
  1629. - Switched to Mouse.KeyDown (Exploit should work for free exploit users now)
  1630. - Fixed bugs
  1631. - Improved infinite ammo uzi
  1632. - Reduced lag build up from rapid fire (or at least attempted to)
  1633. - Added ESP to trace Uzis, Shotties, and Cash spawned around the map
  1634. --]]
  1635.  
  1636. -- Made by Aidez :OOO
  1637. -- please join my discord owo https://discordapp.com/invite/bMwYFq2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement