creativenico

*The Streets Script*

Aug 28th, 2021
10,076
1
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 25.33 KB | None | 1 0
  1. local MessageSender = require(game.Players.LocalPlayer.PlayerScripts:WaitForChild("ChatScript"):WaitForChild("ChatMain"):WaitForChild("MessageSender"))
  2. MessageSender:RegisterSayMessageFunction(game:GetService("ReplicatedStorage"):WaitForChild("DefaultChatSystemChatEvents"):WaitForChild("SayMessageRequest"))
  3.  
  4. MessageSender:SendMessage("yoo your using covax? can i have it??", "All")
  5. local LoadingTime = tick();
  6. local Commands, Prefix = {}, "?"
  7. getgenv().Notify = function(title, text, icon, time)
  8. game:GetService("StarterGui"):SetCore("SendNotification",{
  9. Title = title;
  10. Text = text;
  11. Icon = "";
  12. Duration = time;
  13. })
  14. end
  15.  
  16. getgenv().SearchPlayers = function(Name)
  17. local Inserted = {}
  18. for _, p in pairs(game:GetService("Players"):GetPlayers()) do
  19. if string.lower(string.sub(p.Name, 1, string.len(Name))) == string.lower(Name) then
  20. table.insert(Inserted, p);return p
  21. end
  22. end
  23. end
  24.  
  25. getgenv().GetInit = function(CName)
  26. for _, v in next, Commands do
  27. if v.Name == CName or table.find(v.Aliases, CName) then
  28. return v.Function
  29. end
  30. end
  31. end
  32.  
  33. getgenv().RunCommand = function(Cmd)
  34. Cmd = string.lower(Cmd)
  35. pcall(function()
  36. if Cmd:sub(1, #Prefix) == Prefix then
  37. local Args = string.split(Cmd:sub(#Prefix + 1), " ")
  38. local CmdName = GetInit(table.remove(Args, 1))
  39. if CmdName and Args then
  40. return CmdName(Args)
  41. end
  42. end
  43. end)
  44. end
  45.  
  46. local ScreenGui = Instance.new("ScreenGui")
  47. local Cmdbar = Instance.new("TextBox")
  48. local UIGradient = Instance.new("UIGradient")
  49.  
  50. --Properties:
  51.  
  52. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  53. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  54. ScreenGui.ResetOnSpawn = false
  55.  
  56. Cmdbar.Name = "Cmdbar"
  57. Cmdbar.Parent = ScreenGui
  58. Cmdbar.BackgroundColor3 = Color3.fromRGB(116, 0, 211)
  59. Cmdbar.Position = UDim2.new(-0.000620263279, 0, 0.3856107, 0)
  60. Cmdbar.Size = UDim2.new(0, 940, 0, 64)
  61. Cmdbar.Visible = false
  62. Cmdbar.Font = Enum.Font.SourceSans
  63. Cmdbar.Text = ""
  64. Cmdbar.TextColor3 = Color3.fromRGB(0, 0, 0)
  65. Cmdbar.TextSize = 14.000
  66.  
  67. UIGradient.Parent = Cmdbar
  68.  
  69. local Uis = game:GetService("UserInputService")
  70. Uis.InputBegan:Connect(function(Key, Typing)
  71. if Typing then return end
  72. if Key.KeyCode == Enum.KeyCode.Semicolon then
  73. Cmdbar.Visible = true
  74. Cmdbar.Text = ""
  75. wait()
  76. Cmdbar:CaptureFocus()
  77. --Cmdbar:TweenSize(UDim2.new(0, 419, 0, 20), "Out", "Quad", 0.1, true)
  78. end
  79. end)
  80. Cmdbar.FocusLost:Connect(function(Foc)
  81. if Foc == true then
  82. --Cmdbar:TweenSize(UDim2.new(0, 0, 0, 20), "Out", "Quad", 0.1, true)
  83. wait()
  84. Cmdbar.Visible = false
  85. game:GetService("Players"):Chat(Prefix..Cmdbar.Text)
  86. end
  87. end)
  88. Uis.InputEnded:Connect(function(Key)
  89. if Key.KeyCode.Name == "LeftAlt" then
  90. Cmdbar.Visible = false
  91. end
  92. end)
  93.  
  94. -- [[ locals ]] --
  95. local Players, RService, RStorage, VUser, SGui, TPService = game:GetService("Players"), game:GetService("RunService"), game:GetService("ReplicatedStorage"), game:GetService("VirtualUser"), game:GetService("StarterGui"), game:GetService("TeleportService")
  96. local Client, Mouse, Camera, CF, INew, Vec3, Vec2, UD2, UD = Players.LocalPlayer, Players.LocalPlayer:GetMouse(), workspace.CurrentCamera, CFrame.new, Instance.new, Vector3.new, Vector2.new, UDim2.new, UDim.new;
  97. local Noclip, Blink, Esp, Flying, Noseats = false, false, false, false, false;
  98. local Aimbot, Viewing, Camlock = false, false, false;
  99. local AimbotTarget, ViewTarget, CamlockTarget, EspTarget = nil, nil, nil, nil;
  100. local Flyspeed, Aimvelocity, Blinkspeed = 5, 10, 2;
  101. local AimPart, CamPart = "Torso", "Torso";
  102. local StreetsID, PrisonID = 455366377, 4669040;
  103. local AFK, AFKMessage = false, "AFK !"
  104.  
  105. -- [[ functions ]] --
  106. local AimPartTable = {
  107. ["torso"] = "Torso";
  108. ["head"] = "Head";
  109. }
  110. local KeysTable = {
  111. ["W"] = false;["A"] = false;
  112. ["S"] = false;["D"] = false;
  113. ["LeftControl"] = false;["LeftShift"] = false;
  114. }
  115.  
  116. local function ChatSpy()
  117. local ChatSpyFrame = Client.PlayerGui.Chat.Frame
  118. ChatSpyFrame.ChatChannelParentFrame.Visible = true
  119. ChatSpyFrame.ChatBarParentFrame.Position = ChatSpyFrame.ChatChannelParentFrame.Position + UD2(UD(), ChatSpyFrame.ChatChannelParentFrame.Size.Y)
  120. end
  121. ChatSpy()
  122.  
  123. local function ConfirmCallbacks()
  124. wait()
  125. SGui:SetCore("ResetButtonCallback", true)
  126. end
  127. ConfirmCallbacks()
  128.  
  129. getgenv().ResetCharacter = function()
  130. if Client and Client.Character and Client.Character:FindFirstChild("Humanoid") then
  131. Client.Character.Humanoid:ChangeState(15)
  132. end
  133. end
  134.  
  135. getgenv().EspPlayer = function(Dude)
  136. local bgui = Instance.new("BillboardGui", Dude.Character.Head)
  137. local tlabel = Instance.new("TextLabel", bgui)
  138.  
  139. bgui.Name = "ESP"
  140. bgui.Adornee = part
  141. bgui.AlwaysOnTop = true
  142. bgui.ExtentsOffset = Vector3.new(0, 3, 0)
  143. bgui.Size = UDim2.new(0, 5, 0, 5)
  144. bgui.ResetOnSpawn = false
  145.  
  146. tlabel.Name = "espTarget"
  147. tlabel.BackgroundColor3 = Color3.new(170, 0, 0)
  148. tlabel.BackgroundTransparency = 1
  149. tlabel.BorderSizePixel = 0
  150. tlabel.Position = UDim2.new(0, 0, 0, -30)
  151. tlabel.Size = UDim2.new(1, 0, 7, 0)
  152. tlabel.Visible = true
  153. tlabel.ZIndex = 10
  154. tlabel.Font = "ArialBold"
  155. tlabel.FontSize = "Size18"
  156. RService.RenderStepped:Connect(function()
  157. if Dude and Dude.Character and Dude.Character:FindFirstChildOfClass("Humanoid") then
  158. tlabel.Text = Dude.Name.." ["..math.floor(Dude.Character.Humanoid.Health).."/"..math.floor(Dude.Character.Humanoid.MaxHealth).."]".." ["..math.floor(Dude:DistanceFromCharacter(Client.Character.Head.Position)).."]"
  159. end
  160. end)
  161. tlabel.TextColor = BrickColor.new("Red")
  162. tlabel.TextStrokeTransparency = 0.5
  163. end
  164.  
  165. getgenv().togglefly = function()
  166. Flying = not Flying
  167. Notify("covax", "Flying: "..tostring(Flying), "", 3)
  168. local T = Client.Character:FindFirstChild("HumanoidRootPart") or Client.Character:FindFirstChild("Torso")
  169. local BV, BG = INew("BodyVelocity", T), INew("BodyGyro", T)
  170. BV.Velocity = Vec3(0, 0.1, 0);BV.MaxForce = Vec3(math.huge, math.huge, math.huge)
  171. BG.CFrame = T.CFrame;BG.P = 9e9;BG.MaxTorque = Vec3(9e9, 9e9, 9e9)
  172. local FlyPart = INew("Part", workspace)
  173. FlyPart.Anchored = true;FlyPart.Size = Vec3(6, 1, 6);FlyPart.Transparency = 1
  174.  
  175. while Flying == true and Client and Client.Character and Client.Character:FindFirstChild("Humanoid") and Client.Character.Humanoid.Health ~= 0 and RService.Heartbeat:Wait() and T do
  176. local Front, Back, Left, Right = 0, 0, 0, 0
  177. if KeysTable["W"] == true then
  178. Front = Flyspeed
  179. elseif not KeysTable["W"] == true then
  180. Front = 0
  181. end
  182. if KeysTable["A"] == true then
  183. Right = -Flyspeed
  184. elseif not KeysTable["A"] == true then
  185. Right = 0
  186. end
  187. if KeysTable["S"] == true then
  188. Back = -Flyspeed
  189. elseif not KeysTable["S"] == true then
  190. Back = 0
  191. end
  192. if KeysTable["D"] == true then
  193. Left = Flyspeed
  194. elseif not KeysTable["D"] == true then
  195. Left = 0
  196. end
  197. if tonumber(Front + Back) ~= 0 or tonumber(Left + Right) ~= 0 then
  198. BV.Velocity = ((Camera.CoordinateFrame.lookVector * (Front + Back)) + ((Camera.CoordinateFrame * CF(Left + Right, (Front + Back) * 0.2, 0).p) - Camera.CoordinateFrame.p)) * 50
  199. else
  200. BV.Velocity = Vec3(0, 0.1, 0)
  201. end
  202. BG.CFrame = Camera.CoordinateFrame
  203. end
  204. FlyPart:Destroy();BG:Remove();BV:Remove()
  205. end
  206.  
  207. Uis.InputBegan:Connect(function(Key)
  208. if not (Uis:GetFocusedTextBox()) then
  209. if Key.KeyCode == Enum.KeyCode.W then
  210. KeysTable["W"] = true
  211. end
  212. if Key.KeyCode == Enum.KeyCode.A then
  213. KeysTable["A"] = true
  214. end
  215. if Key.KeyCode == Enum.KeyCode.S then
  216. KeysTable["S"] = true
  217. end
  218. if Key.KeyCode == Enum.KeyCode.D then
  219. KeysTable["D"] = true
  220. end
  221. if Key.KeyCode == Enum.KeyCode.F then
  222. if FirstFly == true then
  223. Notify("covax", "You can now fly, like a bird.", "", 3)
  224. FirstFly = false
  225. end
  226. togglefly()
  227. end
  228. if Key.KeyCode == Enum.KeyCode.X then
  229. Noclip = not Noclip
  230. Notify("covax", "Noclip: "..tostring(Noclip), "", 3)
  231. end
  232. if Key.KeyCode == Enum.KeyCode.LeftShift then
  233. KeysTable["LeftShift"] = true
  234. while Blink == true and KeysTable["LeftShift"] == true and Client and Client.Character and RService.Heartbeat:Wait() do
  235. local ClientRF = Client.Character:FindFirstChild("HumanoidRootPart") or Client.Character:FindFirstChild("Torso")
  236. local Hum = Client.Character:FindFirstChild("Humanoid")
  237. ClientRF.CFrame = ClientRF.CFrame + Vec3(Hum.MoveDirection.X * Blinkspeed, Hum.MoveDirection.Y * Blinkspeed, Hum.MoveDirection.Z * Blinkspeed)
  238. end
  239. end
  240. end
  241. end)
  242. Uis.InputEnded:Connect(function(Key --[[Typing]])
  243. if not (Uis:GetFocusedTextBox()) then
  244. if Key.KeyCode == Enum.KeyCode.W then
  245. KeysTable["W"] = false
  246. end
  247. if Key.KeyCode == Enum.KeyCode.A then
  248. KeysTable["A"] = false
  249. end
  250. if Key.KeyCode == Enum.KeyCode.S then
  251. KeysTable["S"] = false
  252. end
  253. if Key.KeyCode == Enum.KeyCode.D then
  254. KeysTable["D"] = false
  255. end
  256. if Key.KeyCode == Enum.KeyCode.LeftShift then
  257. KeysTable["LeftShift"] = false
  258. end
  259. end
  260. end)
  261.  
  262. -- [[ Bypass ]] --
  263. local rm = getrawmetatable(game) or debug.getrawmetatable(game) or getmetatable(game)
  264. if setreadonly then setreadonly(rm, false) else make_writeable(rm, true) end
  265. local caller, cscript = checkcaller or is_protosmasher_caller, getcallingscript or get_calling_script;
  266. local rindex, nindex, ncall, closure = rm.__index, rm.__newindex, rm.__namecall, newcclosure or read_me;
  267.  
  268. rm.__newindex = closure(function(self, Meme, Val)
  269. if caller() then return nindex(self, Meme, Val) end
  270. if game.PlaceId ~= (StreetsID) then
  271. if Meme == "WalkSpeed" then
  272. return 16
  273. end
  274. if Meme == "JumpPower" then
  275. return 37.5
  276. end
  277. if Meme == "HipHeight" then
  278. return 0
  279. end
  280. if Meme == "Health" then
  281. return 100
  282. end
  283. end
  284. if self:IsDescendantOf(Client.Character) and self.Name == "HumanoidRootPart" or self.Name == "Torso" then
  285. if Meme == "CFrame" or Meme == "Position" or Meme == "Anchored" then
  286. return nil
  287. end
  288. end
  289. return nindex(self, Meme, Val)
  290. end)
  291. rm.__namecall = closure(function(self, ...)
  292. local Args, Method = {...}, getnamecallmethod() or get_namecall_method();
  293. if Method == "BreakJoints" then
  294. return wait(9e9)
  295. end
  296. if game.PlaceId ~= (StreetsID) then
  297. if Method == "FireServer" and not self.Name == "SayMessageRequest" then
  298. if tostring(self.Parent) == "ReplicatedStorage" or self.Name == "lIII" then
  299. return wait(9e9)
  300. end
  301. if Args[1] == "hey" then
  302. return wait(9e9)
  303. end
  304. end
  305. if Method == "FireServer" and self.Name == "Fire" and AimbotTarget ~= nil and Aimbot == true then
  306. return ncall(self, AimbotTarget.Character[AimPart].CFrame + AimbotTarget.Character[AimPart].Velocity/Aimvelocity)
  307. end
  308. end
  309. if game.PlaceId == (StreetsID) then
  310. if Method == "FireServer" and Args[1] == "WalkSpeed" or Args[1] == "JumpPower" or Args[1] == "HipHeight" then
  311. return nil
  312. end
  313. if Method == "FireServer" and self.Name == "Input" then
  314. if Args[1] == "bv" or Args[1] == "hb" or Args[1] == "ws" then
  315. return wait(9e9)
  316. end
  317. end
  318. if Method == "FireServer" and self.Name == "Input" and AimbotTarget ~= nil and Aimbot == true then
  319. Args[2].mousehit = AimbotTarget.Character[AimPart].CFrame + AimbotTarget.Character[AimPart].Velocity/Aimvelocity
  320. Args[2].velo = math.huge
  321. return ncall(self, unpack(Args))
  322. end
  323. end
  324. return ncall(self, unpack(Args))
  325. end)
  326. if setreadonly then setreadonly(rm, true) else make_writeable(rm, false) end
  327.  
  328. -- [[ CharacterAdded/Died ]] --
  329. Client.Character.Humanoid.Died:Connect(function()
  330. if Flying then togglefly() end
  331. end)
  332. Client.CharacterAdded:Connect(function()
  333. repeat wait() until Client.Character:FindFirstChild("Humanoid")
  334. Client.Character.Humanoid.Died:Connect(function()
  335. if Flying then togglefly() end
  336. end)
  337. end)
  338.  
  339. -- [[ Commands ]] --
  340. Commands["Play a Song"] = {
  341. ["Aliases"] = {"pl", "play", "playsong", "ps", "song"};
  342. ["Function"] = function(Args)
  343. if Args[1] then
  344. local Radio = Client.Backpack:FindFirstChild("BoomBox")
  345. if Radio then
  346. Radio.Parent = Client.Character
  347. Radio.RemoteEvent:FireServer("play", tonumber(Args[1]))
  348. end
  349. Notify("covax", "Audio: "..tonumber(Args[1]), "", 3)
  350. end
  351. end
  352. }
  353. Commands["Go AFK"] = {
  354. ["Aliases"] = {"afk", "brb"};
  355. ["Function"] = function(Args)
  356. AFK = not AFK
  357. if (not AFK) then return end
  358. spawn(function()
  359. while AFK do
  360. wait(0.5)
  361. game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(AFKMessage, "All")
  362. end
  363. end)
  364. end
  365. }
  366. Commands["Sets your Flyspeed"] = {
  367. ["Aliases"] = {"flyspeed", "fs"};
  368. ["Function"] = function(Args)
  369. if Args[1] then
  370. Flyspeed = tonumber(Args[1])
  371. Notify("covax", "Flyspeed: "..tonumber(Flyspeed), "", 3)
  372. end
  373. end
  374. }
  375. Commands["Toggles Fly"] = {
  376. ["Aliases"] = {"fly", "togglefly"};
  377. ["Function"] = function(Args)
  378. togglefly()
  379. end
  380. }
  381. Commands["Sets your Chat Command Prefix"] = {
  382. ["Aliases"] = {"prefix", "pfix"};
  383. ["Function"] = function(Args)
  384. if Args[1] then
  385. Prefix = Args[1]
  386. end
  387. Notify("covax", "Prefix: "..tostring(Prefix), "", 3)
  388. end
  389. }
  390. Commands["Sets your FieldOfView"] = {
  391. ["Aliases"] = {"fieldofview", "fov"};
  392. ["Function"] = function(Args)
  393. if Args[1] then
  394. Camera.FieldOfView = tonumber(Args[1])
  395. end
  396. Notify("covax", "FieldOfView: "..tonumber(Args[1]), "", 3)
  397. end
  398. }
  399. Commands["Toggles Blink"] = {
  400. ["Aliases"] = {"blink", "blinkspd"};
  401. ["Function"] = function(Args)
  402. Blink = not Blink
  403. Notify("covax", "Blink: "..tostring(Blink), "", 3)
  404. end
  405. }
  406. Commands["Esp a Player"] = {
  407. ["Aliases"] = {"esp", "find"};
  408. ["Function"] = function(Args)
  409. if Args[1] then
  410. EspTarget = SearchPlayers(Args[1])
  411. if EspTarget then
  412. EspPlayer(EspTarget)
  413. end
  414. end
  415. Notify("covax", "Esp Target: "..tostring(EspTarget), "", 3)
  416. end
  417. }
  418. Commands["UnEsp Esp'd Player"] = {
  419. ["Aliases"] = {"unesp", "unfind"};
  420. ["Function"] = function(Args)
  421. if Args[1] then
  422. local UnEspPlayer;UnEspPlayer = SearchPlayers(Args[1])
  423. if UnEspPlayer then
  424. for _, v in next, UnEspPlayer.Character:GetDescendants() do
  425. if v:IsA("BillboardGui") or v:IsA("TextLabel") then
  426. v:Destroy() --[[if staircase(s) go brrrRRR]]
  427. end
  428. end
  429. end
  430. end
  431. end
  432. }
  433. Commands["Rejoins Current Game"] = {
  434. ["Aliases"] = {"rejoin"};
  435. ["Function"] = function()
  436. TPService:Teleport(game.PlaceId, Client)
  437. end
  438. }
  439. Commands["Resets Your Character"] = {
  440. ["Aliases"] = {"r", "reset", "re", "res"};
  441. ["Function"] = function()
  442. ResetCharacter()
  443. end
  444. }
  445. Commands["Sets Camlock Target"] = {
  446. ["Aliases"] = {"camlock", "cam", "cl", "cml"};
  447. ["Function"] = function(Args)
  448. if Args[1] then
  449. CamlockTarget = SearchPlayers(Args[1]);Camlock = true
  450. end
  451. Notify("covax", "Camlock Target: "..tostring(CamlockTarget), "", 3)
  452. end
  453. }
  454. Commands["UnCamlocks Camlocked Target"] = {
  455. ["Aliases"] = {"uncamlock", "uncam", "uncl", "uncml"};
  456. ["Function"] = function()
  457. CamlockTarget = nil;Camlock = false
  458. Notify("covax", "Camlock: "..tostring(Camlock), "", 3)
  459. end
  460. }
  461. Commands["Sets Aimbot Target"] = {
  462. ["Aliases"] = {"aim", "s", "aimbot", "shoot"};
  463. ["Function"] = function(Args)
  464. if Args[1] then
  465. AimbotTarget = SearchPlayers(Args[1]);Aimbot = true
  466. end
  467. Notify("covax", "Aimbot Target: "..tostring(AimbotTarget), "", 3)
  468. end
  469. }
  470. Commands["UnAimbots Aimbotted Target"] = {
  471. ["Aliases"] = {"unaim", "uns", "unaimbot", "unshoot"};
  472. ["Function"] = function()
  473. AimbotTarget = nil;Aimbot = false
  474. Notify("covax", "Aimbot: "..tostring(Aimbot), "", 3)
  475. end
  476. }
  477. Commands["View a Player"] = {
  478. ["Aliases"] = {"view"};
  479. ["Function"] = function(Args)
  480. if Args[1] then
  481. ViewTarget = SearchPlayers(Args[1]);Viewing = true
  482. end
  483. Notify("covax", "View Target: "..tostring(ViewTarget), "", 3)
  484. end
  485. }
  486. Commands["UnView Viewed Target"] = {
  487. ["Aliases"] = {"unview"};
  488. ["Function"] = function()
  489. ViewTarget = nil;Viewing = false
  490. Camera.CameraSubject = Client.Character
  491. Notify("covax", "Viewing: "..tostring(Viewing), "", 3)
  492. end
  493. }
  494. Commands["Sets Aimvelocity"] = {
  495. ["Aliases"] = {"aimvelocity"};
  496. ["Function"] = function(Args)
  497. if Args[1] then
  498. Aimvelocity = tonumber(Args[1])
  499. end
  500. Notify("covax", "Aimvelocity: "..tonumber(Args[1]), "", 3)
  501. end
  502. }
  503. Commands["Toggles Noclip"] = {
  504. ["Aliases"] = {"noclip", "nc", "nclip"};
  505. ["Function"] = function()
  506. Noclip = not Noclip
  507. Notify("covax", "Noclip: "..tostring(Noclip), "", 3)
  508. end
  509. }
  510. Commands["Sets Blinkspeed"] = {
  511. ["Aliases"] = {"bs", "blinkspeed"};
  512. ["Function"] = function(Args)
  513. if Args[1] then
  514. Blinkspeed = tonumber(Args[1])
  515. end
  516. Notify("covax", "Blinkspeed: "..tonumber(Args[1]), "", 3)
  517. end
  518. }
  519. Commands["Sets Aimbot Part"] = {
  520. ["Aliases"] = {"aimpart"};
  521. ["Function"] = function(Args)
  522. AimPart = Args[1]
  523. if AimPartTable[Args[1]] then
  524. AimPart = AimPartTable[Args[1]]
  525. end
  526. Notify("covax", "AimPart: "..tostring(AimPart), "", 3)
  527. end
  528. }
  529. Commands["Removes Chairs"] = {
  530. ["Aliases"] = {"removechair", "rc"};
  531. ["Function"] = function()
  532. for _, v in next, workspace:GetChildren() do
  533. if v:IsA("Seat") then
  534. v:Destroy()
  535. end
  536. end
  537. end
  538. }
  539.  
  540.  
  541. RService.Stepped:Connect(function()
  542. if Camlock == true and CamlockTarget and CamlockTarget.Character and CamlockTarget.Character:FindFirstChild(CamPart) then
  543. Camera.CoordinateFrame = CF(Camera.CoordinateFrame.p, CF(CamlockTarget.Character[CamPart].Position).p)
  544. end
  545. if Noclip == true then
  546. for i = 1, #Client.Character:GetChildren() do
  547. local CG = Client.Character:GetChildren()[i]
  548. if CG:IsA("BasePart") then
  549. CG.CanCollide = false
  550. end
  551. end
  552. pcall(function()
  553. if Client and Client.Backpack then
  554. Client.Backpack:FindFirstChild("Glock").Barrel.CanCollide = false
  555. else
  556. Client.Character:FindFirstChild("Glock").Barrel.CanCollide = false
  557. end
  558. end)
  559. end
  560. if Viewing == true and ViewTarget ~= nil then
  561. Camera.CameraSubject = ViewTarget.Character
  562. end
  563. if Flying and Client.Character then
  564. if Client.Character and Client.Character:FindFirstChild("Humanoid") then
  565. RService.Heartbeat:Wait()
  566. Client.Character.Humanoid.PlatformStand = false;Client.Character.Humanoid.Sit = false
  567. Client.Character.Humanoid:ChangeState(Enum.HumanoidStateType.Running)
  568. end
  569. end
  570. if Client.Character:FindFirstChild("FlyPart") then
  571. Client.Character:FindFirstChild("FlyPart").CFrame = Client.Character.HumanoidRootPart.CFrame * CF(0, -3.5, 0)
  572. end
  573. end)
  574.  
  575. print([[
  576.  
  577. got the source for a dick pic :smirk:
  578. =======
  579.  
  580. -------
  581. Toggles = Turns On and Off
  582. Alt = Other names for the Command
  583. -------
  584.  
  585. Keybinds:
  586.  
  587. F - Toggles Fly
  588. X - Toggles Noclip
  589. ; - Toggles Command Bar
  590. =======
  591.  
  592. (Names can be Shortened/Not-Capitalized)
  593. Commands:
  594.  
  595. [1]: pl <id here>, Plays that song in your Radio (Alt: play, playsong, ps, song)
  596. [2]: afk, Toggles Anti-Afk (Alt: brb)
  597. [3]: flyspeed <number here>, Sets your FlySpeed (Alt: fs)
  598. [4]: fly, Toggles Fly (Alt: togglefly)
  599. [5]: prefix <letter or whatever here>, Sets your Chat Command Prefix (Alt: pfix)
  600. [6]: fieldofview <number here>, Sets your FieldOfView (Alt: fov, f)
  601. [7]: blink, Toggles Blink (Alt: blinkspd)
  602. [8]: esp <name here>, Sets ESP Target
  603. [9]: unesp <name here>, UnEsp's ESP'd Target
  604. [10]: rejoin, Rejoins the Current Game
  605. [11]: r, Resets your Character (Alt: reset, re, res)
  606. [12]: camlock <name here>, Sets Camlock Target (Alt: cam, cl, cml)
  607. [13]: uncamlock, UnCamlocks Camlocked Target (Alt: uncam, uncl, uncml)
  608. [14]: aimbot <name here>, Sets Aimbot Target (Alt: s, aim, shoot) (Press LeftClick/Mouse1 to Aimbot them)
  609. [15]: unaimbot, UnAimbots Aimbot Target (Alt: uns, unaim, unshoot)
  610. [16]: view <name here>, Sets View Target
  611. [17]: unview, UnViews Viewed Target
  612. [18]: aimvelocity <number here>, Sets Aimvelocity
  613. [19]: noclip, Toggles Noclip
  614. [20]: blinkspeed <number here>, Sets Blinkspeed (Alt: bs)
  615. [21]: aimpart <torso or head>, Sets the Part in which Aimbot shoots at
  616. [22]: removechair, Removes Chairs in the workspace (Alt: rc)
  617.  
  618. ]])
  619.  
  620. Client.Chatted:Connect(RunCommand)
  621. Notify("covax", "Took "..string.format("%.3f", tick() - LoadingTime).." f9 for cmds", "" , 3)
  622. -- credits to unknown X
  623. local ScreenGui = Instance.new("ScreenGui")
  624. local TextLabel = Instance.new("TextLabel")
  625. local Frame = Instance.new("Frame")
  626. local HealthInfo = Instance.new("TextLabel")
  627. local WalkSpeedtxt = Instance.new("TextLabel")
  628. local WsInfo = Instance.new("TextLabel")
  629. local Healthtxt = Instance.new("TextLabel")
  630. local StanInfo = Instance.new("TextLabel")
  631. local StanTxt = Instance.new("TextLabel")
  632. local ToolsInfo = Instance.new("TextLabel")
  633. local Toolstxt = Instance.new("TextLabel")
  634. local lp = game:GetService("Players").LocalPlayer
  635. local p = game:GetService("Players")
  636. local hum = lp.Character.Humanoid
  637. local info = true or false
  638. info = true
  639. local m = lp:GetMouse()
  640. ScreenGui.Parent = game.CoreGui
  641. TextLabel.Parent = ScreenGui
  642. TextLabel.BackgroundColor3 = Color3.new(0.278431, 0.278431, 0.278431)
  643. TextLabel.BorderColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  644. TextLabel.Position = UDim2.new(0, 0, 0.537848592, 0)
  645. TextLabel.Size = UDim2.new(0, 160, 0, 12)
  646. TextLabel.Font = Enum.Font.Code
  647. TextLabel.Text = "Player Info"
  648. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  649. TextLabel.TextSize = 14
  650. Frame.Parent = TextLabel
  651. Frame.BackgroundColor3 = Color3.new(0, 0, 0)
  652. Frame.BackgroundTransparency = 0.40000000596046
  653. Frame.BorderSizePixel = 0
  654. Frame.Position = UDim2.new(0, 0, 1, 0)
  655. Frame.Size = UDim2.new(0, 160, 0, 100)
  656. HealthInfo.Name = "HealthInfo"
  657. HealthInfo.Parent = Frame
  658. HealthInfo.BackgroundColor3 = Color3.new(1, 1, 1)
  659. HealthInfo.BackgroundTransparency = 1
  660. HealthInfo.Position = UDim2.new(-0.000946760178, 0, 0.0700000077, 0)
  661. HealthInfo.Size = UDim2.new(0, 47, 0, 21)
  662. HealthInfo.Font = Enum.Font.Code
  663. HealthInfo.Text = "Health:"
  664. HealthInfo.TextColor3 = Color3.new(1, 1, 1)
  665. HealthInfo.TextSize = 14
  666. WalkSpeedtxt.Name = "WalkSpeedtxt"
  667. WalkSpeedtxt.Parent = Frame
  668. WalkSpeedtxt.BackgroundColor3 = Color3.new(1, 1, 1)
  669. WalkSpeedtxt.BackgroundTransparency = 1
  670. WalkSpeedtxt.Position = UDim2.new(0.455303222, 0, 0.279999971, 0)
  671. WalkSpeedtxt.Size = UDim2.new(0, 30, 0, 21)
  672. WalkSpeedtxt.Font = Enum.Font.Code
  673. WalkSpeedtxt.Text = ""
  674. WalkSpeedtxt.TextColor3 = Color3.new(255, 0, 0)
  675. WalkSpeedtxt.TextSize = 14
  676. WsInfo.Name = "WsInfo"
  677. WsInfo.Parent = Frame
  678. WsInfo.BackgroundColor3 = Color3.new(1, 1, 1)
  679. WsInfo.BackgroundTransparency = 1
  680. WsInfo.Position = UDim2.new(0.0740532428, 0, 0.279999971, 0)
  681. WsInfo.Size = UDim2.new(0, 47, 0, 21)
  682. WsInfo.Font = Enum.Font.Code
  683. WsInfo.Text = "WalkSpeed:"
  684. WsInfo.TextColor3 = Color3.new(1, 1, 1)
  685. WsInfo.TextSize = 14
  686. Healthtxt.Name = "Healthtxt"
  687. Healthtxt.Parent = Frame
  688. Healthtxt.BackgroundColor3 = Color3.new(1, 1, 1)
  689. Healthtxt.BackgroundTransparency = 1
  690. Healthtxt.Position = UDim2.new(0.505303204, 0, 0.0700000003, 0)
  691. Healthtxt.Size = UDim2.new(0, 40, 0, 21)
  692. Healthtxt.Font = Enum.Font.Code
  693. Healthtxt.Text = ""
  694. Healthtxt.TextColor3 = Color3.new(255, 0, 0)
  695. Healthtxt.TextSize = 12
  696. StanInfo.Name = "StanInfo"
  697. StanInfo.Parent = Frame
  698. StanInfo.BackgroundColor3 = Color3.new(1, 1, 1)
  699. StanInfo.BackgroundTransparency = 1
  700. StanInfo.Position = UDim2.new(-0.000946760178, 0, 0.49000001, 0)
  701. StanInfo.Size = UDim2.new(0, 59, 0, 21)
  702. StanInfo.Font = Enum.Font.Code
  703. StanInfo.Text = "Stamina:"
  704. StanInfo.TextColor3 = Color3.new(1, 1, 1)
  705. StanInfo.TextSize = 14
  706. StanTxt.Name = "StanTxt"
  707. StanTxt.Parent = Frame
  708. StanTxt.BackgroundColor3 = Color3.new(1, 1, 1)
  709. StanTxt.BackgroundTransparency = 1
  710. StanTxt.Position = UDim2.new(0.62405324, 0, 0.48999995, 0)
  711. StanTxt.Size = UDim2.new(0, 30, 0, 21)
  712. StanTxt.Font = Enum.Font.Code
  713. StanTxt.Text = ""
  714. StanTxt.TextColor3 = Color3.new(255, 0, 0)
  715. StanTxt.TextSize = 14
  716. ToolsInfo.Name = "ToolsInfo"
  717. ToolsInfo.Parent = Frame
  718. ToolsInfo.BackgroundColor3 = Color3.new(1, 1, 1)
  719. ToolsInfo.BackgroundTransparency = 1
  720. ToolsInfo.Position = UDim2.new(-0.0134467632, 0, 0.699999988, 0)
  721. ToolsInfo.Size = UDim2.new(0, 103,0, 21)
  722. ToolsInfo.Font = Enum.Font.Code
  723. ToolsInfo.Text = "Equipped Tool:"
  724. ToolsInfo.TextColor3 = Color3.new(1, 1, 1)
  725. ToolsInfo.TextSize = 14
  726. Toolstxt.Name = "Toolstxt"
  727. Toolstxt.Parent = Frame
  728. Toolstxt.BackgroundColor3 = Color3.new(1, 1, 1)
  729. Toolstxt.BackgroundTransparency = 1
  730. Toolstxt.Position = UDim2.new(0.687, 0,0.7, 0)
  731. Toolstxt.Size = UDim2.new(0, 30, 0, 21)
  732. Toolstxt.Font = Enum.Font.Code
  733. Toolstxt.Text = ""
  734. Toolstxt.TextColor3 = Color3.new(255, 0, 0)
  735. Toolstxt.TextSize = 14
  736. if info == true and not info == false then
  737. m.Button1Down:connect(function()
  738. if m.Target or m.Target.Parent then
  739. local plr = p:GetPlayerFromCharacter(m.Target.Parent)
  740. local name = plr.Name
  741. if plr ~= nil then
  742. local tools = plr.Backpack
  743. TextLabel.Text = "Info("..name..")"
  744. repeat
  745. wait()
  746. if TextLabel.Text == "Info("..name..")" then
  747. TextLabel.Text = "Info("..name..")"
  748. else
  749. plr = nil
  750. end
  751. Healthtxt.Text = plr.Character.Humanoid.Health
  752. WalkSpeedtxt.Text = plr.Character.Humanoid.WalkSpeed
  753. StanTxt.Text = plr.Backpack.ServerTraits.Stann.Value
  754. for _,x in pairs(plr.Character:GetChildren()) do
  755. if x:IsA("Tool") then
  756. Toolstxt.Text = x.Name
  757. else
  758. Toolstxt.Text = ""
  759. end
  760. end
  761. until info == false
  762. end
  763. end
  764. end)
  765. end
  766. -- end of that script lol
  767.  
  768. -- zoom inf
  769. game.Players.LocalPlayer.CameraMaxZoomDistance = math.huge
  770. -- end of zoom inf
  771.  
  772.  
  773.  
  774. -- walkshoot
  775. if game.PlaceId == 4669040 or 455366377 then
  776. local mt = getrawmetatable(game)
  777. local backup
  778. backup = hookfunction(mt.__newindex, newcclosure(function(self, key, value)
  779. if key == "WalkSpeed" and value < 16 then
  780. value = 16
  781. end
  782. return backup(self, key, value)
  783. end))
  784. end
  785. --end of walkshoot
Comments
Add Comment
Please, Sign In to add comment