Advertisement
alek_

MegaCombat v3

Apr 4th, 2020
326
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 72.68 KB | None | 0 0
  1. repeat wait() until game:FindFirstChild("Players") ~= nil
  2. repeat wait() until game.Players.LocalPlayer ~= nil
  3.  
  4. if game.PlaceId == 455366377 or game.PlaceId == 4669040 then
  5. print("Currently Playing The Streets")
  6. print("Waiting for player to confirm...")
  7. else
  8. return
  9. end
  10.  
  11. mouse = game.Players.LocalPlayer:GetMouse()
  12.  
  13. ShiftHeld = false
  14. WHeld = false
  15. SHeld = false
  16. AHeld = false
  17. DHeld = false -- LMFAO
  18. local SuperRun = true
  19. RunSpeed = 1
  20.  
  21. SpaceHeld = false
  22. local SuperJump = true
  23. JumpHeight = 0.9
  24.  
  25. shootuzi = false
  26. canfireuzi = true
  27. uzidelay = false
  28. leftclickdown = true
  29. rightclickdown = false
  30. reloaddebounce = false
  31.  
  32. attackernames = {
  33. "OPP";
  34. "ATTACKER";
  35. "ENEMY";
  36. "FIEND";
  37. "v SMELLY v";
  38. "HEALTH TAKER";
  39. }
  40.  
  41. hitlisttitles = {
  42. "KILL\nV";
  43. "KILL THIS PERSON\nV";
  44. }
  45.  
  46. uzidebounce = false
  47. superuziequipped = false
  48.  
  49. eating = false
  50.  
  51. noslow = false
  52.  
  53. noclip = false
  54.  
  55. antiknockdown = false
  56.  
  57. triggerbot = false
  58.  
  59. flying = false
  60. flyspeed = 2
  61. firstfly = true
  62.  
  63. gotodebounce = false
  64.  
  65. autoheal = false
  66. reequiptool = nil
  67.  
  68. local meta = getrawmetatable(game) -- rip free exploits :sob:
  69. local namecall = meta.__namecall
  70. local newindex = meta.__newindex
  71. local index = meta.__index
  72. setreadonly(meta,false)
  73. fakemodel = Instance.new("Model")
  74. fakemodel.Parent = game.Workspace
  75. fakehumanoid = Instance.new("Humanoid")
  76. fakevalue = Instance.new("BoolValue")
  77. fakevalue.Value = false
  78.  
  79. meta.__newindex=function(self,k,new)
  80. if not checkcaller() then
  81. local Script=getfenv(2).script
  82. if k == "CFrame" then
  83. if self.Parent == game.Players.LocalPlayer.Character then
  84. return
  85. end
  86. end
  87. if tostring(self) == "Humanoid" and tostring(k) == "Health" then
  88. return newindex(fakehumanoid,k,new)
  89. end
  90. end
  91. return newindex(self,k,new)
  92. end
  93.  
  94. meta.__namecall=function(self,...)
  95. if not checkcaller() then
  96. local Args={...}
  97. local method = getnamecallmethod()
  98. if method == "Destroy" and tostring(self) == "BodyGyro" or method == "Destroy" and tostring(self) == "BodyVelocity" then
  99. local destroybait = Instance.new("Part", game.Workspace)
  100. return namecall(destroybait,...)
  101. end
  102. if method == "BreakJoints" and tostring(self) == game.Players.LocalPlayer.Character.Name then
  103. return namecall(fakemodel,...)
  104. end
  105. if method == "FireServer" then
  106. if self.Name == "lIII" or tostring(self.Parent) == "ReplicatedStorage" then
  107. return wait(9e9)
  108. end
  109. if Args[1] == "hey" then
  110. return wait(9e9)
  111. end
  112. end
  113. end
  114. return namecall(self,...)
  115. end
  116.  
  117. meta.__index=function(self,k)
  118. local Script=getfenv(2).script
  119. if not checkcaller() then
  120. if tostring(Script)=="LocalScript" and Script.Parent == game.Players.LocalPlayer.PlayerGui then
  121. if tostring(self) == "Part" and tostring(k) == "Anchored" then
  122. return index(fakevalue,"Value") -- "CustomPhysicalProperties"
  123. end
  124. end
  125. end
  126. return index(self,k)
  127. end
  128.  
  129. function esp(instance)
  130. local type = ""
  131. local EspText = ""
  132. local EspFontSize = "Size14" -- Uzi has larger text
  133. local EspColor = BrickColor.new("Bright green") -- Temporary placeholder
  134. local EspPart = instance
  135. for i,v in pairs(instance:GetDescendants()) do
  136. if v:IsA("MeshPart") and v.Name == "Blade" and string.find(tostring(v.MeshId), tostring(12177251)) then
  137. type = "katana"
  138. EspText = "KATANA"
  139. EspColor = BrickColor.new("Bright green")
  140. EspPart = v:FindFirstAncestorWhichIsA("BasePart")
  141. elseif v:IsA("MeshPart") and v.MeshId == "rbxassetid://511726060" then
  142. type = "cash"
  143. EspText = "CASH"
  144. EspColor = BrickColor.new("Bright red")
  145. EspPart = v
  146. elseif v:IsA("Sound") and v.Name == "Fire" and string.find(tostring(v.SoundId), tostring(328964620)) then
  147. type = "uzi"
  148. EspText = "UZI"
  149. EspFontSize = "Size18"
  150. EspColor = BrickColor.new("Bright blue")
  151. EspPart = v:FindFirstAncestorWhichIsA("BasePart")
  152. elseif v:IsA("Sound") and v.Name == "Fire" and string.find(tostring(v.SoundId), tostring(142383762)) then
  153. type = "shotty"
  154. EspText = "SHOTTY"
  155. EspColor = BrickColor.new("Bright yellow")
  156. EspPart = v:FindFirstAncestorWhichIsA("BasePart")
  157. end
  158. end
  159.  
  160.  
  161. local TracerPart = Instance.new("Part")
  162. TracerPart.Parent = EspPart
  163. TracerPart.Name = "TracerPart"
  164. TracerPart.CFrame = EspPart.CFrame
  165. TracerPart.Size = Vector3.new(0.2,0.2,0.2)
  166. TracerPart.Anchored = true
  167. TracerPart.Transparency = 1
  168.  
  169. local billgui = Instance.new('BillboardGui', TracerPart)
  170. local textlab = Instance.new('TextLabel', billgui)
  171.  
  172. billgui.Name = "ESPBillboard"
  173. billgui.Adornee = TracerPart
  174. billgui.AlwaysOnTop = true
  175. billgui.ExtentsOffset = Vector3.new(0, 1, 0)
  176. billgui.Size = UDim2.new(0, 5, 0, 5)
  177.  
  178. textlab.Name = "ESPLabel"
  179. textlab.BackgroundColor3 = Color3.new(255, 255, 255)
  180. textlab.BackgroundTransparency = 1
  181. textlab.BorderSizePixel = 0
  182. textlab.Position = UDim2.new(0, 0, 0, -40)
  183. textlab.Size = UDim2.new(1, 0, 10, 0)
  184. textlab.Visible = true
  185. textlab.ZIndex = 10
  186. textlab.Font = 'ArialBold'
  187. textlab.FontSize = EspFontSize
  188. textlab.Text = EspText
  189. textlab.TextColor = EspColor
  190. textlab.TextStrokeColor3 = Color3.fromRGB(0,0,0)
  191. textlab.TextStrokeTransparency = 0.6
  192. end
  193.  
  194. function markplayer(player)
  195. if player.Character ~= nil then
  196. if not player.Character.Head:FindFirstChild("ATTACKER") then
  197. local box = Instance.new("BoxHandleAdornment")
  198. box.Parent = player.Character.HumanoidRootPart
  199. box.Adornee = player.Character.HumanoidRootPart
  200. local yuh = player.Character.HumanoidRootPart.Size
  201. box.Size = Vector3.new(yuh.X + 0.01, yuh.Y + 0.01, yuh.Z + 0.01)
  202. box.AlwaysOnTop = true
  203. box.ZIndex = -1
  204. box.Color3 = Color3.new(255,0,0)
  205.  
  206. local billgui = Instance.new('BillboardGui', player.Character.Head)
  207. local textlab = Instance.new('TextLabel', billgui)
  208.  
  209. billgui.Name = "ATTACKER"
  210. billgui.Adornee = player.Character.Head
  211. billgui.AlwaysOnTop = true
  212. billgui.ExtentsOffset = Vector3.new(0, 3, 0)
  213. billgui.Size = UDim2.new(0, 5, 0, 5)
  214.  
  215. textlab.Name = "Marker"
  216. textlab.BackgroundColor3 = Color3.new(255, 255, 255)
  217. textlab.BackgroundTransparency = 1
  218. textlab.BorderSizePixel = 0
  219. textlab.Position = UDim2.new(0, 0, 0, -40)
  220. textlab.Size = UDim2.new(1, 0, 10, 0)
  221. textlab.Visible = true
  222. textlab.ZIndex = 10
  223. textlab.Font = "ArialBold"
  224. textlab.FontSize = "Size18"
  225. textlab.Text = attackernames[math.random(1,#attackernames)]
  226. textlab.TextColor = BrickColor.new("Really red")
  227. textlab.TextStrokeColor3 = Color3.fromRGB(0,0,0)
  228. textlab.TextStrokeTransparency = 0.6
  229.  
  230. wait(7)
  231.  
  232. billgui:Destroy()
  233. box:Destroy()
  234. end
  235. end
  236. end
  237.  
  238.  
  239. function togglefly()
  240. flying = not flying
  241. local currenttext = ""
  242. if flying == true then
  243. currenttext = "FLIGHT is now turned ON!"
  244. else
  245. currenttext = "FLIGHT is now turned OFF!"
  246. end
  247. game.StarterGui:SetCore("SendNotification", {
  248. Title = "notification";
  249. Text = currenttext;
  250. Icon = "rbxassetid://2541869220";
  251. Duration = 1.3;
  252. })
  253. if flying then
  254. if game.Players.LocalPlayer.Character ~= nil then
  255. if game.Players.LocalPlayer.Character:FindFirstChild("HumanoidRootPart") and game.Players.LocalPlayer.Character:FindFirstChild("Humanoid") then
  256. local Float = Instance.new('Part', game.Players.LocalPlayer.Character)
  257. Float.Name = "Float"
  258. Float.Transparency = 1
  259. Float.Size = Vector3.new(6,1,6)
  260. Float.Anchored = true
  261. game.Players.LocalPlayer.Character.HumanoidRootPart.Anchored = true
  262. local T = game.Players.LocalPlayer.Character.HumanoidRootPart
  263. local CONTROL = {F = 0, B = 0, L = 0, R = 0}
  264. local lCONTROL = {F = 0, B = 0, L = 0, R = 0}
  265. local SPEED = 0
  266. local function FLY()
  267. FLYING = true
  268. local BG = Instance.new('BodyGyro', T)
  269. local BV = Instance.new('BodyVelocity', T)
  270. BG.P = 9e4
  271. BG.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  272. BG.cframe = T.CFrame
  273. BV.velocity = Vector3.new(0, 0.1, 0)
  274. BV.maxForce = Vector3.new(9e9, 9e9, 9e9)
  275. spawn(function()
  276. repeat wait()
  277. if CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0 then
  278. SPEED = 50
  279. elseif not (CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0) and SPEED ~= 0 then
  280. SPEED = 0
  281. end
  282. if (CONTROL.L + CONTROL.R) ~= 0 or (CONTROL.F + CONTROL.B) ~= 0 then
  283. BV.velocity = ((workspace.CurrentCamera.CoordinateFrame.lookVector * (CONTROL.F + CONTROL.B)) + ((workspace.CurrentCamera.CoordinateFrame * CFrame.new(CONTROL.L + CONTROL.R, (CONTROL.F + CONTROL.B) * 0.2, 0).p) - workspace.CurrentCamera.CoordinateFrame.p)) * SPEED
  284. lCONTROL = {F = CONTROL.F, B = CONTROL.B, L = CONTROL.L, R = CONTROL.R}
  285. elseif (CONTROL.L + CONTROL.R) == 0 and (CONTROL.F + CONTROL.B) == 0 and SPEED ~= 0 then
  286. BV.velocity = ((workspace.CurrentCamera.CoordinateFrame.lookVector * (lCONTROL.F + lCONTROL.B)) + ((workspace.CurrentCamera.CoordinateFrame * CFrame.new(lCONTROL.L + lCONTROL.R, (lCONTROL.F + lCONTROL.B) * 0.2, 0).p) - workspace.CurrentCamera.CoordinateFrame.p)) * SPEED
  287. else
  288. BV.velocity = Vector3.new(0, 0.1, 0)
  289. end
  290. BG.cframe = workspace.CurrentCamera.CoordinateFrame
  291. until not FLYING
  292. CONTROL = {F = 0, B = 0, L = 0, R = 0}
  293. lCONTROL = {F = 0, B = 0, L = 0, R = 0}
  294. SPEED = 0
  295. BG:destroy()
  296. BV:destroy()
  297. end)
  298. end
  299. mouse.KeyDown:connect(function(KEY)
  300. if KEY:lower() == 'w' then
  301. CONTROL.F = flyspeed
  302. elseif KEY:lower() == 's' then
  303. CONTROL.B = -flyspeed
  304. elseif KEY:lower() == 'a' then
  305. CONTROL.L = -flyspeed
  306. elseif KEY:lower() == 'd' then
  307. CONTROL.R = flyspeed
  308. end
  309. end)
  310. mouse.KeyUp:connect(function(KEY)
  311. if KEY:lower() == 'w' then
  312. CONTROL.F = 0
  313. elseif KEY:lower() == 's' then
  314. CONTROL.B = 0
  315. elseif KEY:lower() == 'a' then
  316. CONTROL.L = 0
  317. elseif KEY:lower() == 'd' then
  318. CONTROL.R = 0
  319. end
  320. end)
  321. FLY()
  322. game.Players.LocalPlayer.Character.HumanoidRootPart.Anchored = false
  323. end
  324. end
  325. else
  326. if game.Players.LocalPlayer.Character then
  327. if game.Players.LocalPlayer.Character:FindFirstChild("Float") then
  328. game.Players.LocalPlayer.Character:FindFirstChild("Float"):Destroy()
  329. end
  330. end
  331. local AnimationTracks = game.Players.LocalPlayer.Character.Humanoid:GetPlayingAnimationTracks()
  332. for i, track in pairs (AnimationTracks) do
  333. if track.Name ~= "WalkAnim" then
  334. track:Stop()
  335. end
  336. end
  337. FLYING = false
  338. end
  339. end
  340.  
  341. function mostclipsequip()
  342. local mostclips = -1
  343. local chosenuzi = nil
  344. if game.Players.LocalPlayer.PlayerGui:FindFirstChild("Uzi") then
  345. for i,v in pairs(game.Players.LocalPlayer.PlayerGui:GetChildren()) do
  346. if v:IsA("Tool") and v.Name == "Uzi" and v:FindFirstChild("Clips") then
  347. if v:FindFirstChild("Clips").Value > mostclips then
  348. mostclips = v:FindFirstChild("Clips").Value
  349. chosenuzi = v
  350. end
  351. end
  352. end
  353. end
  354. chosenuzi.Grip = CFrame.new(0.400000006, -0.100000001, -0.200000003, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  355. chosenuzi.Parent = game.Players.LocalPlayer.Backpack
  356. end
  357.  
  358. function autoattack(player)
  359. if game.Players.LocalPlayer.Backpack:FindFirstChild("Super Uzi") or game.Players.LocalPlayer.Character:FindFirstChild("Super Uzi") then
  360. if uzidebounce == false then
  361. uzidebounce = true
  362. local previoustool = nil
  363. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  364. if v:IsA("Tool") then
  365. previoustool = v
  366. v.Parent = game.Players.LocalPlayer.Backpack
  367. end
  368. end
  369. for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  370. if v.Name == "Uzi" then
  371. v.Parent = game.Players.LocalPlayer.PlayerGui
  372. end
  373. end
  374. local animation = Instance.new("Animation")
  375. animation.AnimationId = "rbxassetid://503285264"
  376. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(animation)
  377. track.Name = "GunHold"
  378. track:Play()
  379. wait(0.2)
  380. for i,v in pairs(game.Players.LocalPlayer.PlayerGui:GetChildren()) do
  381. if v:IsA("Tool") and v.Name == "Uzi" and v:FindFirstChild("Fire") then
  382. if player ~= nil then
  383. -- v.Grip = CFrame.new(1.5,0.5,-6)
  384. v.Parent = game.Players.LocalPlayer.Backpack
  385. v.Parent = game.Players.LocalPlayer.Character
  386. for i = 1,2 do
  387. v.Fire:FireServer(player.Character.Head.CFrame + player.Character.HumanoidRootPart.Velocity/5)
  388. end
  389. v.Parent = game.Players.LocalPlayer.Backpack
  390. v.Parent = game.Players.LocalPlayer.PlayerGui
  391. v.Grip = CFrame.new(0.400000006, -0.100000001, -0.200000003, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  392. if uzidelay == true then
  393. wait()
  394. end
  395. end
  396. end
  397. end
  398. local AnimationTracks = game.Players.LocalPlayer.Character.Humanoid:GetPlayingAnimationTracks()
  399. for i,v in pairs (AnimationTracks) do
  400. if v.Name == "GunHold" then
  401. v:Stop()
  402. end
  403. end
  404. mostclipsequip()
  405. if previoustool ~= nil then
  406. previoustool.Parent = game.Players.LocalPlayer.Character
  407. end
  408. uzidebounce = false
  409. end
  410. end
  411. end
  412.  
  413. function untrace(player)
  414. if player.Character ~= nil then
  415. if player.Character:FindFirstChild("Head") then
  416. if player.Character.Head:FindFirstChild("TRACE") then
  417. player.Character.Head:FindFirstChild("TRACE"):Destroy()
  418. end
  419. end
  420. for i,v in pairs(game.CoreGui:GetDescendants()) do
  421. if v:IsA("TextLabel") and v.Name == "PlayerName" and string.find(string.lower(v.Text), string.lower(player.Name)) then
  422. v.TextColor3 = Color3.new(1, 1, 0.952941)
  423. end
  424. end
  425. end
  426. end
  427.  
  428.  
  429. function trace(player)
  430. if player.Character ~= nil then
  431. if player.Character:FindFirstChild("Head") then
  432. if not player.Character.Head:FindFirstChild("TRACE") then
  433. local billgui = Instance.new('BillboardGui', player.Character.Head)
  434. local textlab = Instance.new('TextLabel', billgui)
  435.  
  436. billgui.Name = "TRACE"
  437. billgui.Adornee = player.Character.Head
  438. billgui.AlwaysOnTop = true
  439. billgui.ExtentsOffset = Vector3.new(0, 3, 0)
  440. billgui.Size = UDim2.new(0, 5, 0, 5)
  441.  
  442. textlab.Name = "Tracer"
  443. textlab.BackgroundColor3 = Color3.new(255, 255, 255)
  444. textlab.BackgroundTransparency = 1
  445. textlab.BorderSizePixel = 0
  446. textlab.Position = UDim2.new(0, 0, 0, -40)
  447. textlab.Size = UDim2.new(1, 0, 10, 0)
  448. textlab.Visible = true
  449. textlab.ZIndex = 10
  450. textlab.Font = "ArialBold"
  451. textlab.FontSize = "Size18"
  452. textlab.Text = player.Name
  453. textlab.TextColor = BrickColor.new("Really red")
  454. textlab.TextStrokeColor3 = Color3.fromRGB(0,0,0)
  455. textlab.TextStrokeTransparency = 0.6
  456. for i,v in pairs(game.CoreGui:GetDescendants()) do
  457. if v:IsA("TextLabel") and v.Name == "PlayerName" and string.find(string.lower(v.Text), string.lower(player.Name)) then
  458. v.TextColor3 = Color3.new(1,0,0)
  459. v:GetPropertyChangedSignal("TextColor3"):Connect(function()
  460. if v.TextColor3 ~= Color3.new(1,0,0) and player.Character.Head:FindFirstChild("TRACE") then
  461. v.TextColor3 = Color3.new(1,0,0)
  462. end
  463. end)
  464. end
  465. end
  466. if player.Character:FindFirstChild("Humanoid") then
  467. player.Character.Humanoid.Died:Connect(function()
  468. untrace(player)
  469. end)
  470. end
  471. end
  472. end
  473. end
  474. end
  475.  
  476. function goto(cframe)
  477. if game.Players.LocalPlayer.Character ~= nil and gotodebounce == false then
  478. gotodebounce = true
  479. if flying then
  480. togglefly()
  481. end
  482. if game.Players.LocalPlayer.Character:FindFirstChild("HumanoidRootPart") and game.Players.LocalPlayer.Character:FindFirstChild("Torso") then
  483. game.Players.LocalPlayer.Character.PrimaryPart = game.Players.LocalPlayer.Character.Torso
  484. local rootpart = game.Players.LocalPlayer.Character.HumanoidRootPart
  485. rootpart.Parent = nil
  486. game.Players.LocalPlayer.Character.Torso.CFrame = cframe
  487. wait()
  488. game.Players.LocalPlayer.Character.Torso.CFrame = game.Players.LocalPlayer.Character.Torso.CFrame * CFrame.new(0.1,0.1,0.1)
  489. wait()
  490. game.Players.LocalPlayer.Character.Torso.CFrame = game.Players.LocalPlayer.Character.Torso.CFrame * CFrame.new(-0.1,-0.1,-0.1)
  491. wait(0.4)
  492. rootpart.Parent = game.Players.LocalPlayer.Character
  493. end
  494. gotodebounce = false
  495. end
  496. end
  497.  
  498. function checkitems(item)
  499. for i,x in pairs(game.Workspace:GetChildren()) do
  500. if x.Name == "RandomSpawner" then
  501. for i,v in pairs(x:GetDescendants()) do
  502. if v:IsA("Sound") and v.Name == "Fire" and string.find(tostring(v.SoundId), tostring(328964620)) and item == "uzi" then
  503. return(v:FindFirstAncestor("Handle"))
  504. elseif v:IsA("MeshPart") and v.MeshId == "rbxassetid://511726060" and item == "cash" or v:IsA("MeshPart") and v.MeshId == "rbxassetid://511726060" and item == "money" then
  505. return(v)
  506. end
  507. end
  508. end
  509. end
  510. return nil
  511. end
  512.  
  513. function UpdateUziStats()
  514. if game.Players.LocalPlayer.Character ~= nil then
  515. local multiuzi = nil
  516. local uziamount = 0
  517. local cliptotal = 0
  518. local ammototal = 0
  519. if game.Players.LocalPlayer.Backpack:FindFirstChild("Super Uzi") then
  520. multiuzi = game.Players.LocalPlayer.Backpack:FindFirstChild("Super Uzi")
  521. elseif game.Players.LocalPlayer.Character:FindFirstChild("Super Uzi") then
  522. multiuzi = game.Players.LocalPlayer.Character:FindFirstChild("Super Uzi")
  523. end
  524. for i,v in pairs(game.Players.LocalPlayer.PlayerGui:GetChildren()) do
  525. if v.Name == "Uzi" and v:FindFirstChild("Clips") and v:FindFirstChild("Ammo") then
  526. uziamount = uziamount + 1
  527. cliptotal = cliptotal + v.Clips.Value
  528. ammototal = ammototal + v.Ammo.Value
  529. end
  530. end
  531. if game.Players.LocalPlayer.Backpack:FindFirstChild("Uzi") then
  532. uziamount = uziamount + 1
  533. cliptotal = cliptotal + game.Players.LocalPlayer.Backpack:FindFirstChild("Uzi").Clips.Value
  534. ammototal = ammototal + game.Players.LocalPlayer.Backpack:FindFirstChild("Uzi").Ammo.Value
  535. end
  536. if game.Players.LocalPlayer.Character:FindFirstChild("Uzi") then
  537. uziamount = uziamount + 1
  538. cliptotal = cliptotal + game.Players.LocalPlayer.Character:FindFirstChild("Uzi").Clips.Value
  539. ammototal = ammototal + game.Players.LocalPlayer.Character:FindFirstChild("Uzi").Ammo.Value
  540. end
  541. local totaldamage = 20 * uziamount
  542. local averageclips = cliptotal / uziamount
  543. local averageammo = ammototal / uziamount
  544. multiuzi.ToolTip = "Uzis: "..tostring(uziamount).." | Damage: "..tostring(totaldamage).." | AverageClips: "..tostring(averageclips).." | AverageAmmo: "..tostring(averageammo)
  545. end
  546. end
  547.  
  548. function SuperUzi()
  549. if not game.Players.LocalPlayer.Backpack:FindFirstChild("Super Uzi") and not game.Players.LocalPlayer.Character:FindFirstChild("Super Uzi") then
  550. superuzi = Instance.new("Tool")
  551. superuzi.RequiresHandle = false
  552. superuzi.Name = "Super Uzi"
  553. superuzi.ToolTip = "Click to use your collected uzis"
  554. superuzi.Parent = game.Players.LocalPlayer.Backpack
  555. superuzi.TextureId = "http://www.roblox.com/asset/?id=4294455642"
  556. superuzi.CanBeDropped = false
  557. superuzi.Equipped:Connect(function(mouse)
  558. UpdateUziStats()
  559. for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  560. if v.Name == "Uzi" then
  561. v.Parent = game.Players.LocalPlayer.PlayerGui
  562. end
  563. end
  564. local animation = Instance.new("Animation")
  565. animation.AnimationId = "rbxassetid://503285264"
  566. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(animation)
  567. track.Name = "GunHold"
  568. track:Play()
  569. end)
  570. superuzi.Unequipped:Connect(function()
  571. UpdateUziStats()
  572. local AnimationTracks = game.Players.LocalPlayer.Character.Humanoid:GetPlayingAnimationTracks()
  573. for i,v in pairs (AnimationTracks) do
  574. if v.Name == "GunHold" then
  575. v:Stop()
  576. end
  577. end
  578. mostclipsequip()
  579. end)
  580. else
  581. UpdateUziStats()
  582. end
  583. end
  584. loadstring(game:HttpGet(('https://pastebin.com/raw/9mAwN6rA'),true))() -- blacklist pastebin (keeps track of special users)
  585. loadstring(game:HttpGet(('https://pastebin.com/raw/pEq7P9y8'),true))() -- hitlist score keeper
  586.  
  587. function hitlistmark(plr)
  588. if plr.Character ~= nil then
  589. if plr.Character:FindFirstChild("Head") then
  590. local billgui = Instance.new('BillboardGui', plr.Character.Head)
  591. local textlab = Instance.new('TextLabel', billgui)
  592.  
  593. billgui.Name = "KILL"
  594. billgui.Adornee = epic
  595. billgui.AlwaysOnTop = true
  596. billgui.ExtentsOffset = Vector3.new(0, 3, 0)
  597. billgui.Size = UDim2.new(0, 5, 0, 5)
  598.  
  599. textlab.Name = 'Target'
  600. textlab.BackgroundColor3 = Color3.new(255, 255, 255)
  601. textlab.BackgroundTransparency = 1
  602. textlab.BorderSizePixel = 0
  603. textlab.Position = UDim2.new(0, 0, 0, -40)
  604. textlab.Size = UDim2.new(1, 0, 10, 0)
  605. textlab.Visible = true
  606. textlab.ZIndex = 10
  607. textlab.Font = 'ArialBold'
  608. textlab.FontSize = 'Size18'
  609. textlab.Text = hitlisttitles[math.random(1,#hitlisttitles)]
  610. textlab.TextColor = BrickColor.new('Bright red')
  611. textlab.TextStrokeColor3 = Color3.fromRGB(0,0,0)
  612. textlab.TextStrokeTransparency = 0.6
  613. end
  614. end
  615. end
  616.  
  617. function burgerheal()
  618. local parenttool = true
  619. local health = game.Players.LocalPlayer.Character.Humanoid.Health
  620. local maxhealth = game.Players.LocalPlayer.Character.Humanoid.MaxHealth
  621. local burgeramount = 0
  622. for i,v in pairs(game.Players.LocalPlayer.PlayerGui:GetChildren()) do
  623. if v.Name == "Burger" then
  624. burgeramount = burgeramount + 1
  625. end
  626. end
  627. local neededburgers = (maxhealth - health) / 24 -- 24 is how much health each burger heals
  628. if string.len(tostring(neededburgers)) >= 3 then
  629. if string.sub(tostring(neededburgers), 2,2) == "." then
  630. local ones = string.sub(tostring(neededburgers), 1, 1)
  631. local tenths = string.sub(tostring(neededburgers), 3, 3)
  632. if tonumber(tenths) >= 5 then
  633. neededburgers = tonumber(ones + 1)
  634. elseif tonumber(tenths) <= 4 then
  635. neededburgers = tonumber(ones)
  636. end
  637. end
  638. end
  639. eating = true
  640. local changenoslow = false
  641. if not noslow then
  642. noslow = true
  643. changenoslow = true
  644. end
  645. local equippedtools = {}
  646. local health = game.Players.LocalPlayer.Character.Humanoid.Health
  647. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  648. if v:IsA("Tool") then
  649. local redo = Instance.new("BoolValue")
  650. redo.Name = "redo"
  651. redo.Parent = v
  652. v.Parent = game.Players.LocalPlayer.Backpack
  653. end
  654. end
  655. local burgers = {}
  656. for i,v in pairs(game.Players.LocalPlayer.PlayerGui:GetChildren()) do
  657. if v.Name == "Burger" then
  658. table.insert(burgers,v)
  659. end
  660. end
  661. if neededburgers <= burgeramount and game.Players.LocalPlayer.Character.Humanoid.Health ~= 0 then
  662. for i = 1,neededburgers do
  663. burgers[1].Parent = game.Players.LocalPlayer.Backpack
  664. burgers[1].Parent = game.Players.LocalPlayer.Character
  665. burgers[1]:Activate()
  666. burgers[1].Parent = game.Players.LocalPlayer.Backpack
  667. burgers[1].Parent = game.Players.LocalPlayer.PlayerGui
  668. table.remove(burgers, 1)
  669. end
  670. elseif neededburgers > burgeramount then
  671. for i = 1,burgeramount do
  672. burgers[1].Parent = game.Players.LocalPlayer.Backpack
  673. burgers[1].Parent = game.Players.LocalPlayer.Character
  674. burgers[1]:Activate()
  675. burgers[1].Parent = game.Players.LocalPlayer.Backpack
  676. burgers[1].Parent = game.Players.LocalPlayer.PlayerGui
  677. table.remove(burgers, 1)
  678. end
  679. end
  680. eating = false
  681. local burgeramount2 = 0
  682. for i,v in pairs(game.Players.LocalPlayer.PlayerGui:GetChildren()) do
  683. if v.Name == "Burger" then
  684. burgeramount2 = burgeramount2 + 1
  685. end
  686. end
  687. for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  688. if v:FindFirstChild("redo") then
  689. v:FindFirstChild("redo"):Destroy()
  690. wait(0.3)
  691. for i = 1,3 do
  692. v.Parent = game.Players.LocalPlayer.Character
  693. end
  694. v.AncestryChanged:Connect(function(v, parent)
  695. if parent ~= game.Players.LocalPlayer.Character and parenttool == true then
  696. v.Parent = game.Players.LocalPlayer.Character
  697. end
  698. end)
  699. end
  700. end
  701. game.StarterGui:SetCore("SendNotification", {
  702. Title = tostring(burgeramount2).." BURGERS LEFT!";
  703. Text = tostring(burgeramount2 * 24).." stored health | OwO";
  704. Icon = "rbxassetid://2541869220";
  705. Duration = 5;
  706. })
  707. repeat wait() until game.Players.LocalPlayer.Character.Humanoid.Health >= health + 10
  708. local parenttool = false
  709. wait(1.3)
  710. if changenoslow then
  711. noslow = false
  712. end
  713. end
  714.  
  715.  
  716. game.Players.PlayerAdded:connect(function(plr)
  717. loadstring(game:HttpGet(('https://pastebin.com/raw/9mAwN6rA'),true))()
  718. wait(1)
  719. for i = 1,#hitlist do
  720. if string.lower(plr.Name) == tostring(string.lower(hitlist[i])) then
  721. plr.CharacterAppearanceLoaded:Connect(function(char)
  722. if game.Players:FindFirstChild(char.Name) then
  723. hitlistmark(game.Players:FindFirstChild(char.Name))
  724. end
  725. end)
  726. end
  727. end
  728. if plr:IsInGroup(5060386) and plr.Name ~= "Fohskii" then
  729. hitlistmark(plr)
  730. plr.CharacterAppearanceLoaded:Connect(function(char)
  731. if game.Players:FindFirstChild(char.Name) then
  732. hitlistmark(game.Players:FindFirstChild(char.Name))
  733. end
  734. end)
  735. end
  736. end)
  737.  
  738.  
  739. for i,v in pairs(game.Workspace:GetChildren()) do
  740. if v.Name == "RandomSpawner" then
  741. esp(v)
  742. end
  743. end
  744.  
  745. for i,v in pairs(game.Workspace:GetChildren()) do
  746. if v.Name == "RandomSpawner" then
  747. if v:FindFirstChild("Model") then
  748. v.Model.ChildAdded:Connect(function(child)
  749. esp(child)
  750. end)
  751. end
  752. v.ChildAdded:Connect(function(child)
  753. esp(child)
  754. end)
  755. end
  756. end
  757.  
  758. game.Workspace.ChildAdded:Connect(function(child)
  759. if child.Name == "RandomSpawner" then
  760. repeat wait() until child.Model
  761. esp(child)
  762. end
  763. end)
  764.  
  765. game.Players.LocalPlayer.CharacterAdded:Connect(function(char)
  766. game.Players.LocalPlayer.Backpack.ChildAdded:Connect(function(v)
  767. if v:IsA("Tool") and v.Name == "Katana" then
  768. v.Grip = CFrame.new(0,-1,-0.16) * CFrame.Angles(math.rad(180),math.rad(0),math.rad(180))
  769. end
  770. end)
  771. end)
  772.  
  773. game.Players.LocalPlayer.Backpack.ChildAdded:Connect(function(v)
  774. if v:IsA("Tool") and v.Name == "Katana" then
  775. v.Grip = CFrame.new(0,-1,-0.16) * CFrame.Angles(math.rad(180),math.rad(0),math.rad(180))
  776. end
  777. end)
  778.  
  779. local resetBindable = Instance.new("BindableEvent")
  780. resetBindable.Event:connect(function()
  781. game.Players.LocalPlayer.Character:BreakJoints()
  782. end)
  783. game:GetService("StarterGui"):SetCore("ResetButtonCallback", resetBindable)
  784. game.Players.LocalPlayer.CharacterAdded:Connect(function()
  785. wait(1)
  786. game:GetService("StarterGui"):SetCore("ResetButtonCallback", resetBindable)
  787. end)
  788.  
  789. function GetNearestPlayerToMouse()
  790. local PLAYERS = {}
  791. local PLAYER_HOLD = {}
  792. local DISTANCES = {}
  793. for i, v in pairs(game.Players:GetPlayers()) do
  794. if v ~= game.Players.LocalPlayer then
  795. table.insert(PLAYERS, v)
  796. end
  797. end
  798. for i, v in pairs(PLAYERS) do
  799. if v.Character ~= nil then
  800. local AIM = v.Character:FindFirstChild("Head")
  801. if AIM ~= nil then
  802. local DISTANCE = (v.Character:FindFirstChild("Head").Position - game.Workspace.CurrentCamera.CFrame.p).magnitude
  803. local RAY = Ray.new(game.Workspace.CurrentCamera.CFrame.p, (mouse.Hit.p - game.Workspace.CurrentCamera.CFrame.p).unit * DISTANCE)
  804. local HIT,POS = game.Workspace:FindPartOnRay(RAY, game.Workspace)
  805. local DIFF = math.floor((POS - AIM.Position).magnitude)
  806. PLAYER_HOLD[v.Name .. i] = {}
  807. PLAYER_HOLD[v.Name .. i].dist= DISTANCE
  808. PLAYER_HOLD[v.Name .. i].plr = v
  809. PLAYER_HOLD[v.Name .. i].diff = DIFF
  810. table.insert(DISTANCES, DIFF)
  811. end
  812. end
  813. end
  814.  
  815. if unpack(DISTANCES) == nil then
  816. return nil
  817. end
  818.  
  819. local L_DISTANCE = math.floor(math.min(unpack(DISTANCES)))
  820. if L_DISTANCE > 20 then
  821. return nil
  822. end
  823.  
  824. for i, v in pairs(PLAYER_HOLD) do
  825. if v.diff == L_DISTANCE then
  826. return v.plr
  827. end
  828. end
  829. return nil
  830. end
  831.  
  832. function findplayer(namey)
  833. local name = string.lower(namey)
  834. local player = nil
  835.  
  836. names = game.Players:GetChildren()
  837. for i,v in pairs(names) do
  838. strlower = string.lower(v.Name)
  839. sub = string.sub(strlower,1,#name)
  840. if name == sub and v ~= game.Players.LocalPlayer then
  841. player = v
  842. end
  843. end
  844. if player then
  845. return player
  846. else
  847. return nil
  848. end
  849. end
  850.  
  851. function getinputname(lower)
  852. local inputname = ""
  853. if string.find(lower, "/e ") then
  854. local commandstart = string.sub(lower, 4, -1)
  855. local space = string.find(commandstart, " ")
  856. inputname = string.sub(commandstart, space + 1, -1)
  857. else
  858. local space = string.find(lower, " ")
  859. inputname = string.sub(lower, space + 1, -1)
  860. end
  861. return inputname
  862. end
  863.  
  864. function sendnotif(title, body)
  865. game.StarterGui:SetCore("SendNotification", {
  866. Title = title;
  867. Text = body;
  868. Icon = "rbxassetid://2541869220";
  869. Duration = 3;
  870. })
  871. end
  872.  
  873. game.Players.LocalPlayer.Chatted:Connect(function(msg)
  874. lower = string.lower(msg)
  875. if string.find(lower, ":find ") or string.find(lower, ":trace ") or string.find(lower, "/e find ") or string.find(lower, "/e trace ") then
  876. local inputname = getinputname(lower)
  877. if inputname ~= "" then
  878. local player = findplayer(inputname)
  879. if player ~= nil then
  880. trace(player)
  881. end
  882. end
  883. end
  884. if string.find(lower, ":unfind ") or string.find(lower, ":untrace ") or string.find(lower, "/e unfind ") or string.find(lower, "/e untrace ") then
  885. local inputname = getinputname(lower)
  886. if inputname ~= "" then
  887. local player = findplayer(inputname)
  888. if player ~= nil then
  889. untrace(player)
  890. end
  891. end
  892. end
  893. if lower == ":noslow" or lower == "/e noslow" or lower == "/e :noslow" then
  894. noslow = true
  895. sendnotif("notification", "No-Slow is now ON!")
  896. end
  897. if lower == ":unnoslow" or lower == "/e unnoslow" or lower == "/e :unnoslow" then
  898. noslow = false
  899. sendnotif("notification", "No-Slow is now OFF!")
  900. end
  901. if lower == ":noknock" or lower == "/e noknock" or lower == "/e :noknock" then
  902. antiknockdown = true
  903. sendnotif("notification", "Anti-Knockdown is now ON!")
  904. end
  905. if lower == ":unnoknock" or lower == "/e unnoknock" or lower == "/e :unnoknock" then
  906. antiknockdown = false
  907. sendnotif("notification", "Anti-Knockdown is now OFF!")
  908. end
  909. if lower == ":triggerbot" or lower == "/e triggerbot" or lower == "/e :triggerbot" or lower == ":trigger" or lower == "/e trigger" or lower == "/e :trigger" then
  910. triggerbot = true
  911. sendnotif("notification", "TriggerBot is now ON!")
  912. end
  913. if lower == ":untriggerbot" or lower == "/e untriggerbot" or lower == "/e :untriggerbot" then
  914. triggerbot = false
  915. sendnotif("notification", "TriggerBot is now OFF!")
  916. end
  917. if string.find(lower, ":flyspeed ") or string.find(lower, "/e flyspeed ") or string.find(lower, "/e :flyspeed ") then
  918. local number = getinputname(lower)
  919. if number ~= "" and not string.find(number, "%a") then
  920. flyspeed = tonumber(number)
  921. end
  922. end
  923. if lower == ":autoheal" or lower == "/e autoheal" or lower == "/e :autoheal" then
  924. autoheal = true
  925. sendnotif("notification", "Auto-Heal is now ON!")
  926. end
  927. if lower == ":unautoheal" or lower == "/e unautoheal" or lower == "/e :unautoheal" then
  928. autoheal = false
  929. sendnotif("notification", "Auto-Heal is now OFF!")
  930. end
  931. if string.find(lower, ":get ") and true == false or string.find(lower, "/e get ") and true == false or string.find(lower, "/e :get ") and true == false then
  932. local item = getinputname(lower)
  933. if item ~= "" and not string.find(item, "%d") then
  934. if item == "uzi" then
  935. checkuzi = checkitems(item)
  936. if checkuzi ~= nil then
  937. goto(checkuzi.CFrame)
  938. else
  939. goto(game.Workspace["Uzi | $150"].Head.CFrame)
  940. end
  941. elseif item == "burger" then
  942. goto(game.Workspace["Burger | $15"].Head.CFrame)
  943. elseif item == "club" or item == "golf" then
  944. goto(game.Workspace["Golf Club | $70"].Head.CFrame)
  945. elseif item == "drink" then
  946. goto(game.Workspace["Drink | $15"].Head.CFrame)
  947. elseif item == "glock" or item == "pistol" then
  948. goto(game.Workspace["Glock | $200"].Head.CFrame)
  949. elseif item == "ammo" or item == "reload" then
  950. goto(game.Workspace["Buy Ammo | $25"].Head.CFrame)
  951. elseif item == "bottle" then
  952. goto(game.Workspace["Bottle | $50"].Head.CFrame)
  953. elseif item == "machete" then
  954. goto(game.Workspace["Machete | $70"].Head.CFrame)
  955. elseif item == "sawed" or item == "sawn" or item == "sawed off" or item == "sawn off" then
  956. goto(game.Workspace["Sawed Off | $150"].Head.CFrame)
  957. elseif item == "cash" or item == "money" then
  958. checkcash = checkitems(item)
  959. if checkcash ~= nil then
  960. goto(checkcash.CFrame)
  961. else
  962. sendnotif("notification", "No cash found!")
  963. end
  964. end
  965. end
  966. end
  967. end)
  968.  
  969. game:GetService("UserInputService").InputBegan:Connect(function(inputObject, gameProcessedEvent)
  970. if inputObject.UserInputType == Enum.UserInputType.MouseButton2 and not gameProcessedEvent then
  971. rightclickdown = true
  972. local donemouse = false
  973. if mouse.Target ~= nil then
  974. if mouse.Target:FindFirstAncestor("Door") then
  975. local door = mouse.Target:FindFirstAncestor("Door")
  976. if door:FindFirstChild("Lock") and game.Players.LocalPlayer:DistanceFromCharacter(mouse.Target.CFrame.p) < 10 then
  977. if door:FindFirstChild("Lock"):FindFirstChild("ClickDetector") then
  978. if door:FindFirstChild("Lock"):FindFirstChild("ClickDetector"):FindFirstChild("RemoteEvent") then
  979. door:FindFirstChild("Lock"):FindFirstChild("ClickDetector"):FindFirstChild("RemoteEvent"):FireServer()
  980. donemouse = true
  981. end
  982. end
  983. end
  984. end
  985. end
  986. if game.Players.LocalPlayer.Character ~= nil and (game.Workspace.CurrentCamera.Focus.p - game.Workspace.CurrentCamera.CoordinateFrame.p).Magnitude <= 1 and donemouse == false and not game.Players.LocalPlayer.Character:FindFirstChild("Super Uzi") then
  987. if game.Players.LocalPlayer.Character:FindFirstChildWhichIsA("Tool") then
  988. if game.Players.LocalPlayer.Character:FindFirstChildWhichIsA("Tool"):FindFirstChild("Fire") then
  989. if game.Players.LocalPlayer.Character:FindFirstChildWhichIsA("Tool").Name ~= "Uzi" then
  990. local opp = GetNearestPlayerToMouse()
  991. if opp ~= nil then
  992. game.Players.LocalPlayer.Character:FindFirstChildWhichIsA("Tool"):FindFirstChild("Fire"):FireServer(opp.Character.Head.CFrame + opp.Character.HumanoidRootPart.Velocity/5)
  993. end
  994. elseif game.Players.LocalPlayer.Character:FindFirstChildWhichIsA("Tool").Name == "Uzi" and canfireuzi == true then
  995. canfireuzi = false
  996. shootuzi = true
  997. game.Players.LocalPlayer.Character:FindFirstChildWhichIsA("Tool").Unequipped:Connect(function()
  998. shootuzi = false
  999. end)
  1000. canfireuzi = true
  1001. end
  1002. end
  1003. end
  1004. end
  1005. if game.Players.LocalPlayer.Character:FindFirstChild("Super Uzi") and game.Players.LocalPlayer.Character ~= nil and (game.Workspace.CurrentCamera.Focus.p - game.Workspace.CurrentCamera.CoordinateFrame.p).Magnitude <= 1 and donemouse == false then
  1006. if uzidebounce == false then
  1007. uzidebounce = true
  1008. for i,v in pairs(game.Players.LocalPlayer.PlayerGui:GetChildren()) do
  1009. if v:IsA("Tool") and v.Name == "Uzi" and v:FindFirstChild("Fire") then
  1010. local opp = GetNearestPlayerToMouse()
  1011. if opp ~= nil then
  1012. -- v.Grip = CFrame.new(1.5,0.5,-6)
  1013. v.Parent = game.Players.LocalPlayer.Backpack
  1014. v.Parent = game.Players.LocalPlayer.Character
  1015. for i = 1,2 do
  1016. v.Fire:FireServer(opp.Character.Head.CFrame + opp.Character.HumanoidRootPart.Velocity/5)
  1017. end
  1018. v.Parent = game.Players.LocalPlayer.Backpack
  1019. v.Parent = game.Players.LocalPlayer.PlayerGui
  1020. if uzidelay == true then
  1021. wait()
  1022. end
  1023. end
  1024. end
  1025. end
  1026. uzidebounce = false
  1027. end
  1028. end
  1029. end
  1030. if inputObject.UserInputType == Enum.UserInputType.MouseButton1 and not gameProcessedEvent then
  1031. leftclickdown = true
  1032. if game.Players.LocalPlayer.Character:FindFirstChild("Super Uzi") then
  1033. if uzidebounce == false then
  1034. uzidebounce = true
  1035. for i,v in pairs(game.Players.LocalPlayer.PlayerGui:GetChildren()) do
  1036. if v:IsA("Tool") and v.Name == "Uzi" and v:FindFirstChild("Fire") then
  1037. -- v.GripPos = Vector3.new(1.5,0.5,-6)
  1038. v.Parent = game.Players.LocalPlayer.Backpack
  1039. v.Parent = game.Players.LocalPlayer.Character
  1040. for i = 1,2 do
  1041. v.Fire:FireServer(mouse.Hit)
  1042. end
  1043. v.Parent = game.Players.LocalPlayer.Backpack
  1044. v.Parent = game.Players.LocalPlayer.PlayerGui
  1045. if uzidelay == true then
  1046. wait(0.05)
  1047. end
  1048. end
  1049. end
  1050. uzidebounce = false
  1051. end
  1052. end
  1053. end
  1054. if inputObject.KeyCode == Enum.KeyCode.Minus and gameProcessedEvent == false then
  1055. RunSpeed = RunSpeed - 0.1
  1056. game.StarterGui:SetCore("SendNotification", {
  1057. Title = "notification";
  1058. Text = "Your Super-Run speed is now "..tostring(RunSpeed).."!";
  1059. Icon = "rbxassetid://2541869220";
  1060. Duration = 3;
  1061. })
  1062. end
  1063. if inputObject.KeyCode == Enum.KeyCode.Equals and gameProcessedEvent == false then
  1064. RunSpeed = RunSpeed + 0.1
  1065. game.StarterGui:SetCore("SendNotification", {
  1066. Title = "notification";
  1067. Text = "Your Super-Run speed is now "..tostring(RunSpeed).."!";
  1068. Icon = "rbxassetid://2541869220";
  1069. Duration = 3;
  1070. })
  1071. end
  1072. if inputObject.KeyCode == Enum.KeyCode.K and gameProcessedEvent == false then
  1073. SuperRun = not SuperRun
  1074. local currenttext = ""
  1075. if SuperRun == true then
  1076. currenttext = "SuperRun is now turned ON!"
  1077. else
  1078. currenttext = "SuperRun is now turned OFF!"
  1079. end
  1080. game.StarterGui:SetCore("SendNotification", {
  1081. Title = "notification";
  1082. Text = currenttext;
  1083. Icon = "rbxassetid://2541869220";
  1084. Duration = 3;
  1085. })
  1086. end
  1087. if inputObject.KeyCode == Enum.KeyCode.LeftBracket and gameProcessedEvent == false then
  1088. JumpHeight = JumpHeight - 0.1
  1089. game.StarterGui:SetCore("SendNotification", {
  1090. Title = "notification";
  1091. Text = "Your Super-Jump height is now "..tostring(JumpHeight).."!";
  1092. Icon = "rbxassetid://2541869220";
  1093. Duration = 3;
  1094. })
  1095. end
  1096. if inputObject.KeyCode == Enum.KeyCode.RightBracket and gameProcessedEvent == false then
  1097. JumpHeight = JumpHeight + 0.1
  1098. game.StarterGui:SetCore("SendNotification", {
  1099. Title = "notification";
  1100. Text = "Your Super-Jump height is now "..tostring(JumpHeight).."!";
  1101. Icon = "rbxassetid://2541869220";
  1102. Duration = 3;
  1103. })
  1104. end
  1105. if inputObject.KeyCode == Enum.KeyCode.L and gameProcessedEvent == false then
  1106. SuperJump = not SuperJump
  1107. local currenttext = ""
  1108. if SuperJump == true then
  1109. currenttext = "SuperJump is now turned ON!"
  1110. else
  1111. currenttext = "SuperJump is now turned OFF!"
  1112. end
  1113. game.StarterGui:SetCore("SendNotification", {
  1114. Title = "notification";
  1115. Text = currenttext;
  1116. Icon = "rbxassetid://2541869220";
  1117. Duration = 3;
  1118. })
  1119. end
  1120. if inputObject.KeyCode == Enum.KeyCode.Q and gameProcessedEvent == false and game.Players.LocalPlayer.Character:FindFirstChild("Super Uzi") then
  1121. uzidelay = not uzidelay
  1122. local currenttext = ""
  1123. if uzidelay == true then
  1124. currenttext = "UZI DELAY is now turned ON!"
  1125. else
  1126. currenttext = "UZI DELAY is now turned OFF!"
  1127. end
  1128. game.StarterGui:SetCore("SendNotification", {
  1129. Title = "notification";
  1130. Text = currenttext;
  1131. Icon = "rbxassetid://2541869220";
  1132. Duration = 3;
  1133. })
  1134. end
  1135. if inputObject.KeyCode == Enum.KeyCode.F and gameProcessedEvent == false then
  1136. if firstfly then
  1137. sendnotif("CHANGING FLY SPEED", "Use the :flyspeed NUMBER command to set your fly speed!")
  1138. firstfly = false
  1139. end
  1140. togglefly()
  1141. end
  1142. if inputObject.KeyCode == Enum.KeyCode.X and gameProcessedEvent == false then
  1143. noclip = not noclip
  1144. local currenttext = ""
  1145. if noclip == true then
  1146. currenttext = "NoClip is now turned ON!"
  1147. else
  1148. currenttext = "NoClip is now turned OFF!"
  1149. end
  1150. game.StarterGui:SetCore("SendNotification", {
  1151. Title = "notification";
  1152. Text = currenttext;
  1153. Icon = "rbxassetid://2541869220";
  1154. Duration = 3;
  1155. })
  1156. end
  1157. if inputObject.KeyCode == Enum.KeyCode.C and gameProcessedEvent == false then
  1158. burgerheal()
  1159. end
  1160. if inputObject.KeyCode == Enum.KeyCode.LeftShift and gameProcessedEvent == false and SuperRun == true then
  1161. ShiftHeld = true
  1162. end
  1163. if inputObject.KeyCode == Enum.KeyCode.W and gameProcessedEvent == false and SuperRun == true then
  1164. WHeld = true
  1165. end
  1166. if inputObject.KeyCode == Enum.KeyCode.S and gameProcessedEvent == false and SuperRun == true then
  1167. SHeld = true
  1168. end
  1169. if inputObject.KeyCode == Enum.KeyCode.A and gameProcessedEvent == false and SuperRun == true then
  1170. AHeld = true
  1171. end
  1172. if inputObject.KeyCode == Enum.KeyCode.D and gameProcessedEvent == false and SuperRun == true then
  1173. DHeld = true
  1174. end
  1175. if inputObject.KeyCode == Enum.KeyCode.Space and gameProcessedEvent == false and SuperJump == true then
  1176. if game.Players.LocalPlayer.Character ~= nil then
  1177. if game.Players.LocalPlayer.Character:FindFirstChild("Humanoid") then
  1178. game.Players.LocalPlayer.Character:FindFirstChild("Humanoid").Sit = false
  1179. end
  1180. end
  1181. SpaceHeld = true
  1182. end
  1183. end)
  1184. game:GetService("UserInputService").InputEnded:Connect(function(inputObject, gameProcessedEvent)
  1185. if inputObject.UserInputType == Enum.UserInputType.MouseButton2 and not gameProcessedEvent then
  1186. rightclickdown = false
  1187. shootuzi = false
  1188. end
  1189. if inputObject.UserInputType == Enum.UserInputType.MouseButton1 and not gameProcessedEvent then
  1190. leftclickdown = false
  1191. end
  1192. if inputObject.KeyCode == Enum.KeyCode.LeftShift then
  1193. ShiftHeld = false
  1194. end
  1195. if inputObject.KeyCode == Enum.KeyCode.W and not gameProcessedEvent then
  1196. WHeld = false
  1197. end
  1198. if inputObject.KeyCode == Enum.KeyCode.S and not gameProcessedEvent then
  1199. SHeld = false
  1200. end
  1201. if inputObject.KeyCode == Enum.KeyCode.A and not gameProcessedEvent then
  1202. AHeld = false
  1203. end
  1204. if inputObject.KeyCode == Enum.KeyCode.D and not gameProcessedEvent then
  1205. DHeld = false
  1206. end
  1207. if inputObject.KeyCode == Enum.KeyCode.Space and not gameProcessedEvent then
  1208. SpaceHeld = false
  1209. end
  1210. end)
  1211.  
  1212.  
  1213.  
  1214.  
  1215. game.Players.LocalPlayer.Backpack.ChildAdded:Connect(function(child)
  1216. local uziamount = 0
  1217. for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  1218. if v.Name == "Uzi" then
  1219. uziamount = uziamount + 1
  1220. end
  1221. end
  1222. if child:IsA("Tool") and child.Name == "Uzi" and uziamount >= 2 then
  1223. wait()
  1224. child.Parent = game.Players.LocalPlayer.PlayerGui
  1225. if child:FindFirstChild("Clips") and child:FindFirstChild("Ammo") then
  1226. local mark = Instance.new("BoolValue")
  1227. mark.Name = "Monitoring"
  1228. mark.Parent = child
  1229. child.Clips.Changed:Connect(function()
  1230. UpdateUziStats()
  1231. end)
  1232. child.Ammo.Changed:Connect(function()
  1233. UpdateUziStats()
  1234. end)
  1235. end
  1236. SuperUzi()
  1237. end
  1238. end)
  1239.  
  1240. game.Players.LocalPlayer.Backpack.ChildAdded:Connect(function(child)
  1241. if child:IsA("Tool") and child.Name == "Burger" and eating == false then
  1242. if not game.Players.LocalPlayer.PlayerGui:FindFirstChild("Burger") then
  1243. game.StarterGui:SetCore("SendNotification", {
  1244. Title = "C TO USE BURGERS!";
  1245. Text = "Press C to fully heal with your stored burgers!";
  1246. Icon = "rbxassetid://2541869220";
  1247. Duration = 5;
  1248. })
  1249. end
  1250. wait()
  1251. child.Parent = game.Players.LocalPlayer.PlayerGui
  1252. local burgeramount = 0
  1253. for i,v in pairs(game.Players.LocalPlayer.PlayerGui:GetChildren()) do
  1254. if v.Name == "Burger" then
  1255. burgeramount = burgeramount + 1
  1256. end
  1257. end
  1258. if not string.find(tostring(burgeramount / 5), "%.") then
  1259. game.StarterGui:SetCore("SendNotification", {
  1260. Title = tostring(burgeramount).." BURGERS LEFT!";
  1261. Text = tostring(burgeramount * 24).." stored health | OwO";
  1262. Icon = "rbxassetid://2541869220";
  1263. Duration = 5;
  1264. })
  1265. end
  1266. end
  1267. end)
  1268.  
  1269. game.Players.LocalPlayer.CharacterAdded:Connect(function(char)
  1270. repeat wait() until game.Players.LocalPlayer.Character ~= nil
  1271. repeat wait() until game.Players.LocalPlayer.Character:FindFirstChild("Humanoid")
  1272. repeat wait() until game.Players.LocalPlayer:FindFirstChild("Backpack")
  1273. if game.Players.LocalPlayer.Character ~= nil then
  1274. if game.Players.LocalPlayer.Character:FindFirstChild("Humanoid") then
  1275. game.Players.LocalPlayer.Character.Humanoid.Died:Connect(function()
  1276. if flying then
  1277. togglefly()
  1278. end
  1279. end)
  1280. char.Humanoid.HealthChanged:Connect(function(health)
  1281. if health <= game.Players.LocalPlayer.Character.Humanoid.MaxHealth - 24 and autoheal == true then
  1282. burgerheal()
  1283. end
  1284. end)
  1285. char.Humanoid.AnimationPlayed:Connect(function(track)
  1286. if string.find(track.Animation.AnimationId, "464531742") then
  1287. track:Stop()
  1288. end
  1289. end)
  1290. game.Players.LocalPlayer.Character.Humanoid.ChildAdded:Connect(function(child)
  1291. if child:IsA("ObjectValue") then
  1292. if triggerbot then
  1293. autoattack(game.Players:FindFirstChild(child.Value.Name))
  1294. local state = game.Players.LocalPlayer.Character.Humanoid:GetState()
  1295. if state == Enum.HumanoidStateType.FallingDown or new == Enum.HumanoidStateType.PlatformStanding then
  1296. game.Players.LocalPlayer.Character.Humanoid.PlatformStand = false
  1297. game.Players.LocalPlayer.Character.Humanoid.Sit = false
  1298. game.Players.LocalPlayer.Character.Humanoid:ChangeState(Enum.HumanoidStateType.GettingUp)
  1299. game.Players.LocalPlayer.Character.Humanoid:ChangeState(Enum.HumanoidStateType.RunningNoPhysics)
  1300. end
  1301. end
  1302. markplayer(game.Players:FindFirstChild(child.Value.Name))
  1303. end
  1304. end)
  1305. end
  1306. end
  1307. char.Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  1308. if noslow then
  1309. if char.Humanoid.WalkSpeed == 0 then
  1310. char.Humanoid.WalkSpeed = 16
  1311. end
  1312. end
  1313. end)
  1314. char.Humanoid.StateChanged:Connect(function(old, new)
  1315. if new == Enum.HumanoidStateType.FallingDown or new == Enum.HumanoidStateType.PlatformStanding and antiknockdown == true then
  1316. char.Humanoid.PlatformStand = false
  1317. char.Humanoid.Sit = false
  1318. char.Humanoid:ChangeState(Enum.HumanoidStateType.GettingUp)
  1319. char.Humanoid:ChangeState(Enum.HumanoidStateType.RunningNoPhysics)
  1320. end
  1321. end)
  1322. game.Players.LocalPlayer.Backpack.ChildAdded:Connect(function(child)
  1323. local uziamount = 0
  1324. for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  1325. if v.Name == "Uzi" then
  1326. uziamount = uziamount + 1
  1327. end
  1328. end
  1329. if child:IsA("Tool") and child.Name == "Uzi" and uziamount >= 2 then
  1330. wait()
  1331. child.Parent = game.Players.LocalPlayer.PlayerGui
  1332. SuperUzi()
  1333. if child:FindFirstChild("Clips") and child:FindFirstChild("Ammo") then
  1334. local mark = Instance.new("BoolValue")
  1335. mark.Name = "Monitoring"
  1336. mark.Parent = child
  1337. child.Clips.Changed:Connect(function()
  1338. UpdateUziStats()
  1339. end)
  1340. child.Ammo.Changed:Connect(function()
  1341. UpdateUziStats()
  1342. end)
  1343. end
  1344. end
  1345. end)
  1346. game.Players.LocalPlayer.Character.ChildAdded:Connect(function(child)
  1347. if child:IsA("Tool") and not child:FindFirstChild("done") then
  1348. local madechanges = false
  1349. for i,v in pairs(child:GetDescendants()) do
  1350. if v:IsA("BasePart") then
  1351. v.CanCollide = false
  1352. madechanges = true
  1353. end
  1354. end
  1355. if madechanges == true then
  1356. local done = Instance.new("BoolValue")
  1357. done.Name = "done"
  1358. done.Parent = child
  1359. end
  1360. end
  1361. end)
  1362. game.Players.LocalPlayer.Backpack.ChildAdded:Connect(function(child)
  1363. if child:IsA("Tool") and child.Name == "Burger" and eating == false then
  1364. if not game.Players.LocalPlayer.PlayerGui:FindFirstChild("Burger") then
  1365. game.StarterGui:SetCore("SendNotification", {
  1366. Title = "C TO USE BURGERS!!";
  1367. Text = "Press C to fully heal with your stored burgers!";
  1368. Icon = "rbxassetid://2541869220";
  1369. Duration = 5;
  1370. })
  1371. end
  1372. wait()
  1373. child.Parent = game.Players.LocalPlayer.PlayerGui
  1374. local burgeramount = 0
  1375. for i,v in pairs(game.Players.LocalPlayer.PlayerGui:GetChildren()) do
  1376. if v.Name == "Burger" then
  1377. burgeramount = burgeramount + 1
  1378. end
  1379. end
  1380. if not string.find(tostring(burgeramount / 5), "%.") then
  1381. game.StarterGui:SetCore("SendNotification", {
  1382. Title = tostring(burgeramount).." BURGERS LEFT!";
  1383. Text = tostring(burgeramount * 24).." stored health | OwO";
  1384. Icon = "rbxassetid://2541869220";
  1385. Duration = 5;
  1386. })
  1387. end
  1388. end
  1389. end)
  1390. repeat wait() until game.Players.LocalPlayer.Character:FindFirstChild("Right Leg")
  1391. game.Players.LocalPlayer.Character["Right Leg"].Touched:Connect(function(part)
  1392. if string.find(string.lower(part.Parent.Name), "buy ammo") and reloaddebounce == false then
  1393. reloaddebounce = true
  1394. if game.Players.LocalPlayer.Character:FindFirstChild("Super Uzi") then
  1395. local leastclips = math.huge
  1396. local chosenuzi = nil
  1397. if game.Players.LocalPlayer.PlayerGui:FindFirstChild("Uzi") then
  1398. for i,v in pairs(game.Players.LocalPlayer.PlayerGui:GetChildren()) do
  1399. if v:IsA("Tool") and v.Name == "Uzi" and v:FindFirstChild("Clips") then
  1400. if v:FindFirstChild("Clips").Value < leastclips then
  1401. leastclips = v:FindFirstChild("Clips").Value
  1402. chosenuzi = v
  1403. end
  1404. end
  1405. end
  1406. end
  1407. chosenuzi.Parent = game.Players.LocalPlayer.Backpack
  1408. chosenuzi.Parent = game.Players.LocalPlayer.Character
  1409. repeat wait() until part.BrickColor == BrickColor.new("Bright red")
  1410. chosenuzi.Parent = game.Players.LocalPlayer.PlayerGui
  1411. end
  1412. reloaddebounce = false
  1413. end
  1414. end)
  1415. end)
  1416.  
  1417. game.Players.LocalPlayer.Character["Right Leg"].Touched:Connect(function(part)
  1418. if string.find(string.lower(part.Parent.Name), "buy ammo") and reloaddebounce == false then
  1419. reloaddebounce = true
  1420. if game.Players.LocalPlayer.Character:FindFirstChild("Super Uzi") then
  1421. local leastclips = math.huge
  1422. local chosenuzi = nil
  1423. if game.Players.LocalPlayer.PlayerGui:FindFirstChild("Uzi") then
  1424. for i,v in pairs(game.Players.LocalPlayer.PlayerGui:GetChildren()) do
  1425. if v:IsA("Tool") and v.Name == "Uzi" and v:FindFirstChild("Clips") then
  1426. if v:FindFirstChild("Clips").Value < leastclips then
  1427. leastclips = v:FindFirstChild("Clips").Value
  1428. chosenuzi = v
  1429. end
  1430. end
  1431. end
  1432. end
  1433. chosenuzi.Parent = game.Players.LocalPlayer.Backpack
  1434. chosenuzi.Parent = game.Players.LocalPlayer.Character
  1435. repeat wait() until part.BrickColor == BrickColor.new("Bright red")
  1436. chosenuzi.Parent = game.Players.LocalPlayer.PlayerGui
  1437. end
  1438. reloaddebounce = false
  1439. end
  1440. end)
  1441.  
  1442.  
  1443.  
  1444. game.CoreGui.DescendantAdded:Connect(function(dec)
  1445. if dec.Name == "PopupFrame" then
  1446. local children = dec:GetChildren()
  1447. local shouldtrace = false
  1448. repeat wait() until dec:FindFirstChild("InspectButton")
  1449. container = dec:FindFirstAncestor("PlayerListContainer")
  1450.  
  1451. local epic = tostring(children[#children].Position.Height)
  1452. local space = string.find(epic, " ")
  1453. local offset = string.sub(epic, space + 1, -1)
  1454. local newoffset = tonumber(offset) + 26
  1455. local clone = children[#children]:Clone()
  1456. clone.Position = UDim2.new(0,0,0,newoffset)
  1457. clone.Parent = children[#children].Parent
  1458. clone.Name = "FindButton"
  1459. clone.Text = "TOGGLE TRACE"
  1460. clone.MouseButton1Click:Connect(function()
  1461. container = clone:FindFirstAncestor("PlayerListContainer")
  1462. for i,v in pairs(container.ScrollList:GetDescendants()) do
  1463. if v:IsA("TextButton") and tostring(v.BackgroundColor3) == "0, 1, 1" then
  1464. local player = game.Players:FindFirstChild(v.Parent.Name)
  1465. if player.Character.Head:FindFirstChild("TRACE") then
  1466. untrace(game.Players:FindFirstChild(v.Parent.Name))
  1467. else
  1468. trace(game.Players:FindFirstChild(v.Parent.Name))
  1469. end
  1470. end
  1471. end
  1472. end)
  1473. end
  1474. end)
  1475.  
  1476.  
  1477.  
  1478. game:GetService('RunService').Stepped:connect(function()
  1479. if shootuzi == true then
  1480. local opp = GetNearestPlayerToMouse()
  1481. if opp ~= nil then
  1482. game.Players.LocalPlayer.Character:FindFirstChildWhichIsA("Tool"):FindFirstChild("Fire"):FireServer(opp.Character.Head.CFrame + opp.Character.HumanoidRootPart.Velocity/5)
  1483. wait()
  1484. end
  1485. end
  1486.  
  1487. if noclip == true then
  1488. if game.Players.LocalPlayer.Character ~= nil then
  1489. if game.Players.LocalPlayer.Character:FindFirstChild("Head") and game.Players.LocalPlayer.Character:FindFirstChild("Torso") and game.Players.LocalPlayer.Character:FindFirstChild("Humanoid") then
  1490. game.Players.LocalPlayer.Character.Head.CanCollide = false
  1491. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  1492. game.Players.LocalPlayer.Character.Humanoid.Sit = false
  1493. end
  1494. end
  1495. end
  1496.  
  1497. if flying then
  1498. if game.Players.LocalPlayer.Character then
  1499. if game.Players.LocalPlayer.Character:FindFirstChild("Humanoid") then
  1500. game.Players.LocalPlayer.Character.Humanoid.PlatformStand = false
  1501. game.Players.LocalPlayer.Character.Humanoid.Sit = false
  1502. game.Players.LocalPlayer.Character.Humanoid:ChangeState(Enum.HumanoidStateType.Running)
  1503. end
  1504. if game.Players.LocalPlayer.Character:FindFirstChild("Float") then
  1505. game.Players.LocalPlayer.Character:FindFirstChild("Float").CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(0,-3.5,0)
  1506. end
  1507. end
  1508. end
  1509.  
  1510. if ShiftHeld == true then
  1511. if WHeld == true then
  1512. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(0,0,-RunSpeed)
  1513. end
  1514. if SHeld == true then
  1515. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(0,0,RunSpeed)
  1516. end
  1517. if DHeld == true then
  1518. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(RunSpeed,0,0)
  1519. end
  1520. if AHeld == true then
  1521. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(-RunSpeed,0,0)
  1522. end
  1523. end
  1524. if SpaceHeld == true then
  1525. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(0,JumpHeight,0)
  1526. end
  1527. end)
  1528.  
  1529. print("----------------FEATURES-------------------")
  1530. print("Chat commands can also be done as /e :COMMANDNAME or /e COMMANDNAME")
  1531. print("-------------------------------------------")
  1532. print("---------KEYS---------")
  1533. print("X Key - Toggle noclip")
  1534. print("F Key - Toggles flight")
  1535. print("C Key - Full heal / Use stored burgers")
  1536. print("Q Key - Toggle mult-uzi delay (press with multi-uzi tool out)")
  1537. print("")
  1538. print("K Key - Toggle super-run")
  1539. print("- Key - Lower super-run speed")
  1540. print("+ Key - Raise super-run speed")
  1541. print("")
  1542. print("L Key - Toggle super-jump")
  1543. print("[ Key - Lower super-jump speed")
  1544. print("] Key - Raise super-jump speed")
  1545. print("")
  1546. print("RIGHT CLICK")
  1547. print("- Right click on doors to toggle their locks")
  1548. print("- Right click with a gun out to target fire at the player closest to your mouse")
  1549. print("")
  1550. print("LEADERBOARD")
  1551. print("- Click a player's name on the leaderboard, then click TOGGLE TRACE to toggle tracing them")
  1552. print("")
  1553. print("---------CHAT COMMANDS---------")
  1554. print("Shortened names work")
  1555. print("-------------------------------")
  1556. print("")
  1557. print(":find PLAYERNAME - finds player")
  1558. print(":trace PLAYERNAME - finds player")
  1559. print(":unfind PLAYERNAME - unfinds player")
  1560. print(":untrace PLAYERNAME - unfinds player")
  1561. print("")
  1562. print(":noslow - Prevents you from being stopped while reloading, eating, stomping, etc")
  1563. print(":unnoslow - Turns off noslow")
  1564. print("")
  1565. print(":noknock - Prevents you from being tripped or stunned")
  1566. print(":unnoknock - Turns off noknock")
  1567. print("")
  1568. print(":triggerbot - Automatically attacks people who attack you with multi-uzi")
  1569. print(":trigger - Automatically attacks people who attack you with multi-uzi")
  1570. print(":untriggerbot - Turns off triggerbot")
  1571. print(":untrigger - Turns off triggerbot")
  1572. print("")
  1573. print(":flyspeed NUMBER - sets your flyspeed to NUMBER")
  1574. print("")
  1575. print(":autoheal - Automatically heals you if you take over 24 damage")
  1576. --[
  1577. print(":get ITEMNAME - gets an item, prioritizes free items. (LIST OF ITEMS FOR THIS COMMAND BELOW)")
  1578. print("-------------------------------------------")
  1579. print('-----------":get" command items-----------')
  1580. print("-------------------------------------------")
  1581. print("")
  1582. print("uzi")
  1583. print("burger")
  1584. print("drink")
  1585. print("ammo")
  1586. print("cash")
  1587. print("bottle")
  1588. print("machete")
  1589. print("club / golf")
  1590. print("glock / pistol")
  1591. print("sawed / sawn")
  1592. print("")
  1593. --]]
  1594. print("-------------------------------------------")
  1595. print('--------------USING MULTI-UZI--------------')
  1596. print("-------------------------------------------")
  1597. print("")
  1598. print("LEFT CLICK")
  1599. print("- Normal multi-uzi shot")
  1600. print("RIGHT CLICK")
  1601. print("- Targeted multi-uzi shot (shoots at player closest to mouse)")
  1602. print("Q Key")
  1603. print("- Toggles uzi delay (difference between fast fire and one shot)")
  1604. print("RELOADING")
  1605. print("- Walk over a reload buying pad with the multi-uzi equipped to reload uzis one by one")
  1606. print("GATHER UZIS")
  1607. print("- Uzis are stored whenever you obtain a new uzi")
  1608. print("MULTI-UZI INFO")
  1609. print("- Hover your mouse over the multi-uzi tool to see info. (amount of uzis, total damage, clips, and ammo)")
  1610. print("")
  1611. print("-------------------------------------------")
  1612. print("Vortexturize | aidez moi#4192 | Aidez")
  1613. print("-------------------------------------------")
  1614.  
  1615.  
  1616. repeat wait() until game.Players.LocalPlayer.Character ~= nil
  1617.  
  1618. game.Players.LocalPlayer.Character.ChildAdded:Connect(function(child)
  1619. if child:IsA("Tool") and not child:FindFirstChild("done") then
  1620. local madechanges = false
  1621. for i,v in pairs(child:GetDescendants()) do
  1622. if v:IsA("BasePart") then
  1623. v.CanCollide = false
  1624. madechanges = true
  1625. end
  1626. end
  1627. if madechanges == true then
  1628. local done = Instance.new("BoolValue")
  1629. done.Name = "done"
  1630. done.Parent = child
  1631. end
  1632. end
  1633. end)
  1634.  
  1635. repeat wait() until game.Players.LocalPlayer.Character:FindFirstChild("Humanoid")
  1636.  
  1637. game.Players.LocalPlayer.Character.Humanoid.HealthChanged:Connect(function(health)
  1638. if health <= game.Players.LocalPlayer.Character.Humanoid.MaxHealth - 24 and autoheal == true then
  1639. burgerheal()
  1640. end
  1641. end)
  1642. game.Players.LocalPlayer.Character.Humanoid.AnimationPlayed:Connect(function(track)
  1643. if string.find(track.Animation.AnimationId, "464531742") then
  1644. track:Stop()
  1645. end
  1646. end)
  1647.  
  1648.  
  1649.  
  1650.  
  1651.  
  1652.  
  1653. game.Players.LocalPlayer.Character.Humanoid.StateChanged:Connect(function(old, new)
  1654. if new == Enum.HumanoidStateType.FallingDown or new == Enum.HumanoidStateType.PlatformStanding and antiknockdown == true then
  1655. game.Players.LocalPlayer.Character.Humanoid.PlatformStand = false
  1656. game.Players.LocalPlayer.Character.Humanoid.Sit = false
  1657. game.Players.LocalPlayer.Character.Humanoid:ChangeState(Enum.HumanoidStateType.GettingUp)
  1658. game.Players.LocalPlayer.Character.Humanoid:ChangeState(Enum.HumanoidStateType.RunningNoPhysics)
  1659. end
  1660. end)
  1661.  
  1662.  
  1663. game.Players.LocalPlayer.Character.Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  1664. if noslow then
  1665. if game.Players.LocalPlayer.Character.Humanoid.WalkSpeed == 0 then
  1666. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  1667. end
  1668. end
  1669. end)
  1670.  
  1671. game.Players.LocalPlayer.Character.Humanoid.ChildAdded:Connect(function(child)
  1672. if child:IsA("ObjectValue") then
  1673. if triggerbot then
  1674. autoattack(game.Players:FindFirstChild(child.Value.Name))
  1675. local state = game.Players.LocalPlayer.Character.Humanoid:GetState()
  1676. if state == Enum.HumanoidStateType.FallingDown or new == Enum.HumanoidStateType.PlatformStanding then
  1677. game.Players.LocalPlayer.Character.Humanoid.PlatformStand = false
  1678. game.Players.LocalPlayer.Character.Humanoid.Sit = false
  1679. game.Players.LocalPlayer.Character.Humanoid:ChangeState(Enum.HumanoidStateType.GettingUp)
  1680. game.Players.LocalPlayer.Character.Humanoid:ChangeState(Enum.HumanoidStateType.RunningNoPhysics)
  1681. end
  1682. end
  1683. markplayer(game.Players:FindFirstChild(child.Value.Name))
  1684. end
  1685. end)
  1686.  
  1687. for i, x in pairs(game.Players:GetChildren()) do
  1688. if x ~= nil then
  1689. for i = 1,#hitlist do
  1690. if string.lower(x.Name) == tostring(string.lower(hitlist[i])) then
  1691. hitlistmark(x)
  1692. x.CharacterAppearanceLoaded:Connect(function(char)
  1693. if game.Players:FindFirstChild(char.Name) then
  1694. hitlistmark(game.Players:FindFirstChild(char.Name))
  1695. end
  1696. end)
  1697. end
  1698. end
  1699.  
  1700. if x:IsInGroup(5060386) and x.Name ~= "Fohskii" then
  1701. hitlistmark(x)
  1702. x.CharacterAppearanceLoaded:Connect(function(char)
  1703. if game.Players:FindFirstChild(char.Name) then
  1704. hitlistmark(game.Players:FindFirstChild(char.Name))
  1705. end
  1706. end)
  1707. end
  1708. end
  1709. end
  1710.  
  1711.  
  1712.  
  1713.  
  1714. --[[
  1715.  
  1716.  
  1717. UPDATE LOG:
  1718.  
  1719. ==========11/18/2019==========
  1720. - Added autoheal (:autoheal and :unautoheal) (needs burgers to heal you)
  1721. - You no longer get stopped while using the C key or autoheal
  1722. - You now auto-matically re-equip your tools after healing
  1723. - Eating animation is now automatically canceled.
  1724. ==========11/19/2019==========
  1725. - Now monitoring for people who kill hitlisted players!
  1726. - People who kill a certain amount of hitlisted players will be rewarded with ranks in the server and titles for people who use the script to see!
  1727.  
  1728.  
  1729.  
  1730.  
  1731. ..
  1732. /yys. `hMM/
  1733. :ys: `NMMMo oMMM:
  1734. `sMMMm -oo: `NMMy
  1735. .hMMMMM+ +MMN` `.-::. `
  1736. -mMMyoMMN. /hho .:syhhomMMs -smNMMMNy `shysssssyhdho
  1737. :mMMs``dMMd` NMMm .smMNdhdMMMM. `sNMNs:/MMM. `ydmmmmddMMMN+
  1738. +NMMs -MMMs :MMM/ +NMNs- .MMMy .dMMd- -yMMy `````/hMMy-
  1739. `yMMMmosyhdMMMM+ yMMm yMMN: `yMMM/ dMMN+odNMd/ :hMNy:
  1740. -dMMMMMMmmdhyhMMM+ NMMo /MMM- :dMMMM- :MMMMNmho-``:/ :hNMh-
  1741. +NMMm//-..`` `hMMMo` -MMM/ yMMm``:hNMyMMM+.-- :MMMy.` `-omMd` /dMMmo/+oooo/`
  1742. oMMMh. `yMMMm/ :MMMs +MMMmmMNh: hMMNNNy yMMMmhdmNMm+`:dMMMMNNNNmNMMMo
  1743. :yh+` `/dNNs `ydh: :shys/. `+yso-` :shddhy+-` oNMNho:-..```.-/`
  1744.  
  1745. Join my discord here!:
  1746. https://discord.gg/bMwYFq2
  1747.  
  1748. Check out the update log above the aidez tag!
  1749.  
  1750. --]]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement