Advertisement
ZoFrag

Streets Combat Script

Jul 7th, 2019
260
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 110.51 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. local LP = game.Players.LocalPlayer
  145. local Mouse = LP:GetMouse()
  146. toggler = false
  147. FLYING = false
  148. iyflyspeed = 2
  149. attackradius = 35
  150. planks = {}
  151. plankpos = game.Players.LocalPlayer.Character.Torso.Position - Vector3.new(0,-20,0)
  152. plankfollow = false
  153. planksurf = false
  154. TeleportService = game:GetService("TeleportService")
  155. dontshoot = {}
  156. freeshoot = true
  157. wirerunning = true
  158. godmode = false
  159. enhancedboombox = false
  160. suicidetools = {}
  161. visualize = false
  162. visualizetool = ""
  163. rot = 0
  164. sine = 0
  165.  
  166. local TargetGUI = Instance.new("ScreenGui")
  167. local Target = Instance.new("TextBox")
  168. local Background = Instance.new("ImageLabel")
  169.  
  170. TargetGUI.Name = "TargetGUI"
  171. TargetGUI.Parent = game.CoreGui
  172.  
  173. Target.Name = "Target"
  174. Target.Parent = TargetGUI
  175. Target.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  176. Target.BackgroundTransparency = 0.30000001192093
  177. Target.ClipsDescendants = true
  178. Target.Position = UDim2.new(0.726104677, 0, 0.717467248, 0)
  179. Target.Size = UDim2.new(0, 100, 0, 21)
  180. Target.Font = Enum.Font.SourceSans
  181. Target.PlaceholderText = "[TARGET]"
  182. Target.Text = ""
  183. Target.TextColor3 = Color3.new(1, 1, 1)
  184. Target.TextSize = 14
  185. Target.TextWrapped = true
  186. Target.Draggable = true
  187.  
  188. Background.Name = "Background"
  189. Background.Parent = Target
  190. Background.BackgroundColor3 = Color3.new(1, 1, 1)
  191. Background.Position = UDim2.new(-9.90098342e-05, 0, -1.57506061, 0)
  192. Background.Size = UDim2.new(0, 100, 0, 86)
  193. Background.ZIndex = 0
  194. Background.Image = "rbxassetid://0&hash=2396ab74bcae41f2340b198666905246"
  195.  
  196.  
  197. local Respawning = Instance.new("ScreenGui")
  198. local RespawningButton = Instance.new("TextButton")
  199.  
  200.  
  201.  
  202. Respawning.Name = "Respawning"
  203. Respawning.Parent = game.CoreGui
  204.  
  205.  
  206.  
  207. RespawningButton.Name = "RespawningButton"
  208. RespawningButton.Parent = Respawning
  209. RespawningButton.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  210. RespawningButton.BackgroundTransparency = 0.30000001192093
  211. RespawningButton.BorderSizePixel = 0
  212. RespawningButton.Position = UDim2.new(0.0391057241, 0, 0.826617789, 0)
  213. RespawningButton.Size = UDim2.new(0, 83, 0, 34)
  214. RespawningButton.Font = Enum.Font.SourceSans
  215. RespawningButton.Text = "Not Returning"
  216. RespawningButton.TextColor3 = Color3.new(1, 1, 1)
  217. RespawningButton.TextSize = 20
  218. RespawningButton.TextScaled = true
  219. RespawningButton.Draggable = true
  220.  
  221.  
  222. local creditsdab = Instance.new("ScreenGui")
  223. local Frame = Instance.new("Frame")
  224. local aidez = Instance.new("ImageLabel")
  225. local names = Instance.new("TextLabel")
  226. local scriptmadeby = Instance.new("TextLabel")
  227. local scriptmadeby_2 = Instance.new("TextLabel")
  228. local x = Instance.new("TextButton")
  229.  
  230.  
  231. creditsdab.Name = "creditsdab"
  232. creditsdab.Parent = game.CoreGui
  233.  
  234. Frame.Parent = creditsdab
  235. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  236. Frame.Position = UDim2.new(0.399554282, 0, 0.241054624, 0)
  237. Frame.Size = UDim2.new(0, 274, 0, 274)
  238.  
  239. aidez.Name = "aidez"
  240. aidez.Parent = Frame
  241. aidez.BackgroundColor3 = Color3.new(1, 1, 1)
  242. aidez.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  243. aidez.Position = UDim2.new(-0.000740621239, 0, 0.000178694725, 0)
  244. aidez.Size = UDim2.new(0, 274, 0, 274)
  245. aidez.Image = "rbxassetid://0&hash=9c3f6c00707d5ebde710fd2f3efd2b5e"
  246.  
  247. names.Name = "names"
  248. names.Parent = Frame
  249. names.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  250. names.BackgroundTransparency = 0.30000001192093
  251. names.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  252. names.Position = UDim2.new(0, 0, 0.897810221, 0)
  253. names.Size = UDim2.new(0, 274, 0, 28)
  254. names.Font = Enum.Font.SourceSans
  255. names.Text = "Vortexturize | aidez moi#4192 | Aidez "
  256. names.TextColor3 = Color3.new(1, 1, 1)
  257. names.TextSize = 14
  258.  
  259. scriptmadeby.Name = "scriptmadeby"
  260. scriptmadeby.Parent = Frame
  261. scriptmadeby.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  262. scriptmadeby.BackgroundTransparency = 0.30000001192093
  263. scriptmadeby.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  264. scriptmadeby.Position = UDim2.new(0, 0, -0.102189779, 0)
  265. scriptmadeby.Size = UDim2.new(0, 274, 0, 28)
  266. scriptmadeby.Font = Enum.Font.SourceSans
  267. scriptmadeby.Text = "Script made by"
  268. scriptmadeby.TextColor3 = Color3.new(1, 1, 1)
  269. scriptmadeby.TextSize = 14
  270.  
  271. scriptmadeby_2.Name = "scriptmadeby"
  272. scriptmadeby_2.Parent = Frame
  273. scriptmadeby_2.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  274. scriptmadeby_2.BackgroundTransparency = 0.30000001192093
  275. scriptmadeby_2.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  276. scriptmadeby_2.Position = UDim2.new(0, 0, -0.164233565, 0)
  277. scriptmadeby_2.Size = UDim2.new(0, 274, 0, 17)
  278. scriptmadeby_2.Font = Enum.Font.SourceSans
  279. scriptmadeby_2.Text = "Open the dev consol for a list of features. (F9 or Shift + F9)"
  280. scriptmadeby_2.TextColor3 = Color3.new(1, 1, 1)
  281. scriptmadeby_2.TextScaled = true
  282. scriptmadeby_2.TextSize = 14
  283. scriptmadeby_2.TextWrapped = true
  284.  
  285. x.Name = "x"
  286. x.Parent = creditsdab
  287. x.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  288. x.BackgroundTransparency = 0.30000001192093
  289. x.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  290. x.Position = UDim2.new(0.600445747, 0, 0.188323915, 0)
  291. x.Size = UDim2.new(0, 28, 0, 28)
  292. x.Font = Enum.Font.SourceSansSemibold
  293. x.Text = "X"
  294. x.TextColor3 = Color3.new(1, 1, 1)
  295. x.TextSize = 30
  296.  
  297. x.MouseButton1Click:connect(function()
  298.     creditsdab:Destroy()
  299. end)
  300.  
  301. function giveSKey()
  302. local epic = Instance.new("Tool")
  303. local dab = Instance.new("Part")
  304. local plr = game.Players.LocalPlayer
  305. local tar_obj = nil
  306. dab.Parent = epic
  307. dab.Size = Vector3.new(0.2, 0.2, 0.2)
  308. epic.Parent = plr.Backpack
  309. epic.Name = "Skeleton Key"
  310. epic.ToolTip = "Click on a door with this"
  311. dab.Name = "Handle"
  312. epic.Equipped:Connect(function(m_S)
  313.  
  314.    
  315. m_S.Button1Down:Connect(function()
  316.  
  317.        
  318. tar_obj = m_S.Target
  319. door = tar_obj.Parent
  320. if door:FindFirstChild("Lock") then
  321. door.Lock.ClickDetector.RemoteEvent:FireServer()
  322. wait(0.2)
  323. door.Click.ClickDetector.RemoteEvent:FireServer()
  324.  
  325. elseif tar_obj.Parent.Parent:FindFirstChild("Lock") then
  326. tar_obj.Parent.Parent.Lock.ClickDetector.RemoteEvent:FireServer()
  327. wait(0.2)
  328. tar_obj.Parent.Parent.Click.ClickDetector.RemoteEvent:FireServer()
  329.  
  330.  
  331. end
  332.  
  333.  
  334.    
  335. end)
  336. end)
  337. end -- giveSKey Function end
  338. giveSKey()
  339.  
  340. function sFLY() -- from rocky2u cmdscript
  341.  
  342.     repeat wait() until LP and LP.Character and LP.Character:FindFirstChild('HumanoidRootPart') and LP.Character:FindFirstChild('Humanoid')
  343.     game.Players.LocalPlayer.Character.HumanoidRootPart.Anchored = true
  344.     repeat wait() until Mouse
  345.     local T = game.Players.LocalPlayer.Character.HumanoidRootPart
  346.     local CONTROL = {F = 0, B = 0, L = 0, R = 0}
  347.     local lCONTROL = {F = 0, B = 0, L = 0, R = 0}
  348.     local SPEED = 0
  349.    
  350.     local function FLY()
  351.         FLYING = true
  352.         local BG = Instance.new('BodyGyro', T)
  353.         local BV = Instance.new('BodyVelocity', T)
  354.     BG.P = 9e4
  355.         BG.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  356.         BG.cframe = T.CFrame
  357.         BV.velocity = Vector3.new(0, 0.1, 0)
  358.         BV.maxForce = Vector3.new(9e9, 9e9, 9e9)
  359.         spawn(function()
  360.         repeat wait()
  361.        
  362.         if CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0 then
  363.         SPEED = 50
  364.         elseif not (CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0) and SPEED ~= 0 then
  365.         SPEED = 0
  366.         end
  367. if (CONTROL.L + CONTROL.R) ~= 0 or (CONTROL.F + CONTROL.B) ~= 0 then
  368. 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
  369. lCONTROL = {F = CONTROL.F, B = CONTROL.B, L = CONTROL.L, R = CONTROL.R}
  370. elseif (CONTROL.L + CONTROL.R) == 0 and (CONTROL.F + CONTROL.B) == 0 and SPEED ~= 0 then
  371. 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
  372. else
  373. BV.velocity = Vector3.new(0, 0.1, 0)
  374. end
  375.     BG.cframe = workspace.CurrentCamera.CoordinateFrame
  376.             until not FLYING
  377.             CONTROL = {F = 0, B = 0, L = 0, R = 0}
  378.             lCONTROL = {F = 0, B = 0, L = 0, R = 0}
  379.             SPEED = 0
  380.             BG:destroy()
  381.             BV:destroy()
  382.         end)
  383.     end
  384.     Mouse.KeyDown:connect(function(KEY)
  385.         if KEY:lower() == 'w' then
  386.             CONTROL.F = iyflyspeed
  387.         elseif KEY:lower() == 's' then
  388.             CONTROL.B = -iyflyspeed
  389.         elseif KEY:lower() == 'a' then
  390.             CONTROL.L = -iyflyspeed
  391.         elseif KEY:lower() == 'd' then
  392.             CONTROL.R = iyflyspeed
  393.         end
  394.     end)
  395.     Mouse.KeyUp:connect(function(KEY)
  396.         if KEY:lower() == 'w' then
  397.             CONTROL.F = 0
  398.         elseif KEY:lower() == 's' then
  399.             CONTROL.B = 0
  400.         elseif KEY:lower() == 'a' then
  401.             CONTROL.L = 0
  402.         elseif KEY:lower() == 'd' then
  403.             CONTROL.R = 0
  404.         end
  405.     end)
  406.     FLY()
  407. game.Players.LocalPlayer.Character.HumanoidRootPart.Anchored = false
  408. end
  409.  
  410.  
  411. function NOFLY()
  412.     FLYING = false
  413. end
  414.  
  415. function startflying()
  416.     game.Players.LocalPlayer.PlayerGui.LocalScript.Disabled = true
  417.     wait()
  418.     sFLY()
  419.     wait(0.1)
  420.     game.Players.LocalPlayer.PlayerGui.LocalScript.Disabled = false
  421.     local Float = Instance.new('Part', game.Players.LocalPlayer.Character)
  422.     Float.Name = 'Float'
  423.     Float.Transparency = 1
  424.     Float.Size = Vector3.new(6,1,6)
  425.     Float.Anchored = true
  426. end
  427.  
  428. function CreateDonationGUI()
  429. local DonateGUI = Instance.new("ScreenGui")
  430. local Frame = Instance.new("Frame")
  431. local Background = Instance.new("ImageLabel")
  432. local _10 = Instance.new("TextButton")
  433. local _30 = Instance.new("TextButton")
  434. local _50 = Instance.new("TextButton")
  435. local _60 = Instance.new("TextButton")
  436. local _100 = Instance.new("TextButton")
  437. local _200 = Instance.new("TextButton")
  438. local X = Instance.new("TextButton")
  439.  
  440. DonateGUI.Name = "DonateGUI"
  441. DonateGUI.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  442. DonateGUI.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  443.  
  444. Frame.Parent = DonateGUI
  445. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  446. Frame.ClipsDescendants = true
  447. Frame.Position = UDim2.new(0.340173662, 0, 0.153321981, 0)
  448. Frame.Size = UDim2.new(0, 405, 0, 407)
  449.  
  450. Background.Name = "Background"
  451. Background.Parent = Frame
  452. Background.BackgroundColor3 = Color3.new(0, 0, 0)
  453. Background.Position = UDim2.new(-0.00493827462, 0, -0.00737100746, 0)
  454. Background.Size = UDim2.new(0, 409, 0, 413)
  455. Background.Image = "rbxassetid://3207314205"
  456.  
  457. _10.Name = "10"
  458. _10.Parent = Background
  459. _10.BackgroundColor3 = Color3.new(1, 1, 1)
  460. _10.BackgroundTransparency = 0.69999998807907
  461. _10.Position = UDim2.new(0.254278719, 0, 0.0992735997, 0)
  462. _10.Size = UDim2.new(0, 200, 0, 50)
  463. _10.Font = Enum.Font.SourceSans
  464. _10.Text = "Donate 10"
  465. _10.TextColor3 = Color3.new(1, 1, 1)
  466. _10.TextSize = 18
  467. _10.TextStrokeTransparency = 0.10000000149012
  468.  
  469. _30.Name = "30"
  470. _30.Parent = Background
  471. _30.BackgroundColor3 = Color3.new(1, 1, 1)
  472. _30.BackgroundTransparency = 0.69999998807907
  473. _30.Position = UDim2.new(0.254278719, 0, 0.237288117, 0)
  474. _30.Size = UDim2.new(0, 200, 0, 50)
  475. _30.Font = Enum.Font.SourceSans
  476. _30.Text = "Donate 30"
  477. _30.TextColor3 = Color3.new(1, 1, 1)
  478. _30.TextSize = 18
  479. _30.TextStrokeTransparency = 0.10000000149012
  480.  
  481. _50.Name = "50"
  482. _50.Parent = Background
  483. _50.BackgroundColor3 = Color3.new(1, 1, 1)
  484. _50.BackgroundTransparency = 0.69999998807907
  485. _50.Position = UDim2.new(0.254278719, 0, 0.372881353, 0)
  486. _50.Size = UDim2.new(0, 200, 0, 50)
  487. _50.Font = Enum.Font.SourceSans
  488. _50.Text = "Donate 50"
  489. _50.TextColor3 = Color3.new(1, 1, 1)
  490. _50.TextSize = 18
  491. _50.TextStrokeTransparency = 0.10000000149012
  492.  
  493. _60.Name = "60"
  494. _60.Parent = Background
  495. _60.BackgroundColor3 = Color3.new(1, 1, 1)
  496. _60.BackgroundTransparency = 0.69999998807907
  497. _60.Position = UDim2.new(0.254278719, 0, 0.508474588, 0)
  498. _60.Size = UDim2.new(0, 200, 0, 50)
  499. _60.Font = Enum.Font.SourceSans
  500. _60.Text = "Donate 60"
  501. _60.TextColor3 = Color3.new(1, 1, 1)
  502. _60.TextSize = 18
  503. _60.TextStrokeTransparency = 0.10000000149012
  504.  
  505. _100.Name = "100"
  506. _100.Parent = Background
  507. _100.BackgroundColor3 = Color3.new(1, 1, 1)
  508. _100.BackgroundTransparency = 0.69999998807907
  509. _100.Position = UDim2.new(0.254278719, 0, 0.644067824, 0)
  510. _100.Size = UDim2.new(0, 200, 0, 50)
  511. _100.Font = Enum.Font.SourceSans
  512. _100.Text = "Donate 100"
  513. _100.TextColor3 = Color3.new(1, 1, 1)
  514. _100.TextSize = 18
  515. _100.TextStrokeTransparency = 0.10000000149012
  516.  
  517. _200.Name = "200"
  518. _200.Parent = Background
  519. _200.BackgroundColor3 = Color3.new(1, 1, 1)
  520. _200.BackgroundTransparency = 0.69999998807907
  521. _200.Position = UDim2.new(0.254278719, 0, 0.779661059, 0)
  522. _200.Size = UDim2.new(0, 200, 0, 50)
  523. _200.Font = Enum.Font.SourceSans
  524. _200.Text = "Donate 200"
  525. _200.TextColor3 = Color3.new(1, 1, 1)
  526. _200.TextSize = 18
  527. _200.TextStrokeTransparency = 0.10000000149012
  528.  
  529. X.Name = "X"
  530. X.Parent = Background
  531. X.BackgroundColor3 = Color3.new(1, 1, 1)
  532. X.BorderSizePixel = 3
  533. X.Position = UDim2.new(0.90220046, 0, 0.0072639226, 0)
  534. X.Size = UDim2.new(0, 38, 0, 38)
  535. X.Font = Enum.Font.SourceSans
  536. X.Text = "X"
  537. X.TextColor3 = Color3.new(0, 0, 0)
  538. X.TextSize = 50
  539.  
  540. X.MouseButton1Click:connect(function()
  541.     DonateGUI:Destroy()
  542. end)
  543.  
  544. _10.MouseButton1Click:connect(function()
  545.     game:GetService("MarketplaceService"):PromptPurchase(game.Players.LocalPlayer,649311217,true)
  546. end)
  547.  
  548. _30.MouseButton1Click:connect(function()
  549.     game:GetService("MarketplaceService"):PromptPurchase(game.Players.LocalPlayer,918194587,true)
  550. end)
  551.  
  552. _50.MouseButton1Click:connect(function()
  553.     game:GetService("MarketplaceService"):PromptPurchase(game.Players.LocalPlayer,858859976,true)
  554. end)
  555.  
  556. _60.MouseButton1Click:connect(function()
  557.     game:GetService("MarketplaceService"):PromptPurchase(game.Players.LocalPlayer,885034827,true)
  558. end)
  559.  
  560. _100.MouseButton1Click:connect(function()
  561.     game:GetService("MarketplaceService"):PromptPurchase(game.Players.LocalPlayer,649314421,true)
  562. end)
  563.  
  564. _200.MouseButton1Click:connect(function()
  565.     game:GetService("MarketplaceService"):PromptPurchase(game.Players.LocalPlayer,649315461,true)
  566. end)
  567. end
  568.  
  569.  
  570. function findplayer(namey)
  571.     local name = string.lower(namey)
  572.     local player = nil
  573.                    
  574.     names = game.Players:GetChildren()
  575.                                
  576.     for i,v in pairs(names) do
  577.         strlower = string.lower(v.Name)
  578.         sub = string.sub(strlower,1,#name)                                    
  579.         if name == sub then
  580.         player = v
  581.         if player.Name ~= game.Players.LocalPlayer.Name then
  582.              
  583.         end
  584.         end
  585.     end
  586.     if player then
  587.         return player
  588.     else
  589.         return false
  590.     end
  591. end
  592.  
  593. function IsInTable(table, tofind)
  594.     local found = false
  595.     for i,v in pairs(table) do
  596.         if v == tofind then
  597.             found = true
  598.             break
  599.         end
  600.     end
  601.     return found
  602. end
  603.  
  604. if string.find(string.lower(game.Players.LocalPlayer.Name), "la_") then
  605.     game:GetService("ReplicatedStorage").lIII:FireServer("spd")
  606. end
  607.  
  608. local function removeothercash(instance)
  609.     for i,v in pairs(instance:GetChildren()) do
  610.     if v.Name == "ESP" and v:FindFirstChild("CASH") then
  611.         v:Destroy()
  612.     end
  613.     removeothercash(v)
  614.     end
  615. end
  616.  
  617.  
  618. function gettools(toolname)
  619.     toolname = string.lower(toolname)
  620.     local matchingtools = {}
  621.     if toolname == "hat" and not game.Players.LocalPlayer.Backpack:FindFirstChild("hat") and game.Players.LocalPlayer.Character.Torso:FindFirstChild("Song") then
  622.         local LocalPlayer = game:GetService("Players").LocalPlayer
  623.         for _, hat in pairs(LocalPlayer.Character.Humanoid:GetAccessories()) do
  624.             if hat:FindFirstChild("Handle") then
  625.                 local tool = Instance.new("Tool", LocalPlayer.Backpack)
  626.                 tool.Name = "hat"
  627.                 local hathandle = hat.Handle
  628.                 hathandle:FindFirstChildOfClass("Weld"):Destroy()
  629.                 hathandle.Parent = tool
  630.                 hathandle.Massless = true
  631.             end
  632.         end
  633.         wait()
  634.     end
  635.         for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  636.             local lowername = string.lower(v.Name)
  637.             if string.sub(lowername, 1, #toolname) == toolname then
  638.                 table.insert(matchingtools, v)
  639.             end
  640.         end
  641.         for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  642.             local lowername = string.lower(v.Name)
  643.             if string.sub(lowername, 1, #toolname) == toolname then
  644.                 table.insert(matchingtools, v)
  645.             end
  646.         end
  647.    
  648.     return matchingtools
  649. end
  650.  
  651.  
  652. function toversionid(id)
  653.  
  654.     local dab = game:HttpGet("https://www.roblox.com/studio/plugins/info?assetId="..id)
  655.     if string.find(dab, 'value="') then
  656.     local epic = string.find(dab, 'value="')
  657.     local almost = string.sub(dab, epic + 7, epic + 18)
  658.         local filter1 = string.gsub(almost, " ", "")
  659.         local filter2 = string.gsub(filter1, "/", "")
  660.         local filter3 = string.gsub(filter2, ">", "")
  661.         local filter4 = string.gsub(filter3, '"', "")
  662.         local versionid = string.gsub(filter4, "<", "")
  663.     return versionid
  664.     end
  665.  
  666. end
  667.  
  668.  
  669.  
  670. function percentencode(id)
  671.  
  672.     local third = string.gsub(tostring(id), "3", "%%33")
  673.     local first = string.gsub(third, "1", "%%31")
  674.     local second = string.gsub(first, "2", "%%32")
  675.     local fourth = string.gsub(second, "4", "%%34")
  676.     local fifth = string.gsub(fourth, "5", "%%35")
  677.     local sixth = string.gsub(fifth, "6", "%%36")
  678.     local seventh = string.gsub(sixth, "7", "%%37")
  679.     local eighth = string.gsub(seventh, "8", "%%38")
  680.     local ninth = string.gsub(eighth, "9", "%%39")
  681.     local PercentEncodedId = ninth
  682.     return PercentEncodedId
  683.  
  684. end
  685.  
  686. StartMessage = "Asset_ID_To_Version_ID_Script_Made_By_Aidez"
  687.  
  688. function toplayable(id)
  689.  
  690.     local playableid = StartMessage..".hash_%61%6c%73%6f%5f%79%6f%75%5f%74%68%69%6e%6b%5f%64%65%63%72%79%70%74%69%6e%67%5f%74%68%69%73%5f%69%73%5f%67%6f%6e%6e%61%5f%68%65%6c%70%3f%5f%46%55%43%4b%5f%55%50%5f%4e%49%47%47%41%21%5f%59%6f%75%5f%77%72%6f%6e%67%5f%4c%4f%4c%21%5f%43%59%41%5f%63%75%6e%74%5f%61%73%73%5f%6c%61%74%65%72%5f%73%69%6e%63%65%72%65%6c%79%5f%42%6f%62%5f%52%6f%73%73%5f&%76%65%72%73%69%6f%6e%69%64="..tostring(id)
  691.     return playableid
  692.  
  693. end
  694.  
  695.  
  696. function fullyconvert(id)
  697.  
  698.     local convert = toversionid(id)
  699.     local encoded = percentencode(convert)
  700.     local playable = toplayable(encoded)
  701.     return playable
  702.  
  703. end
  704.  
  705.  
  706. local function removeothershotty(instance)
  707.     for i,v in pairs(instance:GetChildren()) do
  708.     if v.Name == "ESP" and v:FindFirstChild("SHOTTY") then
  709.         v:Destroy()
  710.     end
  711.     removeothershotty(v)
  712.     end
  713. end
  714.  
  715. local function removeotheruzi(instance)
  716.     for i,v in pairs(instance:GetChildren()) do
  717.     if v.Name == "ESP" and v:FindFirstChild("UZi") then
  718.         v:Destroy()
  719.     end
  720.     removeotheruzi(v)
  721.     end
  722. end
  723.  
  724. function showcash(v)
  725.  
  726.     local epic = Instance.new("Part")
  727.     epic.Parent = v
  728.     epic.Name = "parttrace"
  729.     epic.CFrame = v.CFrame
  730.     epic.Size = Vector3.new(0.2,0.2,0.2)
  731.     epic.Anchored = true
  732.     epic.Transparency = 1
  733.  
  734.     local billgui = Instance.new('BillboardGui', epic)
  735.     local textlab = Instance.new('TextLabel', billgui)
  736.  
  737.     billgui.Name = "ESP"
  738.     billgui.Adornee  = epic
  739.     billgui.AlwaysOnTop = true
  740.     billgui.ExtentsOffset = Vector3.new(0, 1, 0)
  741.     billgui.Size = UDim2.new(0, 5, 0, 5)
  742.    
  743.     textlab.Name = 'CASH'
  744.     textlab.BackgroundColor3 = Color3.new(255, 255, 255)
  745.     textlab.BackgroundTransparency = 1
  746.     textlab.BorderSizePixel = 0
  747.     textlab.Position = UDim2.new(0, 0, 0, -40)
  748.     textlab.Size = UDim2.new(1, 0, 10, 0)
  749.     textlab.Visible = true
  750.     textlab.ZIndex = 10
  751.     textlab.Font = 'ArialBold'
  752.     textlab.FontSize = 'Size14'
  753.     textlab.Text = "CASH"
  754.     textlab.TextColor = BrickColor.new('Bright red')
  755.     textlab.TextStrokeColor3 = Color3.fromRGB(0,0,0)
  756.     textlab.TextStrokeTransparency = 0.6
  757. end
  758.  
  759.  
  760. function showuzi(v)
  761.  
  762.     local epic = Instance.new("Part")
  763.     epic.Parent = v
  764.     epic.Name = "parttrace"
  765.     epic.CFrame = v.CFrame
  766.     epic.Size = Vector3.new(0.2,0.2,0.2)
  767.     epic.Anchored = true
  768.     epic.Transparency = 1
  769.  
  770.     local billgui = Instance.new('BillboardGui', epic)
  771.     local textlab = Instance.new('TextLabel', billgui)
  772.  
  773.     billgui.Name = "ESP"
  774.     billgui.Adornee  = epic
  775.     billgui.AlwaysOnTop = true
  776.     billgui.ExtentsOffset = Vector3.new(0, 1, 0)
  777.     billgui.Size = UDim2.new(0, 5, 0, 5)
  778.    
  779.     textlab.Name = 'UZI'
  780.     textlab.BackgroundColor3 = Color3.new(255, 255, 255)
  781.     textlab.BackgroundTransparency = 1
  782.     textlab.BorderSizePixel = 0
  783.     textlab.Position = UDim2.new(0, 0, 0, -40)
  784.     textlab.Size = UDim2.new(1, 0, 10, 0)
  785.     textlab.Visible = true
  786.     textlab.ZIndex = 10
  787.     textlab.Font = 'ArialBold'
  788.     textlab.FontSize = 'Size18'
  789.     textlab.Text = "UZI"
  790.     textlab.TextColor = BrickColor.new('Bright blue')
  791.     textlab.TextStrokeColor3 = Color3.fromRGB(0,0,0)
  792.     textlab.TextStrokeTransparency = 0.6
  793. end
  794.  
  795.  
  796. function showshotty(v)
  797.  
  798.     local epic = Instance.new("Part")
  799.     epic.Parent = v
  800.     epic.Name = "parttrace"
  801.     epic.CFrame = v.CFrame
  802.     epic.Size = Vector3.new(0.2,0.2,0.2)
  803.     epic.Anchored = true
  804.     epic.Transparency = 1
  805.  
  806.     local billgui = Instance.new('BillboardGui', epic)
  807.     local textlab = Instance.new('TextLabel', billgui)
  808.  
  809.     billgui.Name = "ESP"
  810.     billgui.Adornee  = epic
  811.     billgui.AlwaysOnTop = true
  812.     billgui.ExtentsOffset = Vector3.new(0, 1, 0)
  813.     billgui.Size = UDim2.new(0, 5, 0, 5)
  814.    
  815.     textlab.Name = 'SHOTTY'
  816.     textlab.BackgroundColor3 = Color3.new(255, 255, 255)
  817.     textlab.BackgroundTransparency = 1
  818.     textlab.BorderSizePixel = 0
  819.     textlab.Position = UDim2.new(0, 0, 0, -40)
  820.     textlab.Size = UDim2.new(1, 0, 10, 0)
  821.     textlab.Visible = true
  822.     textlab.ZIndex = 10
  823.     textlab.Font = 'ArialBold'
  824.     textlab.FontSize = 'Size14'
  825.     textlab.Text = "SHOTTY"
  826.     textlab.TextColor = BrickColor.new('Bright yellow')
  827.     textlab.TextStrokeColor3 = Color3.fromRGB(0,0,0)
  828.     textlab.TextStrokeTransparency = 0.6
  829. end
  830.  
  831.  
  832. local function tracecash(instance)
  833.     for i,v in pairs(instance:GetChildren()) do
  834.     if v:IsA("MeshPart") and v.MeshId == "rbxassetid://511726060" then
  835.         removeothercash(v.Parent)
  836.         showcash(v)
  837.         end
  838.     tracecash(v)
  839.     end
  840. end
  841.  
  842.  
  843. local function traceshotty(instance)
  844.     for i,v in pairs(instance:GetChildren()) do
  845.     if v:IsA("Sound") and v.Name == "Fire" and v.Parent.Parent.Parent.Name == "RandomSpawner" and string.find(tostring(v.SoundId), tostring(142383762)) then
  846.         removeothershotty(v.Parent)
  847.         showshotty(v.Parent)
  848.         end
  849.     traceshotty(v)
  850.     end
  851. end
  852.  
  853.  
  854. local function traceuzi(instance)
  855.     for i,v in pairs(instance:GetChildren()) do
  856.     if v:IsA("Sound") and v.Name == "Fire" and v.Parent.Parent.Parent.Name == "RandomSpawner" and string.find(tostring(v.SoundId), tostring(328964620)) then
  857.         removeotheruzi(v.Parent)
  858.         showuzi(v.Parent)
  859.         end
  860.     traceuzi(v)
  861.     end
  862. end
  863.  
  864.  
  865.  
  866. for i,v in pairs(game.Workspace:GetChildren()) do
  867.     if v.Name == "RandomSpawner" then
  868.     if v:FindFirstChild("Model") then
  869.         v.Model.ChildAdded:Connect(function(child)
  870.         tracecash(child)
  871.         traceshotty(child)
  872.         traceuzi(child)
  873.         end)
  874.     end
  875.     v.ChildAdded:Connect(function(child)
  876.         tracecash(child)
  877.         traceshotty(child)
  878.         traceuzi(child)
  879.     end)
  880.     end
  881. end
  882.  
  883. game.Workspace.ChildAdded:Connect(function(child)
  884.     if child.Name == "RandomSpawner" then
  885.     repeat wait() until child.Model
  886.     tracecash(child)
  887.     traceshotty(child)
  888.     traceuzi(child)
  889.     end
  890. end)
  891.  
  892. tracecash(game.Workspace)
  893. traceshotty(game.Workspace)
  894. traceuzi(game.Workspace)
  895.  
  896.    local function uncancollide(instance)
  897.         for i,v in pairs(instance:GetChildren()) do
  898.             if v:IsA("BasePart") then
  899.                 v.CanCollide = false
  900.         v.Massless = true
  901.             end
  902.             uncancollide(v)
  903.         end
  904.     end
  905.  
  906.  
  907. local function radioglitchy(instance)
  908.     for i,v in pairs(instance:GetChildren()) do
  909.     if v:IsA("Script") then
  910.         v:Destroy()
  911.     end
  912.     radioglitchy(v)
  913.     end
  914. end
  915.  
  916. local function invis(instance)
  917.     for i,v in pairs(instance:GetChildren()) do
  918.     if v.Name == "Weld" and v.Parent.Name ~= "Heh" and v.Parent.Name ~= "Barrel" then
  919.         v:Destroy()
  920.     end
  921.     invis(v)
  922.     end
  923. end
  924.  
  925.  
  926. local function demesh(instance)
  927.     for i,v in pairs(instance:GetChildren()) do
  928.     if v:IsA("SpecialMesh") then
  929.         v:remove()
  930.     end
  931.     demesh(v)
  932.     end
  933. end
  934.  
  935. local function wirerun(instance)
  936.     for i,v in pairs(instance:GetChildren()) do
  937.     if v:IsA("BasePart") and v.Name == "Wires" then
  938.         v.CanCollide = true
  939.         v.Size = v.Size + Vector3.new(2, 0, 0)
  940.     end
  941.     wirerun(v)
  942.     end
  943. end
  944. wirerun(game.Workspace)
  945.  
  946. local function unwirerun(instance)
  947.     for i,v in pairs(instance:GetChildren()) do
  948.     if v:IsA("BasePart") and v.Name == "Wires" then
  949.         v.CanCollide = false
  950.         v.Size = v.Size - Vector3.new(2, 0, 0)
  951.     end
  952.     unwirerun(v)
  953.     end
  954. end
  955.  
  956. local function deseat(instance)
  957.     for i,v in pairs(instance:GetChildren()) do
  958.     if v:IsA("Seat") then
  959.         v.Parent = game.Lighting
  960.     end
  961.     deseat(v)
  962.     end
  963. end
  964.  
  965. local function reseat(instance)
  966.     for i,v in pairs(instance:GetChildren()) do
  967.     if v:IsA("Seat") then
  968.         v.Parent = game.Workspace
  969.     end
  970.     reseat(v)
  971.     end
  972. end
  973.  
  974.  
  975. function defence(instance)
  976.     for i,v in pairs(instance:GetChildren()) do
  977.     if v:IsA("Texture") then
  978.         if v.Parent then
  979.         if v.Parent.Transparency == 1 then
  980.             v.Parent.Parent = game.Lighting
  981.         end
  982.         end
  983.     end
  984.     defence(v)
  985.     end
  986. end
  987.  
  988.  
  989. function refence(instance)
  990.     for i,v in pairs(instance:GetChildren()) do
  991.     if v:IsA("Texture") then
  992.         if v.Parent then
  993.         if v.Parent.Transparency == 1 then
  994.             v.Parent.Parent = game.Workspace
  995.         end
  996.         end
  997.     end
  998.     refence(v)
  999.     end
  1000. end
  1001.  
  1002.  
  1003.  
  1004. for i,v in pairs(game.Workspace:GetChildren()) do
  1005.     if v.Name == "Boards" then
  1006.     for i,x in pairs(v:GetChildren()) do
  1007.         table.insert(planks,(#planks+1),x)
  1008.     end
  1009.     end
  1010. end
  1011.  
  1012.  
  1013.  
  1014. function messagecommandshandle(plr,msg)
  1015.  
  1016. local lower = string.lower(msg)
  1017. local len = string.len(lower)
  1018.  
  1019.  
  1020. if string.find(lower,":play ") then
  1021. idtoplay = string.gsub(lower,":play ","")
  1022. for _,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  1023. if (v:IsA("Tool") and v.Name == "BoomBox") then
  1024. v.Parent = game.Players.LocalPlayer.Character
  1025. end
  1026. end
  1027. wait(0.1)
  1028. game.Players.LocalPlayer.Character.BoomBox.Remote:FireServer("PlaySong", idtoplay)
  1029. wait(0.1)
  1030. radioglitchy(game.Players.LocalPlayer.Character.BoomBox)
  1031. game.Players.LocalPlayer.Character:FindFirstChild("BoomBox").Parent = game.Players.LocalPlayer.Backpack
  1032.  
  1033. end
  1034.  
  1035. if string.find(lower,"/e play ") then
  1036. idtoplay = string.gsub(lower,"/e play ","")
  1037. for _,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  1038. if (v:IsA("Tool") and v.Name == "BoomBox") then
  1039. v.Parent = game.Players.LocalPlayer.Character
  1040. end
  1041. end
  1042. wait(0.1)
  1043. game.Players.LocalPlayer.Character.BoomBox.Remote:FireServer("PlaySong", idtoplay)
  1044. wait(0.1)
  1045. radioglitchy(game.Players.LocalPlayer.Character.BoomBox)
  1046. game.Players.LocalPlayer.Character:FindFirstChild("BoomBox").Parent = game.Players.LocalPlayer.Backpack
  1047.  
  1048. end
  1049.  
  1050. if string.find(lower,"/e :play ") then
  1051. idtoplay = string.gsub(lower,"/e :play ","")
  1052. for _,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  1053. if (v:IsA("Tool") and v.Name == "BoomBox") then
  1054. v.Parent = game.Players.LocalPlayer.Character
  1055. end
  1056. end
  1057. wait(0.1)
  1058. game.Players.LocalPlayer.Character.BoomBox.Remote:FireServer("PlaySong", idtoplay)
  1059. wait(0.1)
  1060. radioglitchy(game.Players.LocalPlayer.Character.BoomBox)
  1061. game.Players.LocalPlayer.Character:FindFirstChild("BoomBox").Parent = game.Players.LocalPlayer.Backpack
  1062.  
  1063. end
  1064.  
  1065.  
  1066.  
  1067. if string.find(lower,":eplay ") then
  1068.     idtoplay = string.gsub(lower,":eplay ","")
  1069.     for _,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  1070.         if (v:IsA("Tool") and v.Name == "BoomBox") then
  1071.             v.Parent = game.Players.LocalPlayer.Character
  1072.         end
  1073.     end
  1074.     wait(0.1)
  1075.     game.Players.LocalPlayer.Character.BoomBox.Remote:FireServer("PlaySong", fullyconvert(idtoplay))
  1076.     wait(0.1)
  1077.     radioglitchy(game.Players.LocalPlayer.Character.BoomBox)
  1078.     game.Players.LocalPlayer.Character:FindFirstChild("BoomBox").Parent = game.Players.LocalPlayer.Backpack
  1079. end
  1080.  
  1081. if string.find(lower,"/e eplay ") then
  1082.     idtoplay = string.gsub(lower,"/e eplay ","")
  1083.     for _,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  1084.         if (v:IsA("Tool") and v.Name == "BoomBox") then
  1085.             v.Parent = game.Players.LocalPlayer.Character
  1086.         end
  1087.     end
  1088.     wait(0.1)
  1089.     game.Players.LocalPlayer.Character.BoomBox.Remote:FireServer("PlaySong", fullyconvert(idtoplay))
  1090.     wait(0.1)
  1091.     radioglitchy(game.Players.LocalPlayer.Character.BoomBox)
  1092.     game.Players.LocalPlayer.Character:FindFirstChild("BoomBox").Parent = game.Players.LocalPlayer.Backpack
  1093. end
  1094. if string.find(lower,"/e :eplay ") then
  1095.     idtoplay = string.gsub(lower,"/e :eplay ","")
  1096.     for _,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  1097.         if (v:IsA("Tool") and v.Name == "BoomBox") then
  1098.             v.Parent = game.Players.LocalPlayer.Character
  1099.         end
  1100.     end
  1101.     wait(0.1)
  1102.     game.Players.LocalPlayer.Character.BoomBox.Remote:FireServer("PlaySong", fullyconvert(idtoplay))
  1103.     wait(0.1)
  1104.     radioglitchy(game.Players.LocalPlayer.Character.BoomBox)
  1105.     game.Players.LocalPlayer.Character:FindFirstChild("BoomBox").Parent = game.Players.LocalPlayer.Backpack
  1106. end
  1107.  
  1108.  
  1109. if string.find(lower,":erplay ") then
  1110.     idtoplay = string.gsub(lower,":erplay ","")
  1111.     for _,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  1112.         if (v:IsA("Tool") and v.Name == "BoomBox") then
  1113.             v.Parent = game.Players.LocalPlayer.Character
  1114.         end
  1115.     end
  1116.     wait(0.1)
  1117.     game.Players.LocalPlayer.Character.BoomBox.Remote:FireServer("PlaySong", fullyconvert(idtoplay))
  1118. end
  1119. if string.find(lower,"/e erplay ") then
  1120.     idtoplay = string.gsub(lower,"/e erplay ","")
  1121.     for _,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  1122.         if (v:IsA("Tool") and v.Name == "BoomBox") then
  1123.             v.Parent = game.Players.LocalPlayer.Character
  1124.         end
  1125.     end
  1126.     wait(0.1)
  1127.     game.Players.LocalPlayer.Character.BoomBox.Remote:FireServer("PlaySong", fullyconvert(idtoplay))
  1128. end
  1129. if string.find(lower,"/e :erplay ") then
  1130.     idtoplay = string.gsub(lower,"/e :erplay ","")
  1131.     for _,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  1132.         if (v:IsA("Tool") and v.Name == "BoomBox") then
  1133.             v.Parent = game.Players.LocalPlayer.Character
  1134.         end
  1135.     end
  1136.     wait(0.1)
  1137.     game.Players.LocalPlayer.Character.BoomBox.Remote:FireServer("PlaySong", fullyconvert(idtoplay))
  1138. end
  1139.  
  1140.  
  1141.  
  1142. if string.find(lower,":deseat") then
  1143.     deseat(game.Workspace)        
  1144. end
  1145. if string.find(lower,"/e deseat") then
  1146.     deseat(game.Workspace)        
  1147. end
  1148. if string.find(lower,"/e :deseat") then
  1149.     deseat(game.Workspace)        
  1150. end
  1151.  
  1152.  
  1153. if string.find(lower,":reseat") then
  1154.     reseat(game.Lighting)        
  1155. end
  1156.  
  1157. if string.find(lower,"/e reseat") then
  1158.     reseat(game.Lighting)        
  1159. end
  1160.  
  1161. if string.find(lower,"/e :reseat") then
  1162.     reseat(game.Lighting)        
  1163. end
  1164.  
  1165.  
  1166.  
  1167. if string.find(lower,":defence") then
  1168.     defence(game.Workspace)    
  1169. end
  1170. if string.find(lower,"/e defence") then
  1171.     defence(game.Workspace)    
  1172. end
  1173. if string.find(lower,"/e :defence") then
  1174.     defence(game.Workspace)    
  1175. end
  1176.  
  1177. if string.find(lower,":refence") then
  1178.     refence(game.Lighting)    
  1179. end
  1180. if string.find(lower,"/e refence") then
  1181.     refence(game.Lighting)    
  1182. end
  1183. if string.find(lower,"/e :refence") then
  1184.     refence(game.Lighting)    
  1185. end
  1186.  
  1187.  
  1188.  
  1189. if string.find(lower,":cash") then
  1190. tracecash(game.Workspace)
  1191. end
  1192.  
  1193. if string.find(lower,"/e cash") then
  1194. tracecash(game.Workspace)
  1195. end
  1196.  
  1197. if string.find(lower,"/e :cash") then
  1198. tracecash(game.Workspace)
  1199. end
  1200.  
  1201.  
  1202.  
  1203. if string.find(lower,":togglewirerun") then
  1204.     if wirerunning == true then
  1205.         unwirerun(game.Workspace)
  1206.         wirerunning = false
  1207.     elseif wirerunning == false then
  1208.         wirerun(game.Workspace)
  1209.         wirerunning = true
  1210.     end    
  1211. end
  1212.  
  1213.  
  1214.  
  1215. if string.find(lower,":freeshoot") then
  1216.     freeshoot = true      
  1217. end
  1218.  
  1219. if string.find(lower,"/e freeshoot") then
  1220.     freeshoot = true        
  1221. end
  1222.  
  1223. if string.find(lower,"/e :freeshoot") then
  1224.     freeshoot = true      
  1225. end
  1226.  
  1227.  
  1228.  
  1229. if string.find(lower,":unfreeshoot") then
  1230.     freeshoot = false      
  1231. end
  1232. if string.find(lower,"/e unfreeshoot") then
  1233.     freeshoot = false      
  1234. end
  1235. if string.find(lower,"/e :unfreeshoot") then
  1236.     freeshoot = false    
  1237. end
  1238.  
  1239.  
  1240.  
  1241.  
  1242.  
  1243. if string.find(lower,":find ") then
  1244.     local playername = string.gsub(lower,":find ","")
  1245.     if string.lower(playername) == "target" then
  1246.     if  targetee then
  1247.     if targetee.Character then
  1248.  
  1249.         local billgui = Instance.new('BillboardGui', targetee.Character.Head)
  1250.         local textlab = Instance.new('TextLabel', billgui)
  1251.  
  1252.         billgui.Name = "ESP"
  1253.         billgui.Adornee  = epic
  1254.         billgui.AlwaysOnTop = true
  1255.         billgui.ExtentsOffset = Vector3.new(0, 1, 0)
  1256.         billgui.Size = UDim2.new(0, 5, 0, 5)
  1257.    
  1258.         textlab.Name = 'Target'
  1259.         textlab.BackgroundColor3 = Color3.new(255, 255, 255)
  1260.         textlab.BackgroundTransparency = 1
  1261.         textlab.BorderSizePixel = 0
  1262.         textlab.Position = UDim2.new(0, 0, 0, -40)
  1263.         textlab.Size = UDim2.new(1, 0, 10, 0)
  1264.         textlab.Visible = true
  1265.         textlab.ZIndex = 10
  1266.         textlab.Font = 'ArialBold'
  1267.         textlab.FontSize = 'Size14'
  1268.         textlab.Text = targetee.Name
  1269.         textlab.TextColor = BrickColor.new('Bright blue')
  1270.         textlab.TextStrokeColor3 = Color3.fromRGB(0,0,0)
  1271.         textlab.TextStrokeTransparency = 0.6
  1272.     end
  1273.     end
  1274.  
  1275.     else
  1276.         local player = findplayer(playername)
  1277.         if player ~= false then
  1278.             if player.Character then
  1279.            
  1280.             local billgui = Instance.new('BillboardGui', player.Character.Head)
  1281.             local textlab = Instance.new('TextLabel', billgui)
  1282.  
  1283.             billgui.Name = "ESP"
  1284.             billgui.Adornee  = epic
  1285.             billgui.AlwaysOnTop = true
  1286.             billgui.ExtentsOffset = Vector3.new(0, 1, 0)
  1287.             billgui.Size = UDim2.new(0, 5, 0, 5)
  1288.    
  1289.             textlab.Name = 'Player'
  1290.             textlab.BackgroundColor3 = Color3.new(255, 255, 255)
  1291.             textlab.BackgroundTransparency = 1
  1292.             textlab.BorderSizePixel = 0
  1293.             textlab.Position = UDim2.new(0, 0, 0, -40)
  1294.             textlab.Size = UDim2.new(1, 0, 10, 0)
  1295.             textlab.Visible = true
  1296.             textlab.ZIndex = 10
  1297.             textlab.Font = 'ArialBold'
  1298.             textlab.FontSize = 'Size14'
  1299.             textlab.Text = player.Name
  1300.             textlab.TextColor = BrickColor.new('Bright red')
  1301.             textlab.TextStrokeColor3 = Color3.fromRGB(0,0,0)
  1302.             textlab.TextStrokeTransparency = 0.6
  1303.             end
  1304.         end
  1305.     end
  1306. end
  1307.  
  1308.  
  1309.  
  1310. if string.find(lower,"/e find ") then
  1311.     local playername = string.gsub(lower,"/e find ","")
  1312.     if string.lower(playername) == "target" then
  1313.     if  targetee then
  1314.     if targetee.Character then
  1315.         local billgui = Instance.new('BillboardGui', targetee.Character.Head)
  1316.         local textlab = Instance.new('TextLabel', billgui)
  1317.  
  1318.         billgui.Name = "ESP"
  1319.         billgui.Adornee  = epic
  1320.         billgui.AlwaysOnTop = true
  1321.         billgui.ExtentsOffset = Vector3.new(0, 1, 0)
  1322.         billgui.Size = UDim2.new(0, 5, 0, 5)
  1323.    
  1324.         textlab.Name = 'Target'
  1325.         textlab.BackgroundColor3 = Color3.new(255, 255, 255)
  1326.         textlab.BackgroundTransparency = 1
  1327.         textlab.BorderSizePixel = 0
  1328.         textlab.Position = UDim2.new(0, 0, 0, -40)
  1329.         textlab.Size = UDim2.new(1, 0, 10, 0)
  1330.         textlab.Visible = true
  1331.         textlab.ZIndex = 10
  1332.         textlab.Font = 'ArialBold'
  1333.         textlab.FontSize = 'Size14'
  1334.         textlab.Text = targetee.Name
  1335.         textlab.TextColor = BrickColor.new('Bright blue')
  1336.         textlab.TextStrokeColor3 = Color3.fromRGB(0,0,0)
  1337.         textlab.TextStrokeTransparency = 0.6
  1338.     end
  1339.     end
  1340.  
  1341.     else
  1342.         local player = findplayer(playername)
  1343.         if player ~= false then
  1344.         if player.Character then            
  1345.  
  1346.             local billgui = Instance.new('BillboardGui', player.Character.Head)
  1347.             local textlab = Instance.new('TextLabel', billgui)
  1348.  
  1349.             billgui.Name = "ESP"
  1350.             billgui.Adornee  = epic
  1351.             billgui.AlwaysOnTop = true
  1352.             billgui.ExtentsOffset = Vector3.new(0, 1, 0)
  1353.             billgui.Size = UDim2.new(0, 5, 0, 5)
  1354.    
  1355.             textlab.Name = 'Player'
  1356.             textlab.BackgroundColor3 = Color3.new(255, 255, 255)
  1357.             textlab.BackgroundTransparency = 1
  1358.             textlab.BorderSizePixel = 0
  1359.             textlab.Position = UDim2.new(0, 0, 0, -40)
  1360.             textlab.Size = UDim2.new(1, 0, 10, 0)
  1361.             textlab.Visible = true
  1362.             textlab.ZIndex = 10
  1363.             textlab.Font = 'ArialBold'
  1364.             textlab.FontSize = 'Size14'
  1365.             textlab.Text = player.Name
  1366.             textlab.TextColor = BrickColor.new('Bright red')
  1367.             textlab.TextStrokeColor3 = Color3.fromRGB(0,0,0)
  1368.             textlab.TextStrokeTransparency = 0.6
  1369.         end
  1370.         end
  1371.     end
  1372. end
  1373.  
  1374.  
  1375.  
  1376.  
  1377. if string.find(lower,"/e :find ") then
  1378.     local playername = string.gsub(lower,"/e :find ","")
  1379.     if string.lower(playername) == "target" then
  1380.     if  targetee then
  1381.     if targetee.Character then
  1382.  
  1383.         local billgui = Instance.new('BillboardGui', targetee.Character.Head)
  1384.         local textlab = Instance.new('TextLabel', billgui)
  1385.  
  1386.         billgui.Name = "ESP"
  1387.         billgui.Adornee  = epic
  1388.         billgui.AlwaysOnTop = true
  1389.         billgui.ExtentsOffset = Vector3.new(0, 1, 0)
  1390.         billgui.Size = UDim2.new(0, 5, 0, 5)
  1391.    
  1392.         textlab.Name = 'Target'
  1393.         textlab.BackgroundColor3 = Color3.new(255, 255, 255)
  1394.         textlab.BackgroundTransparency = 1
  1395.         textlab.BorderSizePixel = 0
  1396.         textlab.Position = UDim2.new(0, 0, 0, -40)
  1397.         textlab.Size = UDim2.new(1, 0, 10, 0)
  1398.         textlab.Visible = true
  1399.         textlab.ZIndex = 10
  1400.         textlab.Font = 'ArialBold'
  1401.         textlab.FontSize = 'Size14'
  1402.         textlab.Text = targetee.Name
  1403.         textlab.TextColor = BrickColor.new('Bright blue')
  1404.         textlab.TextStrokeColor3 = Color3.fromRGB(0,0,0)
  1405.         textlab.TextStrokeTransparency = 0.6
  1406.     end
  1407.     end
  1408.  
  1409.     else
  1410.         local player = findplayer(playername)
  1411.         if player ~= false then
  1412.         if player.Character then
  1413.            
  1414.             local billgui = Instance.new('BillboardGui', player.Character.Head)
  1415.             local textlab = Instance.new('TextLabel', billgui)
  1416.  
  1417.             billgui.Name = "ESP"
  1418.             billgui.Adornee  = epic
  1419.             billgui.AlwaysOnTop = true
  1420.             billgui.ExtentsOffset = Vector3.new(0, 1, 0)
  1421.             billgui.Size = UDim2.new(0, 5, 0, 5)
  1422.    
  1423.             textlab.Name = 'Player'
  1424.             textlab.BackgroundColor3 = Color3.new(255, 255, 255)
  1425.             textlab.BackgroundTransparency = 1
  1426.             textlab.BorderSizePixel = 0
  1427.             textlab.Position = UDim2.new(0, 0, 0, -40)
  1428.             textlab.Size = UDim2.new(1, 0, 10, 0)
  1429.             textlab.Visible = true
  1430.             textlab.ZIndex = 10
  1431.             textlab.Font = 'ArialBold'
  1432.             textlab.FontSize = 'Size14'
  1433.             textlab.Text = player.Name
  1434.             textlab.TextColor = BrickColor.new('Bright red')
  1435.             textlab.TextStrokeColor3 = Color3.fromRGB(0,0,0)
  1436.             textlab.TextStrokeTransparency = 0.6
  1437.         end
  1438.         end
  1439.     end
  1440. end
  1441.  
  1442. if string.find(lower,":unfind ") then
  1443.         local playername = string.gsub(lower,":unfind ","")
  1444.         local player = findplayer(playername)
  1445.         if player ~= false then
  1446.         if player.Character then
  1447.                 if player.Character:FindFirstChild("Head") then
  1448.                     if player.Character.Head:FindFirstChild("ESP") then
  1449.                         player.Character.Head:FindFirstChild("ESP"):Destroy()
  1450.                     end
  1451.                 end
  1452.             end
  1453.         end
  1454. end
  1455.  
  1456. if string.find(lower,"/e unfind ") then
  1457.         local playername = string.gsub(lower,"/e unfind ","")
  1458.         local player = findplayer(playername)
  1459.         if player ~= false then
  1460.         if player.Character then
  1461.                 if player.Character:FindFirstChild("Head") then
  1462.                     if player.Character.Head:FindFirstChild("ESP") then
  1463.                         player.Character.Head:FindFirstChild("ESP"):Destroy()
  1464.                     end
  1465.                 end
  1466.             end
  1467.         end
  1468. end
  1469.  
  1470. if string.find(lower,"/e :unfind ") then
  1471.         local playername = string.gsub(lower,"/e :unfind ","")
  1472.         local player = findplayer(playername)
  1473.         if player ~= false then
  1474.         if player.Character then
  1475.                 if player.Character:FindFirstChild("Head") then
  1476.                     if player.Character.Head:FindFirstChild("ESP") then
  1477.                         player.Character.Head:FindFirstChild("ESP"):Destroy()
  1478.                     end
  1479.                 end
  1480.             end
  1481.         end
  1482. end
  1483.  
  1484.  
  1485.  
  1486. if string.find(lower,":planks") then
  1487.     plankfollow = true
  1488.     planksurf = false
  1489.     for i=1,#planks do
  1490.     if planks[i]:FindFirstChild("no") then
  1491.             planks[i]:FindFirstChild("no"):Destroy()
  1492.         end
  1493.         local keep = Instance.new("BodyPosition")
  1494.         keep.Parent = planks[i]
  1495.         keep.Name = "no"
  1496.         keep.P = 100
  1497.         keep.D = 50
  1498.         keep.Position = game.Players.LocalPlayer.Character.Torso.Position - Vector3.new(0,0,10)
  1499.     end
  1500. end
  1501.  
  1502. if string.find(lower,"/e planks") then
  1503.     plankfollow = true
  1504.     planksurf = false
  1505.     for i=1,#planks do
  1506.     if planks[i]:FindFirstChild("no") then
  1507.             planks[i]:FindFirstChild("no"):Destroy()
  1508.         end
  1509.         local keep = Instance.new("BodyPosition")
  1510.         keep.Parent = planks[i]
  1511.         keep.Name = "no"
  1512.         keep.P = 100
  1513.         keep.D = 50
  1514.         keep.Position = game.Players.LocalPlayer.Character.Torso.Position - Vector3.new(0,0,10)
  1515.     end
  1516. end
  1517.  
  1518. if string.find(lower,"/e :planks") then
  1519.     plankfollow = true
  1520.     planksurf = false
  1521.     for i=1,#planks do
  1522.     if planks[i]:FindFirstChild("no") then
  1523.             planks[i]:FindFirstChild("no"):Destroy()
  1524.         end
  1525.         local keep = Instance.new("BodyPosition")
  1526.         keep.Parent = planks[i]
  1527.         keep.Name = "no"
  1528.         keep.P = 100
  1529.         keep.D = 50
  1530.         keep.Position = game.Players.LocalPlayer.Character.Torso.Position - Vector3.new(0,0,10)
  1531.     end
  1532. end
  1533.  
  1534. if string.find(lower,":unplanks") then
  1535.     plankfollow = false
  1536.     planksurf = false
  1537.     for i=1,#planks do
  1538.         if planks[1]:FindFirstChild("no") then
  1539.             planks[1]:FindFirstChild("no"):Destroy()
  1540.         end
  1541.     end
  1542. end
  1543.  
  1544. if string.find(lower,"/e unplanks") then
  1545.     plankfollow = false
  1546.     planksurf = false
  1547.     for i=1,#planks do
  1548.         if planks[1]:FindFirstChild("no") then
  1549.             planks[1]:FindFirstChild("no"):Destroy()
  1550.         end
  1551.     end
  1552. end
  1553.  
  1554. if string.find(lower,"/e :unplanks") then
  1555.     plankfollow = false
  1556.     planksurf = false
  1557.     for i=1,#planks do
  1558.         if planks[1]:FindFirstChild("no") then
  1559.             planks[1]:FindFirstChild("no"):Destroy()
  1560.         end
  1561.     end
  1562. end
  1563.  
  1564.  
  1565.  
  1566. if string.find(lower,":planksurf") then
  1567.     plankfollow = false
  1568.     planksurf = true
  1569.     for i=1,#planks do
  1570.         if planks[i]:FindFirstChild("no") then
  1571.             planks[i]:FindFirstChild("no"):Destroy()
  1572.         end
  1573.         local keep = Instance.new("BodyPosition")
  1574.         keep.Parent = planks[i]
  1575.         keep.Name = "no"
  1576.         keep.P = 5000
  1577.         keep.D = 15
  1578.         keep.Position = game.Players.LocalPlayer.Character.Torso.Position - Vector3.new(0,0,10)
  1579.     end
  1580. end
  1581.  
  1582. if string.find(lower,"/e planksurf") then
  1583.     plankfollow = false
  1584.     planksurf = true
  1585.     for i=1,#planks do
  1586.         if planks[i]:FindFirstChild("no") then
  1587.             planks[i]:FindFirstChild("no"):Destroy()
  1588.         end
  1589.         local keep = Instance.new("BodyPosition")
  1590.         keep.Parent = planks[i]
  1591.         keep.Name = "no"
  1592.         keep.P = 5000
  1593.         keep.D = 15
  1594.         keep.Position = game.Players.LocalPlayer.Character.Torso.Position - Vector3.new(0,0,10)
  1595.     end
  1596. end
  1597.  
  1598. if string.find(lower,"/e :planksurf") then
  1599.     plankfollow = false
  1600.     planksurf = true
  1601.     for i=1,#planks do
  1602.         if planks[i]:FindFirstChild("no") then
  1603.             planks[i]:FindFirstChild("no"):Destroy()
  1604.         end
  1605.         local keep = Instance.new("BodyPosition")
  1606.         keep.Parent = planks[i]
  1607.         keep.Name = "no"
  1608.         keep.P = 5000
  1609.         keep.D = 15
  1610.         keep.Position = game.Players.LocalPlayer.Character.Torso.Position - Vector3.new(0,0,10)
  1611.     end
  1612. end
  1613.  
  1614.  
  1615. if string.sub(msg, 1, 10) == ":tostreets" then
  1616. TeleportService:Teleport(455366377, game.Players.LocalPlayer)
  1617. end
  1618. if string.sub(msg, 1, 12) == "/e tostreets" then
  1619. TeleportService:Teleport(455366377, game.Players.LocalPlayer)
  1620. end
  1621. if string.sub(msg, 1, 13) == "/e :tostreets" then
  1622. TeleportService:Teleport(455366377, game.Players.LocalPlayer)
  1623. end
  1624.  
  1625.  
  1626. if string.sub(msg, 1, 9) == ":toprison" then
  1627. TeleportService:Teleport(4669040, game.Players.LocalPlayer)
  1628. end
  1629. if string.sub(msg, 1, 11) == "/e toprison" then
  1630. TeleportService:Teleport(4669040, game.Players.LocalPlayer)
  1631. end
  1632. if string.sub(msg, 1, 12) == "/e :toprison" then
  1633. TeleportService:Teleport(4669040, game.Players.LocalPlayer)
  1634. end
  1635.  
  1636. if string.find(lower,":hidegun") then
  1637.     if game.Players.LocalPlayer.Character then
  1638.         if game.Players.LocalPlayer.Character:FindFirstChildOfClass("Tool") then
  1639.             if game.Players.LocalPlayer.Character:FindFirstChildOfClass("Tool"):FindFirstChild("Fire") then
  1640.                 invis(game.Players.LocalPlayer.Character:FindFirstChildOfClass("Tool"))
  1641.             end
  1642.         end
  1643.     end
  1644. end
  1645.  
  1646. if string.find(lower,"/e hidegun") then
  1647.     if game.Players.LocalPlayer.Character then
  1648.         if game.Players.LocalPlayer.Character:FindFirstChildOfClass("Tool") then
  1649.             if game.Players.LocalPlayer.Character:FindFirstChildOfClass("Tool"):FindFirstChild("Fire") then
  1650.                 invis(game.Players.LocalPlayer.Character:FindFirstChildOfClass("Tool"))
  1651.             end
  1652.         end
  1653.     end
  1654. end
  1655.  
  1656. if string.find(lower,"/e :hidegun") then
  1657.     if game.Players.LocalPlayer.Character then
  1658.         if game.Players.LocalPlayer.Character:FindFirstChildOfClass("Tool") then
  1659.             if game.Players.LocalPlayer.Character:FindFirstChildOfClass("Tool"):FindFirstChild("Fire") then
  1660.                 invis(game.Players.LocalPlayer.Character:FindFirstChildOfClass("Tool"))
  1661.             end
  1662.         end
  1663.     end
  1664. end
  1665.  
  1666.  
  1667. if string.find(lower,":rmesh") then
  1668.     if game.Players.LocalPlayer.Character then
  1669.         for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  1670.             if v:IsA("Tool") then
  1671.                 demesh(v)
  1672.             end
  1673.         end
  1674.     end
  1675. end
  1676.  
  1677. if string.find(lower,"/e rmesh") then
  1678.     if game.Players.LocalPlayer.Character then
  1679.         for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  1680.             if v:IsA("Tool") then
  1681.                 demesh(v)
  1682.             end
  1683.         end
  1684.     end
  1685. end
  1686.  
  1687. if string.find(lower,"/e :rmesh") then
  1688.     if game.Players.LocalPlayer.Character then
  1689.         for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  1690.             if v:IsA("Tool") then
  1691.                 demesh(v)
  1692.             end
  1693.         end
  1694.     end
  1695. end
  1696.  
  1697. if string.find(lower,":demesh") then
  1698.     if game.Players.LocalPlayer.Character then
  1699.         for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  1700.             if v:IsA("Tool") then
  1701.                 demesh(v)
  1702.             end
  1703.         end
  1704.     end
  1705. end
  1706.  
  1707. if string.find(lower,"/e demesh") then
  1708.     if game.Players.LocalPlayer.Character then
  1709.         for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  1710.             if v:IsA("Tool") then
  1711.                 demesh(v)
  1712.             end
  1713.         end
  1714.     end
  1715. end
  1716.  
  1717. if string.find(lower,"/e :demesh") then
  1718.     if game.Players.LocalPlayer.Character then
  1719.         for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  1720.             if v:IsA("Tool") then
  1721.                 demesh(v)
  1722.             end
  1723.         end
  1724.     end
  1725. end
  1726.  
  1727. if lower == ":rface" then
  1728.     if game.Players.LocalPlayer.Character ~= nil then
  1729.         if game.Players.LocalPlayer.Character:FindFirstChild("Head") then
  1730.             if game.Players.LocalPlayer.Character.Head:FindFirstChildOfClass("Decal") then
  1731.                 game.Players.LocalPlayer.Character.Head:FindFirstChildOfClass("Decal").Parent = nil
  1732.             end
  1733.         end
  1734.     end
  1735. end
  1736.  
  1737. if lower == "/e rface" then
  1738.     if game.Players.LocalPlayer.Character ~= nil then
  1739.         if game.Players.LocalPlayer.Character:FindFirstChild("Head") then
  1740.             if game.Players.LocalPlayer.Character.Head:FindFirstChildOfClass("Decal") then
  1741.                 game.Players.LocalPlayer.Character.Head:FindFirstChildOfClass("Decal").Parent = nil
  1742.             end
  1743.         end
  1744.     end
  1745. end
  1746.  
  1747. if lower == "/e :rface" then
  1748.     if game.Players.LocalPlayer.Character ~= nil then
  1749.         if game.Players.LocalPlayer.Character:FindFirstChild("Head") then
  1750.             if game.Players.LocalPlayer.Character.Head:FindFirstChildOfClass("Decal") then
  1751.                 game.Players.LocalPlayer.Character.Head:FindFirstChildOfClass("Decal").Parent = nil
  1752.             end
  1753.         end
  1754.     end
  1755. end
  1756.  
  1757.  
  1758.  
  1759. if lower == ":faceless" then
  1760.     if game.Players.LocalPlayer.Character ~= nil then
  1761.         if game.Players.LocalPlayer.Character:FindFirstChild("Head") then
  1762.             if game.Players.LocalPlayer.Character.Head:FindFirstChildOfClass("Decal") then
  1763.                 game.Players.LocalPlayer.Character.Head:FindFirstChildOfClass("Decal").Parent = nil
  1764.             end
  1765.         end
  1766.     end
  1767. end
  1768.  
  1769.  
  1770. if lower == "/e faceless" then
  1771.     if game.Players.LocalPlayer.Character ~= nil then
  1772.         if game.Players.LocalPlayer.Character:FindFirstChild("Head") then
  1773.             if game.Players.LocalPlayer.Character.Head:FindFirstChildOfClass("Decal") then
  1774.                 game.Players.LocalPlayer.Character.Head:FindFirstChildOfClass("Decal").Parent = nil
  1775.             end
  1776.         end
  1777.     end
  1778. end
  1779.  
  1780.  
  1781.  
  1782. if lower == "/e :faceless" then
  1783.     if game.Players.LocalPlayer.Character ~= nil then
  1784.         if game.Players.LocalPlayer.Character:FindFirstChild("Head") then
  1785.             if game.Players.LocalPlayer.Character.Head:FindFirstChildOfClass("Decal") then
  1786.                 game.Players.LocalPlayer.Character.Head:FindFirstChildOfClass("Decal").Parent = nil
  1787.             end
  1788.         end
  1789.     end
  1790. end
  1791.  
  1792.  
  1793. if lower == ":rlegs" then
  1794.     if game.Players.LocalPlayer.Character ~= nil then
  1795.         if game.Players.LocalPlayer.Character:FindFirstChild("Left Leg") and game.Players.LocalPlayer.Character:FindFirstChild("Right Leg") then
  1796.             game.Players.LocalPlayer.Character:FindFirstChild("Left Leg").Parent = nil
  1797.             game.Players.LocalPlayer.Character:FindFirstChild("Right Leg").Parent = nil
  1798.         end
  1799.     end
  1800. end
  1801.  
  1802. if lower == "/e rlegs" then
  1803.     if game.Players.LocalPlayer.Character ~= nil then
  1804.         if game.Players.LocalPlayer.Character:FindFirstChild("Left Leg") and game.Players.LocalPlayer.Character:FindFirstChild("Right Leg") then
  1805.             game.Players.LocalPlayer.Character:FindFirstChild("Left Leg").Parent = nil
  1806.             game.Players.LocalPlayer.Character:FindFirstChild("Right Leg").Parent = nil
  1807.         end
  1808.     end
  1809. end
  1810.  
  1811. if lower == "/e :rlegs" then
  1812.     if game.Players.LocalPlayer.Character ~= nil then
  1813.         if game.Players.LocalPlayer.Character:FindFirstChild("Left Leg") and game.Players.LocalPlayer.Character:FindFirstChild("Right Leg") then
  1814.             game.Players.LocalPlayer.Character:FindFirstChild("Left Leg").Parent = nil
  1815.             game.Players.LocalPlayer.Character:FindFirstChild("Right Leg").Parent = nil
  1816.         end
  1817.     end
  1818. end
  1819.  
  1820.  
  1821. if lower == ":eboombox" then
  1822.     if enhancedboombox == false then
  1823.         enhancedboombox = true
  1824.         loadstring(game:HttpGet(('https://pastebin.com/raw/BNVEDnAh'),true))() -- lol
  1825.     else
  1826.          print("Enhanced boombox already injected!")
  1827.     end
  1828. end
  1829.  
  1830. if lower == "/e eboombox" then
  1831.     if enhancedboombox == false then
  1832.         enhancedboombox = true
  1833.         loadstring(game:HttpGet(('https://pastebin.com/raw/BNVEDnAh'),true))() -- lol
  1834.     else
  1835.          print("Enhanced boombox already injected!")
  1836.     end
  1837. end
  1838.  
  1839.  
  1840. if lower == "/e :eboombox" then
  1841.     if enhancedboombox == false then
  1842.         enhancedboombox = true
  1843.         loadstring(game:HttpGet(('https://pastebin.com/raw/BNVEDnAh'),true))() -- lol
  1844.     else
  1845.          print("Enhanced boombox already injected!")
  1846.     end
  1847. end
  1848.  
  1849.  
  1850.  
  1851.  
  1852. if lower == ":stealthshotty" then
  1853.  
  1854. if game.Players.LocalPlayer.Backpack:FindFirstChild("Shotty") then
  1855.      game.Players.LocalPlayer.Backpack:FindFirstChild("Shotty").Parent = game.Players.LocalPlayer.Character
  1856. end
  1857. wait(0.1)
  1858. invis(game.Players.LocalPlayer.Character.Shotty)
  1859. game.Players.LocalPlayer.Character.Shotty.Grip = CFrame.new(-0.2,0,-3)
  1860.  
  1861.  
  1862. game.Players.LocalPlayer.Character.Shotty.Equipped:Connect(function()
  1863.     wait()
  1864.     local AnimationTracks = game.Players.LocalPlayer.Character.Humanoid:GetPlayingAnimationTracks()
  1865.     for i, track in pairs (AnimationTracks) do
  1866.         if track.Name == "Idle" then
  1867.             track:Stop()
  1868.         end
  1869.     end
  1870.     wait(0.7)
  1871.     local AnimationTracks = game.Players.LocalPlayer.Character.Humanoid:GetPlayingAnimationTracks()
  1872.     for i, track in pairs (AnimationTracks) do
  1873.         if track.Name == "Idle" or string.find(track.Name, "Animation") then
  1874.             track:Stop()
  1875.         end
  1876.     end
  1877. end)
  1878. game.Players.LocalPlayer.Character.Shotty.Activated:Connect(function()
  1879.     wait()
  1880.     local AnimationTracks = game.Players.LocalPlayer.Character.Humanoid:GetPlayingAnimationTracks()
  1881.     for i, track in pairs (AnimationTracks) do
  1882.         if track.Name == "Fires" then
  1883.             track:Stop()
  1884.         end
  1885.     end
  1886. end)
  1887.  
  1888. wait(1.5)
  1889. if game.Players.LocalPlayer.Character:FindFirstChild("Shotty") then
  1890.     game.Players.LocalPlayer.Character.Shotty.Parent = game.Players.LocalPlayer.Backpack
  1891. end
  1892.  
  1893.  
  1894. end
  1895.  
  1896. if lower == "/e stealthshotty" then
  1897.  
  1898. if game.Players.LocalPlayer.Backpack:FindFirstChild("Shotty") then
  1899.      game.Players.LocalPlayer.Backpack:FindFirstChild("Shotty").Parent = game.Players.LocalPlayer.Character
  1900. end
  1901. wait(0.1)
  1902. invis(game.Players.LocalPlayer.Character.Shotty)
  1903. game.Players.LocalPlayer.Character.Shotty.Grip = CFrame.new(-0.2,0,-3)
  1904.  
  1905.  
  1906. game.Players.LocalPlayer.Character.Shotty.Equipped:Connect(function()
  1907.     wait()
  1908.     local AnimationTracks = game.Players.LocalPlayer.Character.Humanoid:GetPlayingAnimationTracks()
  1909.     for i, track in pairs (AnimationTracks) do
  1910.         if track.Name == "Idle" then
  1911.             track:Stop()
  1912.         end
  1913.     end
  1914.     wait(0.7)
  1915.     local AnimationTracks = game.Players.LocalPlayer.Character.Humanoid:GetPlayingAnimationTracks()
  1916.     for i, track in pairs (AnimationTracks) do
  1917.         if track.Name == "Idle" or string.find(track.Name, "Animation") then
  1918.             track:Stop()
  1919.         end
  1920.     end
  1921. end)
  1922. game.Players.LocalPlayer.Character.Shotty.Activated:Connect(function()
  1923.     wait()
  1924.     local AnimationTracks = game.Players.LocalPlayer.Character.Humanoid:GetPlayingAnimationTracks()
  1925.     for i, track in pairs (AnimationTracks) do
  1926.         if track.Name == "Fires" then
  1927.             track:Stop()
  1928.         end
  1929.     end
  1930. end)
  1931.  
  1932. wait(1.5)
  1933. if game.Players.LocalPlayer.Character:FindFirstChild("Shotty") then
  1934.     game.Players.LocalPlayer.Character.Shotty.Parent = game.Players.LocalPlayer.Backpack
  1935. end
  1936.  
  1937.  
  1938. end
  1939.  
  1940. if lower == "/e :stealthshotty" then
  1941.  
  1942. if game.Players.LocalPlayer.Backpack:FindFirstChild("Shotty") then
  1943.      game.Players.LocalPlayer.Backpack:FindFirstChild("Shotty").Parent = game.Players.LocalPlayer.Character
  1944. end
  1945. wait(0.1)
  1946. invis(game.Players.LocalPlayer.Character.Shotty)
  1947. game.Players.LocalPlayer.Character.Shotty.Grip = CFrame.new(-0.2,0,-3)
  1948.  
  1949.  
  1950. game.Players.LocalPlayer.Character.Shotty.Equipped:Connect(function()
  1951.     wait()
  1952.     local AnimationTracks = game.Players.LocalPlayer.Character.Humanoid:GetPlayingAnimationTracks()
  1953.     for i, track in pairs (AnimationTracks) do
  1954.         if track.Name == "Idle" then
  1955.             track:Stop()
  1956.         end
  1957.     end
  1958.     wait(0.7)
  1959.     local AnimationTracks = game.Players.LocalPlayer.Character.Humanoid:GetPlayingAnimationTracks()
  1960.     for i, track in pairs (AnimationTracks) do
  1961.         if track.Name == "Idle" or string.find(track.Name, "Animation") then
  1962.             track:Stop()
  1963.         end
  1964.     end
  1965. end)
  1966. game.Players.LocalPlayer.Character.Shotty.Activated:Connect(function()
  1967.     wait()
  1968.     local AnimationTracks = game.Players.LocalPlayer.Character.Humanoid:GetPlayingAnimationTracks()
  1969.     for i, track in pairs (AnimationTracks) do
  1970.         if track.Name == "Fires" then
  1971.             track:Stop()
  1972.         end
  1973.     end
  1974. end)
  1975.  
  1976. wait(1.5)
  1977. if game.Players.LocalPlayer.Character:FindFirstChild("Shotty") then
  1978.     game.Players.LocalPlayer.Character.Shotty.Parent = game.Players.LocalPlayer.Backpack
  1979. end
  1980.  
  1981.  
  1982. end
  1983.  
  1984.  
  1985.  
  1986.  
  1987. if lower == ":stealthuzi" then
  1988.  
  1989. if game.Players.LocalPlayer.Backpack:FindFirstChild("Uzi") then
  1990.      game.Players.LocalPlayer.Backpack:FindFirstChild("Uzi").Parent = game.Players.LocalPlayer.Character
  1991. end
  1992. wait(0.1)
  1993. invis(game.Players.LocalPlayer.Character.Uzi)
  1994. game.Players.LocalPlayer.Character.Uzi.Grip = CFrame.new(-0.2,0,-3)
  1995.  
  1996.  
  1997. game.Players.LocalPlayer.Character.Uzi.Equipped:Connect(function()
  1998.     wait()
  1999.     local AnimationTracks = game.Players.LocalPlayer.Character.Humanoid:GetPlayingAnimationTracks()
  2000.     for i, track in pairs (AnimationTracks) do
  2001.         if track.Name == "Idle" or string.find(track.Name, "Animation") then
  2002.             track:Stop()
  2003.         end
  2004.     end
  2005.     wait(0.3)
  2006.     local AnimationTracks = game.Players.LocalPlayer.Character.Humanoid:GetPlayingAnimationTracks()
  2007.     for i, track in pairs (AnimationTracks) do
  2008.         if track.Name == "Idle" or string.find(track.Name, "Animation") then
  2009.             track:Stop()
  2010.         end
  2011.     end
  2012. end)
  2013. game.Players.LocalPlayer.Character.Uzi.Activated:Connect(function()
  2014.     wait()
  2015.     local AnimationTracks = game.Players.LocalPlayer.Character.Humanoid:GetPlayingAnimationTracks()
  2016.     for i, track in pairs (AnimationTracks) do
  2017.         if track.Name == "Fires" then
  2018.             track:Stop()
  2019.         end
  2020.     end
  2021. end)
  2022.  
  2023. wait(1.5)
  2024. if game.Players.LocalPlayer.Character:FindFirstChild("Uzi") then
  2025.     game.Players.LocalPlayer.Character.Uzi.Parent = game.Players.LocalPlayer.Backpack
  2026. end
  2027.  
  2028.  
  2029. end
  2030.  
  2031.  
  2032.  
  2033.  
  2034. if lower == "/e stealthuzi" then
  2035.  
  2036. if game.Players.LocalPlayer.Backpack:FindFirstChild("Uzi") then
  2037.      game.Players.LocalPlayer.Backpack:FindFirstChild("Uzi").Parent = game.Players.LocalPlayer.Character
  2038. end
  2039. wait(0.1)
  2040. invis(game.Players.LocalPlayer.Character.Uzi)
  2041. game.Players.LocalPlayer.Character.Uzi.Grip = CFrame.new(-0.2,0,-3)
  2042.  
  2043.  
  2044. game.Players.LocalPlayer.Character.Uzi.Equipped:Connect(function()
  2045.     wait()
  2046.     local AnimationTracks = game.Players.LocalPlayer.Character.Humanoid:GetPlayingAnimationTracks()
  2047.     for i, track in pairs (AnimationTracks) do
  2048.         if track.Name == "Idle" or string.find(track.Name, "Animation") then
  2049.             track:Stop()
  2050.         end
  2051.     end
  2052.     wait(0.3)
  2053.     local AnimationTracks = game.Players.LocalPlayer.Character.Humanoid:GetPlayingAnimationTracks()
  2054.     for i, track in pairs (AnimationTracks) do
  2055.         if track.Name == "Idle" or string.find(track.Name, "Animation") then
  2056.             track:Stop()
  2057.         end
  2058.     end
  2059. end)
  2060. game.Players.LocalPlayer.Character.Uzi.Activated:Connect(function()
  2061.     wait()
  2062.     local AnimationTracks = game.Players.LocalPlayer.Character.Humanoid:GetPlayingAnimationTracks()
  2063.     for i, track in pairs (AnimationTracks) do
  2064.         if track.Name == "Fires" then
  2065.             track:Stop()
  2066.         end
  2067.     end
  2068. end)
  2069.  
  2070. wait(1.5)
  2071. if game.Players.LocalPlayer.Character:FindFirstChild("Uzi") then
  2072.     game.Players.LocalPlayer.Character.Uzi.Parent = game.Players.LocalPlayer.Backpack
  2073. end
  2074.  
  2075.  
  2076. end
  2077.  
  2078.  
  2079.  
  2080. if lower == "/e :stealthuzi" then
  2081.  
  2082. if game.Players.LocalPlayer.Backpack:FindFirstChild("Uzi") then
  2083.      game.Players.LocalPlayer.Backpack:FindFirstChild("Uzi").Parent = game.Players.LocalPlayer.Character
  2084. end
  2085. wait(0.1)
  2086. invis(game.Players.LocalPlayer.Character.Uzi)
  2087. game.Players.LocalPlayer.Character.Uzi.Grip = CFrame.new(-0.2,0,-3)
  2088.  
  2089.  
  2090. game.Players.LocalPlayer.Character.Uzi.Equipped:Connect(function()
  2091.     wait()
  2092.     local AnimationTracks = game.Players.LocalPlayer.Character.Humanoid:GetPlayingAnimationTracks()
  2093.     for i, track in pairs (AnimationTracks) do
  2094.         if track.Name == "Idle" or string.find(track.Name, "Animation") then
  2095.             track:Stop()
  2096.         end
  2097.     end
  2098.     wait(0.3)
  2099.     local AnimationTracks = game.Players.LocalPlayer.Character.Humanoid:GetPlayingAnimationTracks()
  2100.     for i, track in pairs (AnimationTracks) do
  2101.         if track.Name == "Idle" or string.find(track.Name, "Animation") then
  2102.             track:Stop()
  2103.         end
  2104.     end
  2105. end)
  2106. game.Players.LocalPlayer.Character.Uzi.Activated:Connect(function()
  2107.     wait()
  2108.     local AnimationTracks = game.Players.LocalPlayer.Character.Humanoid:GetPlayingAnimationTracks()
  2109.     for i, track in pairs (AnimationTracks) do
  2110.         if track.Name == "Fires" then
  2111.             track:Stop()
  2112.         end
  2113.     end
  2114. end)
  2115.  
  2116. wait(1.5)
  2117. if game.Players.LocalPlayer.Character:FindFirstChild("Uzi") then
  2118.     game.Players.LocalPlayer.Character.Uzi.Parent = game.Players.LocalPlayer.Backpack
  2119. end
  2120.  
  2121.  
  2122. end
  2123.  
  2124.  
  2125.  
  2126.  
  2127.  
  2128. if string.find(lower,":spray ") then
  2129.     local playername = string.gsub(lower,":spray ","")
  2130.     local tarplayer = findplayer(playername)
  2131.     if tarplayer ~= false then
  2132.         if game.Workspace:FindFirstChild(tarplayer.Name.."Spray") then
  2133.             if game.Workspace:FindFirstChild(tarplayer.Name.."Spray"):FindFirstChildOfClass("Decal") then
  2134.                 print(tostring(game.Workspace:FindFirstChild(tarplayer.Name.."Spray"):FindFirstChildOfClass("Decal").Texture))
  2135.             end
  2136.         end
  2137.     end
  2138. end
  2139.  
  2140. if string.find(lower,"/e spray ") then
  2141.     local playername = string.gsub(lower,"/e spray ","")
  2142.     local tarplayer = findplayer(playername)
  2143.     if tarplayer ~= false then
  2144.         if game.Workspace:FindFirstChild(tarplayer.Name.."Spray") then
  2145.             if game.Workspace:FindFirstChild(tarplayer.Name.."Spray"):FindFirstChildOfClass("Decal") then
  2146.                 print(tostring(game.Workspace:FindFirstChild(tarplayer.Name.."Spray"):FindFirstChildOfClass("Decal").Texture))
  2147.             end
  2148.         end
  2149.     end
  2150. end
  2151.  
  2152. if string.find(lower,"/e :spray ") then
  2153.     local playername = string.gsub(lower,"/e :spray ","")
  2154.     local tarplayer = findplayer(playername)
  2155.     if tarplayer ~= false then
  2156.         if game.Workspace:FindFirstChild(tarplayer.Name.."Spray") then
  2157.             if game.Workspace:FindFirstChild(tarplayer.Name.."Spray"):FindFirstChildOfClass("Decal") then
  2158.                 print(tostring(game.Workspace:FindFirstChild(tarplayer.Name.."Spray"):FindFirstChildOfClass("Decal").Texture))
  2159.             end
  2160.         end
  2161.     end
  2162. end
  2163.  
  2164. if string.find(lower,":stealspray ") then
  2165.     local playername = string.gsub(lower,":stealspray ","")
  2166.     local tarplayer = findplayer(playername)
  2167.     if tarplayer ~= false then
  2168.         if game.Workspace:FindFirstChild(tarplayer.Name.."Spray") then
  2169.             if game.Workspace:FindFirstChild(tarplayer.Name.."Spray"):FindFirstChildOfClass("Decal") then
  2170.                 print(tostring(game.Workspace:FindFirstChild(tarplayer.Name.."Spray"):FindFirstChildOfClass("Decal").Texture))
  2171.             end
  2172.         end
  2173.     end
  2174. end
  2175.  
  2176. if string.find(lower,"/e stealspray ") then
  2177.     local playername = string.gsub(lower,"/e stealspray ","")
  2178.     local tarplayer = findplayer(playername)
  2179.     if tarplayer ~= false then
  2180.         if game.Workspace:FindFirstChild(tarplayer.Name.."Spray") then
  2181.             if game.Workspace:FindFirstChild(tarplayer.Name.."Spray"):FindFirstChildOfClass("Decal") then
  2182.                 print(tostring(game.Workspace:FindFirstChild(tarplayer.Name.."Spray"):FindFirstChildOfClass("Decal").Texture))
  2183.             end
  2184.         end
  2185.     end
  2186. end
  2187.  
  2188. if string.find(lower,"/e :stealspray ") then
  2189.     local playername = string.gsub(lower,"/e :stealspray ","")
  2190.     local tarplayer = findplayer(playername)
  2191.     if tarplayer ~= false then
  2192.         if game.Workspace:FindFirstChild(tarplayer.Name.."Spray") then
  2193.             if game.Workspace:FindFirstChild(tarplayer.Name.."Spray"):FindFirstChildOfClass("Decal") then
  2194.                 print(tostring(game.Workspace:FindFirstChild(tarplayer.Name.."Spray"):FindFirstChildOfClass("Decal").Texture))
  2195.             end
  2196.         end
  2197.     end
  2198. end
  2199.  
  2200.  
  2201. if string.find(lower,":song ") then
  2202.     local playername = string.gsub(lower,":song ","")
  2203.     local tarplayer = findplayer(playername)
  2204.     if tarplayer ~= false then
  2205.         if tarplayer.Character ~= nil then
  2206.             if tarplayer.Character:FindFirstChild("Torso") then
  2207.                 if tarplayer.Character.Torso:FindFirstChildOfClass("Sound") then
  2208.                     print(tarplayer.Name.." : "..tostring(tarplayer.Character.Torso:FindFirstChildOfClass("Sound").SoundId))
  2209.                 end
  2210.             end
  2211.         end
  2212.     end
  2213. end
  2214.  
  2215. if string.find(lower,"/e song ") then
  2216.     local playername = string.gsub(lower,"/e song ","")
  2217.     local tarplayer = findplayer(playername)
  2218.     if tarplayer ~= false then
  2219.         if tarplayer.Character ~= nil then
  2220.             if tarplayer.Character:FindFirstChild("Torso") then
  2221.                 if tarplayer.Character.Torso:FindFirstChildOfClass("Sound") then
  2222.                     print(tarplayer.Name.." : "..tostring(tarplayer.Character.Torso:FindFirstChildOfClass("Sound").SoundId))
  2223.                 end
  2224.             end
  2225.         end
  2226.     end
  2227. end
  2228.  
  2229. if string.find(lower,"/e :song ") then
  2230.     local playername = string.gsub(lower,"/e :song ","")
  2231.     local tarplayer = findplayer(playername)
  2232.     if tarplayer ~= false then
  2233.         if tarplayer.Character ~= nil then
  2234.             if tarplayer.Character:FindFirstChild("Torso") then
  2235.                 if tarplayer.Character.Torso:FindFirstChildOfClass("Sound") then
  2236.                     print(tarplayer.Name.." : "..tostring(tarplayer.Character.Torso:FindFirstChildOfClass("Sound").SoundId))
  2237.                 end
  2238.             end
  2239.         end
  2240.     end
  2241. end
  2242.  
  2243.  
  2244. if string.find(lower,":stealsong ") then
  2245.     local playername = string.gsub(lower,":stealsong ","")
  2246.     local tarplayer = findplayer(playername)
  2247.     if tarplayer ~= false then
  2248.         if tarplayer.Character ~= nil then
  2249.             if tarplayer.Character:FindFirstChild("Torso") then
  2250.                 if tarplayer.Character.Torso:FindFirstChildOfClass("Sound") then
  2251.                     print(tarplayer.Name.." : "..tostring(tarplayer.Character.Torso:FindFirstChildOfClass("Sound").SoundId))
  2252.                 end
  2253.             end
  2254.         end
  2255.     end
  2256. end
  2257.  
  2258. if string.find(lower,"/e stealsong ") then
  2259.     local playername = string.gsub(lower,"/e stealsong ","")
  2260.     local tarplayer = findplayer(playername)
  2261.     if tarplayer ~= false then
  2262.         if tarplayer.Character ~= nil then
  2263.             if tarplayer.Character:FindFirstChild("Torso") then
  2264.                 if tarplayer.Character.Torso:FindFirstChildOfClass("Sound") then
  2265.                     print(tarplayer.Name.." : "..tostring(tarplayer.Character.Torso:FindFirstChildOfClass("Sound").SoundId))
  2266.                 end
  2267.             end
  2268.         end
  2269.     end
  2270. end
  2271.  
  2272. if string.find(lower,"/e :stealsong ") then
  2273.     local playername = string.gsub(lower,"/e :stealsong ","")
  2274.     local tarplayer = findplayer(playername)
  2275.     if tarplayer ~= false then
  2276.         if tarplayer.Character ~= nil then
  2277.             if tarplayer.Character:FindFirstChild("Torso") then
  2278.                 if tarplayer.Character.Torso:FindFirstChildOfClass("Sound") then
  2279.                     print(tarplayer.Name.." : "..tostring(tarplayer.Character.Torso:FindFirstChildOfClass("Sound").SoundId))
  2280.                 end
  2281.             end
  2282.         end
  2283.     end
  2284. end
  2285.  
  2286.  
  2287. if lower == ":stopanims" then
  2288.     local AnimationTracks = game.Players.LocalPlayer.Character.Humanoid:GetPlayingAnimationTracks()
  2289.     for i, track in pairs (AnimationTracks) do
  2290.         track:Stop()
  2291.     end
  2292. end
  2293.  
  2294. if lower == "/e stopanims" then
  2295.     local AnimationTracks = game.Players.LocalPlayer.Character.Humanoid:GetPlayingAnimationTracks()
  2296.     for i, track in pairs (AnimationTracks) do
  2297.         track:Stop()
  2298.     end
  2299. end
  2300.  
  2301. if lower == "/e :stopanims" then
  2302.     local AnimationTracks = game.Players.LocalPlayer.Character.Humanoid:GetPlayingAnimationTracks()
  2303.     for i, track in pairs (AnimationTracks) do
  2304.         track:Stop()
  2305.     end
  2306. end
  2307.  
  2308. if lower == ":god" then
  2309.     godmode = true
  2310.     if game.Players.LocalPlayer.Character ~= nil then
  2311.         game.Players.LocalPlayer.Character:BreakJoints()
  2312.     end
  2313. end
  2314. if lower == "/e god" then
  2315.     godmode = true
  2316.     if game.Players.LocalPlayer.Character ~= nil then
  2317.         game.Players.LocalPlayer.Character:BreakJoints()
  2318.     end
  2319. end
  2320. if lowerf == "/e :god" then
  2321.     godmode = true
  2322.     if game.Players.LocalPlayer.Character ~= nil then
  2323.         game.Players.LocalPlayer.Character:BreakJoints()
  2324.     end
  2325. end
  2326.  
  2327.  
  2328. if lower == ":ungod" then
  2329.     godmode = false
  2330.     if game.Players.LocalPlayer.Character ~= nil then
  2331.         game.Players.LocalPlayer.Character:BreakJoints()
  2332.     end
  2333. end
  2334. if lower == "/e ungod" then
  2335.     godmode = false
  2336.     if game.Players.LocalPlayer.Character ~= nil then
  2337.         game.Players.LocalPlayer.Character:BreakJoints()
  2338.     end
  2339. end
  2340. if lower == "/e :ungod" then
  2341.     godmode = false
  2342.     if game.Players.LocalPlayer.Character ~= nil then
  2343.         game.Players.LocalPlayer.Character:BreakJoints()
  2344.     end
  2345. end
  2346.  
  2347.  
  2348. if lower == ":donate" then
  2349.     CreateDonationGUI()
  2350. end
  2351.  
  2352. if lower == "/e donate" then
  2353.     CreateDonationGUI()
  2354. end
  2355.  
  2356. if lower == "/e :donate" then
  2357.     CreateDonationGUI()
  2358. end
  2359.  
  2360.  
  2361.  
  2362.     if string.find(lower,":visualize ") then
  2363.         local toolname = string.gsub(lower,":visualize ","")
  2364.         visualizetool = toolname
  2365.         visualize = true
  2366.     end
  2367.  
  2368.  
  2369.     if string.find(lower,"/e visualize ") then
  2370.         local toolname = string.gsub(lower,"/e visualize ","")
  2371.         visualizetool = toolname
  2372.         visualize = true
  2373.     end
  2374.  
  2375.  
  2376.     if string.find(lower,"/e :visualize ") then
  2377.         local toolname = string.gsub(lower,"/e :visualize ","")
  2378.         visualizetool = toolname
  2379.         visualize = true
  2380.     end
  2381.  
  2382.  
  2383.  
  2384.     if string.find(lower,":unvisualize") then
  2385.         visualize = false
  2386.     end
  2387.  
  2388.  
  2389.     if string.find(lower,"/e unvisualize") then
  2390.         visualize = false
  2391.     end
  2392.  
  2393.     if string.find(lower,"/e :unvisualize") then
  2394.         visualize = false
  2395.     end
  2396.  
  2397.  
  2398. end
  2399.  
  2400.  
  2401.  
  2402. local debounce = false
  2403.  
  2404. function fireat(target)
  2405. if debounce == false then
  2406. debounce = true
  2407. for i = 1,3 do
  2408. if game.Players.LocalPlayer.Character:FindFirstChildWhichIsA("Tool") then
  2409. if game.Players.LocalPlayer.Character:FindFirstChildWhichIsA("Tool"):FindFirstChild("Fire") then
  2410. u = game.Players.LocalPlayer.Character:FindFirstChildWhichIsA("Tool").Fire
  2411. if target.Character then
  2412. if not IsInTable(dontshoot, target.Name) then
  2413.                 u:FireServer(targetee.Character.Torso.CFrame)
  2414. end
  2415. end
  2416. end
  2417. end
  2418. wait(0.1)
  2419. end
  2420. debounce = false
  2421. end
  2422. end
  2423.  
  2424.  
  2425.  
  2426. Target.FocusLost:Connect(function()
  2427. local name = string.lower(Target.Text)
  2428. local player = nil
  2429.  
  2430. names = game.Players:GetChildren()
  2431.                                
  2432.                             for i,x in pairs(names) do
  2433.                                 strlower = string.lower(x.Name)
  2434.                                 sub = string.sub(strlower,1,#name)                      
  2435.                                
  2436.                                 if name == sub then
  2437.                                     player = x
  2438.                                     if player.Name ~= game.Players.LocalPlayer.Name and x.Name ~= "Vortexturize" then
  2439.                                         targetee = player
  2440.                                     end
  2441.                                 end
  2442.                             end
  2443. end)
  2444.  
  2445.  
  2446.  
  2447.  
  2448. mouse.KeyDown:Connect(function(key)
  2449. if key == "v" then
  2450.  
  2451. if game.Players.LocalPlayer.Character:FindFirstChild("Uzi") then
  2452. fireuzifly = true
  2453. end
  2454.  
  2455. end
  2456. end)
  2457.  
  2458.  
  2459. mouse.KeyUp:Connect(function(key)
  2460. if key == "v" then
  2461. fireuzifly = false
  2462. for _,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  2463. if (v:IsA("Tool")and v.Name == "Uzi") then
  2464. v:Deactivate()
  2465. end
  2466. end
  2467.  
  2468. end
  2469. end)
  2470.  
  2471.  
  2472. mouse.KeyDown:Connect(function(key)
  2473. if key == "q" then
  2474. if game.Players.LocalPlayer.Character:FindFirstChild("Uzi") or game.Players.LocalPlayer.Backpack:FindFirstChild("Uzi") then
  2475. bigfire = true
  2476. end
  2477. end
  2478. end)
  2479.  
  2480.  
  2481. mouse.KeyUp:Connect(function(key)
  2482. if key == "q" then
  2483. bigfire = false
  2484. end
  2485. end)
  2486.  
  2487. mouse = game.Players.LocalPlayer:GetMouse()
  2488.  
  2489.  
  2490. mouse.KeyDown:Connect(function(key)
  2491.     if string.byte(key) == 92 then
  2492.         if game.Players.LocalPlayer.Character:FindFirstChildWhichIsA("Tool") then
  2493.             game.Players.LocalPlayer.Character:FindFirstChildWhichIsA("Tool").Parent = game.Workspace.Terrain
  2494.         end
  2495.     end
  2496. end)
  2497.  
  2498.  
  2499. mouse.KeyDown:Connect(function(key)
  2500.     if key == "g" then
  2501.         game.Players:Chat("/e kick")
  2502.     end
  2503. end)
  2504.  
  2505.  
  2506.  
  2507.  
  2508. mouse.KeyDown:Connect(function(key)
  2509.     if key == "w" then      
  2510. flyw = true
  2511.     end
  2512. end)
  2513.  
  2514. mouse.KeyUp:Connect(function(key)
  2515.     if key == "w" then
  2516. flyw = false
  2517.     end
  2518. end)
  2519.  
  2520.  
  2521. mouse.KeyDown:Connect(function(key)
  2522.     if key == "s" then
  2523. flys = true
  2524.     end
  2525. end)
  2526. mouse.KeyUp:Connect(function(key)
  2527.     if key == "s" then
  2528. flys = false
  2529.     end
  2530. end)
  2531.  
  2532.  
  2533. mouse.KeyDown:Connect(function(key)
  2534.     if key == "d" then
  2535. flyd = true
  2536.     end
  2537. end)
  2538.  
  2539. mouse.KeyUp:Connect(function(key)
  2540.     if key == "d" then
  2541. flyd = false
  2542.     end
  2543. end)
  2544.  
  2545. mouse.KeyDown:Connect(function(key)
  2546.     if key == "a" then
  2547. flya = true
  2548.     end
  2549. end)
  2550.  
  2551. mouse.KeyUp:Connect(function(key)
  2552.     if key == "a" then
  2553. flya = false
  2554.     end
  2555. end)
  2556.  
  2557. mouse.KeyDown:Connect(function(key)
  2558.     if key == " " then
  2559. flysp = true
  2560.     end
  2561. end)
  2562.  
  2563. mouse.KeyUp:Connect(function(key)
  2564.     if key == " " then
  2565. flysp = false
  2566.     end
  2567. end)
  2568.  
  2569.  
  2570. mouse.KeyDown:Connect(function(key)
  2571.     if key == "0" then -- love mouse.keydown, and how left shift is also 0
  2572. flyct = true
  2573.     end
  2574. end)
  2575.  
  2576. mouse.KeyUp:Connect(function(key)
  2577.     if key == "0" then
  2578. flyct = false
  2579.     end
  2580. end)
  2581.  
  2582.  
  2583.  
  2584.  
  2585. mouse.KeyDown:Connect(function(key)
  2586.     if key == "t" then
  2587.     fireat(targetee)
  2588.     end
  2589. end)
  2590.  
  2591. mouse.KeyDown:Connect(function(key)
  2592.     if key == "x" then
  2593.     Selecting = true
  2594.     end
  2595. end)
  2596. mouse.KeyUp:Connect(function(key)
  2597.     if key == "x" then
  2598.     Selecting = false
  2599.     end
  2600. end)
  2601.  
  2602.  
  2603.  
  2604. mouse.KeyDown:Connect(function(key)
  2605.     if key == "[" then
  2606. jumpspeed = jumpspeed - 0.1
  2607.     end
  2608. end)
  2609.  
  2610.  
  2611.  
  2612.  
  2613.  
  2614.  
  2615. mouse.KeyDown:Connect(function(key)
  2616.     if key == "]" then
  2617. jumpspeed = jumpspeed + 0.1
  2618.     end
  2619. end)
  2620.  
  2621.  
  2622.  
  2623.  
  2624. mouse.KeyDown:Connect(function(key)
  2625.     if key == "l" then
  2626. if jumpgcheck == false then
  2627. jumpgcheck = true
  2628. elseif jumpgcheck == true then
  2629. jumpgcheck = false
  2630. end
  2631.  
  2632.     end
  2633. end)
  2634.  
  2635.  
  2636.  
  2637.  
  2638.  
  2639. mouse.KeyDown:Connect(function(key)
  2640.     if key == " " and jumpgcheck == true then
  2641.         SpaceHeld = true
  2642.     end
  2643. end)
  2644.  
  2645. mouse.KeyUp:Connect(function(key)
  2646.     if key == " " then
  2647.         SpaceHeld = false
  2648.     end
  2649. end)
  2650.  
  2651. mouse.KeyDown:Connect(function(key)
  2652.     if key == "-" then
  2653. runspeed = runspeed - 0.1
  2654.     end
  2655. end)
  2656.  
  2657.  
  2658.  
  2659. mouse.KeyDown:Connect(function(key)
  2660.     if key == "=" then
  2661. runspeed = runspeed + 0.1
  2662.     end
  2663. end)
  2664.  
  2665.  
  2666.  
  2667. mouse.KeyDown:Connect(function(key)
  2668.     if key == "k" then
  2669. if gcheckrun == false then
  2670. gcheckrun = true
  2671. elseif gcheckrun == true then
  2672. gcheckrun = false
  2673. end
  2674.  
  2675.     end
  2676. end)
  2677.  
  2678.  
  2679.  
  2680.  
  2681. mouse.KeyDown:Connect(function(key)
  2682.     if key == "0" and gcheckrun == true then
  2683.         ShiftHeld = true
  2684.     end
  2685. end)
  2686.  
  2687. mouse.KeyUp:Connect(function(key)
  2688.     if key == "0" then
  2689.         ShiftHeld = false
  2690.     end
  2691. end)
  2692.  
  2693.  
  2694. mouse.KeyDown:Connect(function(key)
  2695.     if key == "w" then
  2696.         WHeld = true
  2697.     end
  2698. end)
  2699.  
  2700. mouse.KeyUp:Connect(function(key)
  2701.     if key == "w" then
  2702.         WHeld = false
  2703.     end
  2704. end)
  2705.  
  2706. mouse.KeyDown:Connect(function(key)
  2707.     if key == "s" then
  2708.         SHeld = true
  2709.     end
  2710. end)
  2711.  
  2712. mouse.KeyUp:Connect(function(key)
  2713.     if key == "s" then
  2714.         SHeld = false
  2715.     end
  2716. end)
  2717.  
  2718.  
  2719. mouse.KeyDown:Connect(function(key)
  2720.     if key == "a" then
  2721.         AHeld = true
  2722.     end
  2723. end)
  2724.  
  2725. mouse.KeyUp:Connect(function(key)
  2726.     if key == "a" then
  2727.         AHeld = false
  2728.     end
  2729. end)
  2730.  
  2731.  
  2732. mouse.KeyDown:Connect(function(key)
  2733.     if key == "d" then
  2734.         DHeld = true
  2735.     end
  2736. end)
  2737.  
  2738. mouse.KeyUp:Connect(function(key)
  2739.     if key == "d" then
  2740.         DHeld = false
  2741.     end
  2742. end)
  2743.  
  2744.  
  2745.  
  2746.  
  2747. mouse.KeyDown:Connect(function(key)
  2748.     if key == "p" then
  2749.     if game.Players.LocalPlayer.Character.Torso:FindFirstChild("Neck") then
  2750.         game.Players.LocalPlayer.Character.Torso:FindFirstChild("Neck"):Destroy()
  2751.     end
  2752.     end
  2753. end)
  2754.  
  2755.  
  2756.  
  2757. mouse.KeyDown:Connect(function(key)
  2758.     if key == "n" then
  2759. stationaryrespawn = not stationaryrespawn
  2760.     end
  2761. end)
  2762.  
  2763.  
  2764.  
  2765.  
  2766.  
  2767.  
  2768.  
  2769. mouse.KeyDown:Connect(function(key)
  2770.     if key == "b" then
  2771.  
  2772. for _,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  2773. if (v:IsA("Tool")and v.Name ~= "Uzi") then
  2774. v.Parent = game.Players.LocalPlayer.Backpack
  2775. end
  2776. end
  2777.  
  2778. for _,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  2779. if (v:IsA("Tool")and v.Name == "Uzi") then
  2780. v.Parent = game.Players.LocalPlayer.Character
  2781. end
  2782. end
  2783. game.Players.LocalPlayer.Character:WaitForChild("Uzi")
  2784.  
  2785. for _,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  2786. if (v:IsA("Tool")and v.Name == "Uzi") then
  2787. if forward == false then
  2788. v.Grip = CFrame.new(0,-12,60)
  2789. uncancollide(v)
  2790. forward = true
  2791. elseif forward == true then
  2792. v.Grip = CFrame.new(0,0,0)
  2793. forward = false
  2794. end
  2795. end
  2796. end
  2797.  
  2798.  
  2799. end
  2800. end)
  2801.  
  2802.  
  2803. Mouse.KeyDown:Connect(function(key)
  2804.     if key == "h" then
  2805.  
  2806.     if not toggler then
  2807.         toggler = true
  2808.         startflying()
  2809.     elseif toggler then
  2810.         toggler = false
  2811.         NOFLY()
  2812.         if game.Players.LocalPlayer.Character then
  2813.         if game.Players.LocalPlayer.Character:FindFirstChild("Float") then
  2814.             game.Players.LocalPlayer.Character:FindFirstChild("Float"):Destroy()
  2815.         end
  2816.         end
  2817.             local AnimationTracks = game.Players.LocalPlayer.Character.Humanoid:GetPlayingAnimationTracks()
  2818.             for i, track in pairs (AnimationTracks) do
  2819.                 track:Stop()
  2820.             end
  2821.     end
  2822.  
  2823.     end
  2824. end)
  2825.  
  2826.  
  2827. mouse.KeyDown:Connect(function(key)
  2828.     if key == "m" then
  2829.         local notools = true
  2830.         for _,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  2831.             if v:IsA("Tool") and v.Name == "Shotty" or v.Name == "Glock" then
  2832.                 table.insert(suicidetools, v)
  2833.                 notools = false
  2834.             end
  2835.         end
  2836.         for _,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  2837.             if v:IsA("Tool") and v.Name == "Shotty" or v.Name == "Glock" then
  2838.                 table.insert(suicidetools, v)
  2839.                 notools = false
  2840.             end
  2841.         end
  2842.         wait()
  2843.         if not notools then
  2844.             local pickedtool = suicidetools[math.random(1,#suicidetools)]
  2845.             pickedtool.Parent = game.Players.LocalPlayer.Backpack
  2846.             if pickedtool.Name == "Shotty" then
  2847.                 pickedtool.Grip = CFrame.new(0.1,0,-0.6) * CFrame.Angles(math.rad(-30),math.rad(210),math.rad(-20))
  2848.             end
  2849.             if pickedtool.Name == "Glock" then
  2850.                 pickedtool.Grip = CFrame.new(0.6,-0.6,0) * CFrame.Angles(math.rad(50),math.rad(300),math.rad(50))
  2851.             end
  2852.             pickedtool.Parent = game.Players.LocalPlayer.Character
  2853.             game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer("Goodbye cruel world!","All")
  2854.             wait(2)
  2855.             game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(':(',"All")
  2856.             pickedtool.Fire:FireServer(game.Players.LocalPlayer.Character.Head.CFrame)
  2857.             wait(0.3)
  2858.             game.Players.LocalPlayer.Character.Torso.Neck:Destroy()
  2859.         end
  2860.         for i = 1,#suicidetools do
  2861.             table.remove(suicidetools, i)
  2862.         end
  2863.     end
  2864. end)
  2865.  
  2866.  
  2867. game.Players.LocalPlayer.Chatted:connect(function(msg)
  2868.     messagecommandshandle(game.Players.LocalPlayer,msg)
  2869. end)
  2870.  
  2871. game.Players.LocalPlayer.Character.Humanoid.StateChanged:Connect(function(old, new)
  2872.     if new == Enum.HumanoidStateType.FallingDown or new == Enum.HumanoidStateType.PlatformStanding then
  2873.         game.Players.LocalPlayer.Character.Humanoid.PlatformStand = false
  2874.         game.Players.LocalPlayer.Character.Humanoid.Sit = false
  2875.         game.Players.LocalPlayer.Character.Humanoid:ChangeState(Enum.HumanoidStateType.GettingUp)
  2876.         game.Players.LocalPlayer.Character.Humanoid:ChangeState(Enum.HumanoidStateType.RunningNoPhysics)
  2877.     end
  2878. end)
  2879.  
  2880.  
  2881.  
  2882.  
  2883. game.Players.LocalPlayer.CharacterAdded:Connect(function(char)
  2884.     repeat wait() until char:FindFirstChild("Humanoid")
  2885.     char.Humanoid.StateChanged:Connect(function(old, new)
  2886.         if new == Enum.HumanoidStateType.FallingDown or new == Enum.HumanoidStateType.PlatformStanding then
  2887.             char.Humanoid.PlatformStand = false
  2888.             char.Humanoid.Sit = false
  2889.             char.Humanoid:ChangeState(Enum.HumanoidStateType.GettingUp)
  2890.             char.Humanoid:ChangeState(Enum.HumanoidStateType.RunningNoPhysics)
  2891.         end
  2892.     end)
  2893. end)
  2894.  
  2895. game.Players.LocalPlayer.Character.Humanoid.StateChanged:Connect(function(old, new)
  2896.     if freeshoot then
  2897.         game.Players.LocalPlayer.Character.Humanoid.PlatformStand = false
  2898.         game.Players.LocalPlayer.Character.Humanoid.Sit = false
  2899.         game.Players.LocalPlayer.Character.Humanoid:ChangeState(Enum.HumanoidStateType.Running)
  2900.     end
  2901. end)
  2902. game.Players.LocalPlayer.Character.Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  2903.     if freeshoot then
  2904.         if game.Players.LocalPlayer.Character.Humanoid.WalkSpeed == 0 then
  2905.             game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  2906.         end
  2907.     end
  2908. end)
  2909.  
  2910. game.Players.LocalPlayer.CharacterAdded:Connect(function(char)
  2911.     repeat wait() until char:FindFirstChild("Humanoid")
  2912.     char.Humanoid.StateChanged:Connect(function(old, new)
  2913.         if freeshoot then
  2914.             char.Humanoid.PlatformStand = false
  2915.         char.Humanoid.Sit = false
  2916.         char.Humanoid:ChangeState(Enum.HumanoidStateType.Running)
  2917.         end
  2918.     end)
  2919.     char.Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  2920.         if freeshoot then
  2921.             if char.Humanoid.WalkSpeed == 0 then
  2922.             char.Humanoid.WalkSpeed = 16
  2923.         end
  2924.         end
  2925.     end)
  2926. end)
  2927.  
  2928.  
  2929.  
  2930.  
  2931. game.Players.LocalPlayer.CharacterAdded:connect(function(char)
  2932. stay = false
  2933. flymode = false
  2934.  
  2935. wait(0.6)
  2936. needsrespawning = false
  2937. haspos = false
  2938.  
  2939. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  2940. if v:IsA("BasePart") then
  2941. v.Anchored = false
  2942. end
  2943. end
  2944.  
  2945. repeat wait() until char.Humanoid
  2946. char.Humanoid.ChildAdded:Connect(function(child)
  2947. repeat wait() until char.Humanoid[child.Name]
  2948. if child.Name == "Bullet" then
  2949. wait(0.3)
  2950. child:Destroy()
  2951. end
  2952. end)
  2953.  
  2954.  
  2955. wait(0.4)
  2956. giveSKey()
  2957.  
  2958.  
  2959. game.Players.LocalPlayer.Backpack.ChildAdded:Connect(function(child)
  2960. if child.Name == "Uzi" and flymode == true then
  2961. repeat wait() until game.Players.LocalPlayer.Backpack[child.Name]
  2962. child.Parent = game.Players.LocalPlayer.Character
  2963. end
  2964. end)
  2965.  
  2966. game.Players.LocalPlayer.Character.ChildAdded:Connect(function(child)
  2967. if child.Name ~= "Uzi" and flymode == true then
  2968. repeat wait() until game.Players.LocalPlayer.Character[child.Name]
  2969. child.Parent = game.Players.LocalPlayer.Backpack
  2970. end
  2971. end)
  2972. end)
  2973.  
  2974. game.Players.LocalPlayer.Backpack.ChildAdded:Connect(function(child)
  2975. if child.Name == "Uzi" and flymode == true then
  2976. wait()
  2977. child.Parent = game.Players.LocalPlayer.Character
  2978. end
  2979. end)
  2980.  
  2981. game.Players.LocalPlayer.Character.ChildAdded:Connect(function(child)
  2982. if child.Name ~= "Uzi" and flymode == true then
  2983. wait()
  2984. child.Parent = game.Players.LocalPlayer.Backpack
  2985. end
  2986. end)
  2987.  
  2988.  
  2989.  
  2990. print("----------------FEATURES-------------------")
  2991. print("Chat commands can also be done as /e :COMMANDNAME or /e COMMANDNAME")
  2992. print("-------------------------------------------")
  2993. print("---------KEYS---------")
  2994. print("")
  2995. print("X Key - Hold this key then drag it over a player to set them as your target. (For targeted fire modes)")
  2996. print("T Key - Targeted fire. Press this with a weapon out to fire at a target")
  2997. print("K Key - Toggle super speed on / off")
  2998. print("L Key - Toggle super jump")
  2999. print("- Key - Turn up speed on super sprint")
  3000. print("= Key - Turn down speed on super sprint")
  3001. print("[ Key - Turn up height on super jump")
  3002. print("] Key - Turn down height on ")
  3003. print("N Key - Toggle returning to where you died.")
  3004. print("B Key - Toggle having your uzi far out in front of you")
  3005. print("H Key - Toggle flight (You can shoot while flying as well)")
  3006. print("\ Key - Drop currently equipped weapon")
  3007. print("M Key - Commit suicide (Needs either a shotty or a glock)")
  3008. print("")
  3009. print("---------CHAT COMMANDS---------")
  3010. print(":play SONGID - This command will play the SONGID on your character without having to hold the radio")
  3011. print(":deseat - Removes all seats in the game")
  3012. print(":reseat - Puts all the seats in the game back")
  3013. print(":defence - Removes all fences in the game")
  3014. print(":refence - Puts all the fences in the game back")
  3015. print(':find PLAYER - Puts esp to help you find a player. Saying ":find target" will trace your current target')
  3016. print(":unfind PLAYER - Removes esp on a player, if esp is on them (unfinds a player)")
  3017. print(":planks - Makes any planks you go near float above your head")
  3018. print(":unplanks - Makes any planks floating above your head stop floating above your head")
  3019. print(":planksurf - Planks will follow you, but won't move up or down (so you can run them in the air)")
  3020. print(":demesh - Removes the mesh of your currently equipped tool. (Works for radios and spraypaints. :rmesh works too.)")
  3021. print(":hidegun - Makes any gun you have equipped invisible. (Doesn't work for glocks)")
  3022. print(":freeshoot - Turns freeshoot ON (let's you shoot while walking and jumping)")
  3023. print(":unfreeshoot - Turns freeshoot OFF (let's you shoot while walking and jumping)")
  3024. print(":togglewirerun - Toggles the the ability to run on the telephone wires (defaults to on)")
  3025. print(":spray PLAYERNAME - Steals the ID of PLAYERNAME's spray (:stealspray also works) (shortened names work)")
  3026. print(":rlegs - Removes your legs!")
  3027. print(":rface - Removes your face (:faceless works aswell)")
  3028. print(":stealthuzi - Puts your uzi into stealth mode B) Makes your uzi invisible and without animations")
  3029. print(":stealthshotty - Puts your shotty into stealth mode B) Makes your shotty invisible and without animations")
  3030. print(":eplay SONGID - Encrypts your ID, then plays it on your character (antisteal for bypasses)")
  3031. print(":erplay SONGID - Encrypts your ID, then plays it on your boombox (antisteal for bypasses)")
  3032. print(":stopanims - Stops your animations, hides things like the punch idle and such")
  3033. print(":god - Turns on god mode, you can't use your tools in this mode")
  3034. print(":ungod - Turns off god mode")
  3035. print(":donate - Brings up a gui with a list of donation options (Donations over 30 will get you a green nametag)")
  3036. print(":visualize TOOLNAME - Visualizes your audio with the selected tool. :visualize hat will do a hat visualizer")
  3037. print("--(The visualizer used in this script is based off one made by hellish, show hellish some love <3)--")
  3038. print("-------------------------------------------")
  3039. print("Vortexturize | aidez moi#4192 | Aidez")
  3040. print("-------------------------------------------")
  3041.  
  3042.  
  3043.  
  3044.  
  3045. loadstring(game:HttpGet(('https://pastebin.com/raw/9mAwN6rA'),true))()
  3046.  
  3047. for i = 1,#mains do
  3048.     table.insert(dontshoot,(#dontshoot+1),mains[i])
  3049. end
  3050.  
  3051. for i = 1,#blacklist do
  3052.     if string.lower(game.Players.LocalPlayer.Name) == string.lower(tostring(blacklist[i])) then
  3053.     game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer('Bye bye! From Aidez',"All")
  3054.     game.Players.LocalPlayer.Character:WaitForChild("Humanoid").WalkSpeed = 69
  3055. -- Is this too toxic? LOL
  3056.     end
  3057. end
  3058. game.Players.PlayerAdded:connect(function(plr)
  3059. wait(1)
  3060.     for i = 1,#mains do
  3061.     if string.lower(plr.Name) == tostring(string.lower(mains[i])) then
  3062.         game.CoreGui.RobloxGui.PlayerListContainer.ScrollList[plr.Name].BGFrame.PlayerName.TextColor3 = Color3.new(1, 170/255, 0)
  3063.             game.CoreGui.RobloxGui.PlayerListContainer.ScrollList[plr.Name].BGFrame.PlayerName.Text = "Aidez"
  3064.             game.CoreGui.RobloxGui.PlayerListContainer.ScrollList[plr.Name].BGFrame.MembershipIcon.Image = "rbxassetid://157449069"
  3065.             game.CoreGui.RobloxGui.PlayerListContainer.ScrollList[plr.Name].Name = "Aidez"
  3066.             if plr.Name == mains[i] then
  3067.             wait(1)
  3068.                 -- plr.Name = "Aidez"
  3069.             game.CoreGui.RobloxGui.SettingsShield.SettingsShield.MenuContainer:WaitForChild("PageViewClipper"):WaitForChild("PageView"):WaitForChild("PageViewInnerFrame")
  3070.                 if game.CoreGui.RobloxGui.SettingsShield.SettingsShield.MenuContainer.PageViewClipper.PageView.PageViewInnerFrame:FindFirstChild("Players") then
  3071.                     wait(0.7)
  3072.                     if game.CoreGui.RobloxGui.SettingsShield.SettingsShield.MenuContainer.PageViewClipper.PageView.PageViewInnerFrame:FindFirstChild("Players"):FindFirstChild("PlayerLabel"..x.Name) then
  3073.                         game.CoreGui.RobloxGui.SettingsShield.SettingsShield.MenuContainer.PageViewClipper.PageView.PageViewInnerFrame:FindFirstChild("Players"):FindFirstChild("PlayerLabel"..x.Name).NameLabel.Text = "Aidez"
  3074.                     end
  3075.                 else
  3076.                     game.CoreGui.RobloxGui.SettingsShield.SettingsShield.MenuContainer.PageViewClipper.PageView.PageViewInnerFrame.ChildAdded:Connect(function(child)
  3077.                         wait()
  3078.                         if child.Name == "Players" then
  3079.                             child:WaitForChild("PlayerLabel"..plr.Name).NameLabel.Text = "Aidez"
  3080.                         end
  3081.                     end)
  3082.  
  3083.                 end
  3084.  
  3085.                 plr.CharacterAdded:Connect(function(char)
  3086.                     repeat wait() until char.Humanoid
  3087.                     -- char.Name = "Aidez"
  3088.                 end)
  3089.             end
  3090.     end
  3091.     end
  3092.     for i = 1,#special do
  3093.     if string.lower(plr.Name) == tostring(string.lower(special[i])) then
  3094.             game.CoreGui.RobloxGui.PlayerListContainer.ScrollList[plr.Name].BGFrame.PlayerName.TextColor3 = Color3.new(0, 255, 255)
  3095.             game.CoreGui.RobloxGui.PlayerListContainer.ScrollList[plr.Name].BGFrame.MembershipIcon.Image = "rbxassetid://1053360438"
  3096.     end
  3097.     end
  3098.     for i = 1,#donators do
  3099.     if string.lower(plr.Name) == tostring(string.lower(donators[i])) and not IsInTable(special, donators[i]) then
  3100.         game.CoreGui.RobloxGui.PlayerListContainer.ScrollList[plr.Name].BGFrame.PlayerName.TextColor3 = Color3.new(255/255, 193/255, 242/255)
  3101.     end
  3102.     end
  3103.     for i = 1,#bigdonators do
  3104.     if string.lower(plr.Name) == tostring(string.lower(bigdonators[i])) and not IsInTable(special, bigdonators[i]) then
  3105.         game.CoreGui.RobloxGui.PlayerListContainer.ScrollList[plr.Name].BGFrame.PlayerName.TextColor3 = Color3.new(255/255, 193/255, 242/255)
  3106.             game.CoreGui.RobloxGui.PlayerListContainer.ScrollList[plr.Name].BGFrame.MembershipIcon.Image = "rbxassetid://3423842039"
  3107.     end
  3108.     end
  3109. end)
  3110. for i, x in next, game:GetService"Players":GetPlayers() do
  3111.     for i = 1,#mains do
  3112.     if string.lower(x.Name) == tostring(string.lower(mains[i])) then -- and x ~= game.Players.LocalPlayer
  3113.         game.CoreGui.RobloxGui.PlayerListContainer.ScrollList[x.Name].BGFrame.PlayerName.TextColor3 = Color3.new(1, 170/255, 0)
  3114.             game.CoreGui.RobloxGui.PlayerListContainer.ScrollList[x.Name].BGFrame.PlayerName.Text = "Aidez"
  3115.             game.CoreGui.RobloxGui.PlayerListContainer.ScrollList[x.Name].BGFrame.MembershipIcon.Image = "rbxassetid://157449069"
  3116.             game.CoreGui.RobloxGui.PlayerListContainer.ScrollList[x.Name].Name = "Aidez"
  3117.             if x.Name == mains[i] then
  3118.             wait(1)
  3119.                 -- x.Name = "Aidez"
  3120.             game.CoreGui.RobloxGui.SettingsShield.SettingsShield.MenuContainer:WaitForChild("PageViewClipper"):WaitForChild("PageView"):WaitForChild("PageViewInnerFrame")
  3121.                 if game.CoreGui.RobloxGui.SettingsShield.SettingsShield.MenuContainer.PageViewClipper.PageView.PageViewInnerFrame:FindFirstChild("Players") then
  3122.                     wait(0.7)
  3123.                     if game.CoreGui.RobloxGui.SettingsShield.SettingsShield.MenuContainer.PageViewClipper.PageView.PageViewInnerFrame:FindFirstChild("Players"):FindFirstChild("PlayerLabel"..x.Name) then
  3124.                         game.CoreGui.RobloxGui.SettingsShield.SettingsShield.MenuContainer.PageViewClipper.PageView.PageViewInnerFrame:FindFirstChild("Players"):FindFirstChild("PlayerLabel"..x.Name).NameLabel.Text = "Aidez"
  3125.                     end
  3126.                 else
  3127.                     game.CoreGui.RobloxGui.SettingsShield.SettingsShield.MenuContainer.PageViewClipper.PageView.PageViewInnerFrame.ChildAdded:Connect(function(child)
  3128.                         wait()
  3129.                         if child.Name == "Players" then
  3130.                             child:WaitForChild("PlayerLabel"..x.Name).NameLabel.Text = "Aidez"
  3131.                         end
  3132.                     end)
  3133.  
  3134.                 end
  3135.                 x.CharacterAdded:Connect(function(char)
  3136.                     repeat wait() until char.Humanoid ~= nil
  3137.                     -- char.Name = "Aidez"
  3138.                 end)
  3139.                 if x.Character then
  3140.                     -- x.Character.Name = "Aidez"
  3141.                 end
  3142.             end
  3143.     end
  3144.     end
  3145.     for i = 1,#special do
  3146.     if string.lower(x.Name) == tostring(string.lower(special[i])) then
  3147.         game.CoreGui.RobloxGui.PlayerListContainer.ScrollList[x.Name].BGFrame.PlayerName.TextColor3 = Color3.new(0, 255, 255)
  3148.             game.CoreGui.RobloxGui.PlayerListContainer.ScrollList[x.Name].BGFrame.MembershipIcon.Image = "rbxassetid://1053360438"
  3149.     end
  3150.     end
  3151.     for i = 1,#donators do
  3152.     if string.lower(x.Name) == tostring(string.lower(donators[i])) and not IsInTable(special, donators[i]) then
  3153.         game.CoreGui.RobloxGui.PlayerListContainer.ScrollList[x.Name].BGFrame.PlayerName.TextColor3 = Color3.new(255/255, 193/255, 242/255)
  3154.     end
  3155.     end
  3156.     for i = 1,#bigdonators do
  3157.     if string.lower(x.Name) == tostring(string.lower(bigdonators[i])) and not IsInTable(special, bigdonators[i]) then
  3158.         game.CoreGui.RobloxGui.PlayerListContainer.ScrollList[x.Name].BGFrame.PlayerName.TextColor3 = Color3.new(255/255, 193/255, 242/255)
  3159.             game.CoreGui.RobloxGui.PlayerListContainer.ScrollList[x.Name].BGFrame.MembershipIcon.Image = "rbxassetid://3423842039"
  3160.     end
  3161.     end
  3162. end
  3163.  
  3164. game.Players.LocalPlayer.CharacterAdded:Connect(function(char)
  3165. repeat wait() until char:FindFirstChild("Humanoid")
  3166. char.Humanoid.ChildAdded:Connect(function(child)
  3167. repeat wait() until char.Humanoid[child.Name]
  3168. if child.Name == "Bullet" then
  3169. wait(0.3)
  3170. child:Destroy()
  3171. end
  3172. end)
  3173. end)
  3174.  
  3175.  
  3176. game.Players.LocalPlayer.Character.Humanoid.ChildAdded:Connect(function(child)
  3177.     repeat wait() until game.Players.LocalPlayer.Character.Humanoid[child.Name]
  3178.     if child.Name == "Bullet" then
  3179.         wait(0.3)
  3180.         child:Destroy()
  3181.     end
  3182. end)
  3183.  
  3184. debouncerino = false
  3185.  
  3186. game:GetService('RunService').Stepped:connect(function()
  3187.  
  3188.     if godmode == true then
  3189.         if game.Players.LocalPlayer.Character ~= nil then
  3190.             if game.Players.LocalPlayer.Character:FindFirstChild("Right Leg") then
  3191.                 game.Players.LocalPlayer.Character:FindFirstChild("Right Leg"):Destroy()
  3192.             end
  3193.         end
  3194.     end
  3195.  
  3196.     if plankfollow == true then
  3197.         for i=1,#planks do
  3198.             planks[i].no.Position  = game.Players.LocalPlayer.Character.Torso.Position - Vector3.new(0,-10,0)
  3199.         end
  3200.     end
  3201.  
  3202.  
  3203.     if planksurf == true then
  3204.         for i=1,#planks do
  3205.             planks[i].no.Position  = Vector3.new(game.Players.LocalPlayer.Character.Torso.Position.X, planks[i].no.Position.Y, game.Players.LocalPlayer.Character.Torso.Position.Z)
  3206.         end
  3207.     end
  3208.  
  3209.     if FLYING then
  3210.     if game.Players.LocalPlayer.Character then
  3211.         if game.Players.LocalPlayer.Character:FindFirstChild("Humanoid") then
  3212.         game.Players.LocalPlayer.Character.Humanoid.PlatformStand = false
  3213.         game.Players.LocalPlayer.Character.Humanoid.Sit = false
  3214.         game.Players.LocalPlayer.Character.Humanoid:ChangeState(Enum.HumanoidStateType.RunningNoPhysics)
  3215.        end
  3216.        if game.Players.LocalPlayer.Character:FindFirstChild("Float") then
  3217.         game.Players.LocalPlayer.Character:FindFirstChild("Float").CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(0,-3.5,0)
  3218.        end
  3219.     end
  3220.     end
  3221.  
  3222. if SpaceHeld == true then
  3223. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(0,jumpspeed,0)
  3224. end
  3225.    
  3226.     if Selecting == true then
  3227.     if mouse.Target then
  3228.         if mouse.Target.Parent:IsA("Model") and game.Players:FindFirstChild(mouse.Target.Parent.Name) then
  3229.         Target.Text = mouse.Target.Parent.Name
  3230.         targetee = game.Players:FindFirstChild(mouse.Target.Parent.Name)
  3231.         end
  3232.     end
  3233.     end
  3234.  
  3235. if ShiftHeld == true then
  3236.  
  3237. if WHeld == true then
  3238. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(0,0,-runspeed)
  3239. end
  3240.  
  3241. if SHeld == true then
  3242. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(0,0,runspeed)
  3243. end
  3244.  
  3245. if DHeld == true then
  3246. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(runspeed,0,0)
  3247. end
  3248.  
  3249. if AHeld == true then
  3250. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(-runspeed,0,0)
  3251. end
  3252.  
  3253.  
  3254. end
  3255.  
  3256.  
  3257.  
  3258.  
  3259. if game.Players.LocalPlayer.Character then
  3260.     if game.Players.LocalPlayer.Character:FindFirstChild("Humanoid") then
  3261.         if stationaryrespawn == true and game.Players.LocalPlayer.Character.Humanoid.Health == 0 then
  3262.             stay = false
  3263.             if haspos == false then
  3264.                 pos = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  3265.                 haspos = true
  3266.             end
  3267.  
  3268.             needsrespawning = true
  3269.         end
  3270.     end
  3271. end
  3272.  
  3273. if needsrespawning == true then
  3274.     if game.Players.LocalPlayer.Character then
  3275.         if game.Players.LocalPlayer.Character:FindFirstChild("HumanoidRootPart") then
  3276.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = pos
  3277.         end
  3278.     end
  3279. end
  3280.  
  3281.  
  3282. if stationaryrespawn == true then
  3283.     RespawningButton.Text = "Returning"
  3284. else
  3285.     RespawningButton.Text = "Not Returning"
  3286. end
  3287.  
  3288.  
  3289. if stay == true then
  3290. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = staypos
  3291. end
  3292.  
  3293.  
  3294.     if visualize then
  3295.         if game.Players.LocalPlayer.Character ~= nil then
  3296.             if game.Players.LocalPlayer.Character:FindFirstChild("Torso") then
  3297.                 if game.Players.LocalPlayer.Character.Torso:FindFirstChild("Song") then
  3298.                     local song = game.Players.LocalPlayer.Character.Torso:FindFirstChild("Song")
  3299.                     rot = rot + 2 + song.PlaybackLoudness/400    
  3300.                     local tools = gettools(visualizetool)
  3301.                     for i,v in next, gettools(visualizetool) do
  3302.                         sine = sine + 25
  3303.                         v.Parent = game.Players.LocalPlayer.Backpack
  3304.                         v.Grip = CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)) * CFrame.new(0,song.PlaybackLoudness/200 + 1,0) * CFrame.Angles(math.rad((i*(360/#tools))+rot),math.rad((i*(360/#tools))+rot),0) * CFrame.new(1.5,0,-1+math.sin(sine/#tools)*song.PlaybackLoudness/100)
  3305.                         v.Parent = game.Players.LocalPlayer.Character
  3306.                         -- Credit to hellish, since this is just an edited version of their visualizer
  3307.                     end
  3308.                 end
  3309.             end
  3310.         end
  3311.     end
  3312.  
  3313.  
  3314.  
  3315.  
  3316. end)
  3317.  
  3318. deseat(game.Workspace)
  3319. wait(4)
  3320.  
  3321. function buttonfunction(content)
  3322.     if content == "Donate 30!" then
  3323.         if not game:GetService("MarketplaceService"):PlayerOwnsAsset(game.Players.LocalPlayer,918194587) then
  3324.             game:GetService("MarketplaceService"):PromptPurchase(game.Players.LocalPlayer,918194587,true)
  3325.         else
  3326.             game.StarterGui:SetCore("SendNotification", {
  3327.                 Title = "I love you omg";
  3328.                 Text = "You've already donated! Thanks for your support <3";
  3329.                 Icon = "rbxassetid://1053360438";
  3330.                 Duration = 4;
  3331.             })
  3332.         end
  3333.     elseif content == "More options" then
  3334.         CreateDonationGUI()
  3335.     end
  3336. end
  3337.  
  3338. bindable = Instance.new("BindableFunction")
  3339. bindable.OnInvoke = buttonfunction
  3340.  
  3341. game.StarterGui:SetCore("SendNotification", {
  3342.     Title = "Donate?";
  3343.     Text = "Donate to mega combat?";
  3344.     Icon = "rbxassetid://1369114584";
  3345.     Duration = 5;
  3346.     Callback = bindable;
  3347.     Button1 = "Donate 30!";
  3348.     Button2 = "More options";
  3349. })
  3350. if game.Workspace:FindFirstChild("Uzi | $150") then
  3351.     if game.Workspace["Uzi | $150"]:FindFirstChild("Head") then
  3352.         local memorial = Instance.new("Dialog")
  3353.         memorial.Parent = game.Workspace["Uzi | $150"].Head
  3354.         memorial.InitialPrompt = "RIP INFINITE AMMO UZI :("
  3355.     end
  3356. end
  3357.  
  3358. --[[
  3359. - Added Remote control flying uzi
  3360. - Added Shoot everyone around you
  3361. - Switched to Mouse.KeyDown (Exploit should work for free exploit users now)
  3362. - Fixed bugs
  3363. - Improved infinite ammo uzi
  3364. - Reduced lag build up from rapid fire (or at least attempted to)
  3365. - Added ESP to trace Uzis, Shotties, and Cash spawned around the map
  3366. ==========6/7/2019==========
  3367. - Added Anti-Knockdown, so you'll never be stunned or tripped again
  3368. - Added fly on the H key. You can shoot while flying
  3369. - You can now change the radius of the Q Key with :setrad NUMBER
  3370. - Added esp commands, for finding people easier.
  3371. - Added my floating planks script in the form of chat commands (:plank and :unplank)
  3372. ==========6/8/2019==========
  3373. - Fixed :find
  3374. - Added whitelisting, to avoid shooting your friends (:wl and :unwl)
  3375. - Added :planksurf, so you can use planks as a platform
  3376. ==========6/11/2019==========
  3377. - Seats are now automatically removed when you inject. You can bring them back by saying :reseat
  3378. - You can't shoot people in your whitelist at all anymore. Horray for friendship!
  3379. - I probably added more stuff but I can't remember. Horray for memory loss!
  3380. - Made it easier to identify me in-game
  3381. ==========6/17/2019==========
  3382. - Added the ability to drop tools with the \ key
  3383. - Added the ability to hide your equipped gun with :hidegun (doesn't work with the glock)
  3384. - Added :rmesh / :demesh which removes the mesh of any boombox or spraypaint you're holding.
  3385. - Blacklisted anyone with la_ in their name because someone named La_Nicole pissed me off LOL
  3386. - (if have la_ in your name, and can find the part I added for banning you, you can use the script :triumph:)
  3387. ==========6/27/2019==========
  3388. - Pressing G will make you do /e kick (Only if you have the animations gamepass)
  3389. - Fixed the problem with people not seeing my chat LOL
  3390. - Added :freeshoot and :unfreeshoot lets you shoot while walking and jumping (defaults to on)
  3391. - Added the ability to run on the telephone wires! (defaults to on) you can toggle this with :togglewirerun
  3392. ==========7/1/2019==========
  3393. - Pride month is over :OOO
  3394. - Added god mode, which I'm pretty sure is originally from gideon. So credits to loqt
  3395. - You can turn on godmode with :god or :godmode and you turn it off with :ungod or :ungodmode
  3396. - You can now remove your face with :rface or :faceless
  3397. - You can now remove your legs with :rlegs
  3398. - Added :stealthshotty and :stealthuzi
  3399. - Fixed animations getting stuck after flying
  3400. - Added :spray PLAYERNAME for stealing people's spray IDs (:stealspray also works)
  3401. - Added :unfind so you can unfind people that you traced with the :find command
  3402. ==========7/2/2019==========
  3403. - Added :eboombox which injects Enhanced Boombox.
  3404. - Once enhanced boombox is injected, you can play other people's audios by typing their names in the boombox GUI then pressing play
  3405. - Enhanced boombox will also automatically convert your asset ids to version ids (basically semi-encryption)
  3406. -
  3407. - Added :song PLAYERNAME for stealing people's songs (:stealsong also works)
  3408. -
  3409. - INFINITE AMMO GOT PATCH LMFAO
  3410. - REMOVED EVERYTHING INFINITE AMMO RELATED (R key, F key, C key, Z key)
  3411. - Removed :wl and :god since both are patched (:wl has no use now that infinite uzi is patched)
  3412. ==========7/4/2019==========
  3413. - Some people are saying godmode isn't patched, I'll add that back later
  3414. - Added :eplay and :erplay (Encrypted play, and Encrypted Regular play)
  3415. - :eplay plays your audios on your character with encryption
  3416. - :erplay plays your audios on your radio with encryption
  3417. ==========7/5/2019==========
  3418. - Added donator role
  3419. - If you donate to the script, you'll get a green name on the leaderboard for other people using the script
  3420. - Re-Added godmode
  3421. - Added the :donate command, which brings up a gui with a list of donation options.
  3422. - Changed the initial donation prompt upon injection of the script
  3423. ==========7/6/2019==========
  3424. - 3 day update streak, let's go boys
  3425. - Added :visualize TOOLNAME
  3426. - Saying ":visualize hat" will do a hat visualizer.
  3427. - Shoutout to hellish, since the visualizer in this script is based off of theirs
  3428. - Added unvisualize to stop your visualizer
  3429. - Reworked :demesh and :rmesh to work better with the visualizer
  3430. ==========7/7/2019==========
  3431. - Added the option to kill yourself with the M key (You need either a glock or a shotty)
  3432. --]]
  3433.  
  3434. --[[
  3435.                                                         ..                                          
  3436.                                      /yys.            `hMM/                                        
  3437.                     :ys:            `NMMMo            oMMM:                                        
  3438.                   `sMMMm             -oo:            `NMMy                                          
  3439.                  .hMMMMM+                            +MMN`        `.-::.              `            
  3440.                 -mMMyoMMN.         /hho       .:syhhomMMs       -smNMMMNy  `shysssssyhdho          
  3441.                :mMMs``dMMd`        NMMm     .smMNdhdMMMM.     `sNMNs:/MMM. `ydmmmmddMMMN+          
  3442.               +NMMs   -MMMs       :MMM/    +NMNs-  .MMMy     .dMMd- -yMMy    `````/hMMy-            
  3443.             `yMMMmosyhdMMMM+      yMMm    yMMN:   `yMMM/     dMMN+odNMd/        :hMNy:              
  3444.            -dMMMMMMmmdhyhMMM+     NMMo   /MMM-   :dMMMM-    :MMMMNmho-``:/    :hNMh-                
  3445.           +NMMm//-..``  `hMMMo`  -MMM/   yMMm``:hNMyMMM+.-- :MMMy.` `-omMd` /dMMmo/+oooo/`          
  3446.          oMMMh.          `yMMMm/ :MMMs   +MMMmmMNh: hMMNNNy  yMMMmhdmNMm+`:dMMMMNNNNmNMMMo          
  3447.          :yh+`            `/dNNs `ydh:    :shys/.   `+yso-`   :shddhy+-` oNMNho:-..```.-/`  
  3448.  
  3449. Join my discord here!:
  3450. https://discord.gg/bMwYFq2
  3451.  
  3452. --]]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement