Advertisement
Cra-Z-Gaming

NoScope V1.0 / Roblox Mod Menu

Oct 2nd, 2024 (edited)
824
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 6.60 KB | Gaming | 0 0
  1. --"NoScope V1.0" is all my scripts into one--
  2.  
  3. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/Robojini/Tuturial_UI_Library/main/UI_Template_1"))()
  4.  
  5. -- Creating the main window
  6. local Window = Library.CreateLib("NoScope V1.0", "RJTheme8")
  7.  
  8. -- Main Tab (ESP, Aimbot, Turn Off Aimbot)
  9. local MainTab = Window:NewTab("Main")
  10. local MainSection = MainTab:NewSection("Scripts")
  11.  
  12. -- ESP Script Button
  13. MainSection:NewButton("ESP", "Adds ESP to players", function()
  14.     local players = game:GetService("Players")
  15.     local localPlayer = players.LocalPlayer
  16.     local camera = game:GetService("Workspace").CurrentCamera
  17.     local runService = game:GetService("RunService")
  18.  
  19.     local function createESPBox(player)
  20.         local highlight = Instance.new("Highlight")
  21.         highlight.Name = player.Name .. "_ESP"
  22.         highlight.Adornee = player.Character
  23.         highlight.FillTransparency = 1
  24.  
  25.         if player.Team then
  26.             highlight.OutlineColor = player.Team.TeamColor.Color
  27.         else
  28.             highlight.OutlineColor = Color3.new(1, 1, 1)
  29.         end
  30.  
  31.         highlight.OutlineTransparency = 0
  32.         highlight.DepthMode = Enum.HighlightDepthMode.AlwaysOnTop
  33.         highlight.Parent = player.Character
  34.     end
  35.  
  36.     local function addESP()
  37.         for _, player in pairs(players:GetPlayers()) do
  38.             if player ~= localPlayer and player.Character and player.Character:FindFirstChild("HumanoidRootPart") then
  39.                 if not player.Character:FindFirstChild(player.Name .. "_ESP") then
  40.                     createESPBox(player)
  41.                 end
  42.             end
  43.         end
  44.     end
  45.  
  46.     runService.RenderStepped:Connect(function()
  47.         addESP()
  48.     end)
  49.  
  50.     players.PlayerRemoving:Connect(function(player)
  51.         if player.Character and player.Character:FindFirstChild(player.Name .. "_ESP") then
  52.             player.Character[player.Name .. "_ESP"]:Destroy()
  53.         end
  54.     end)
  55. end)
  56.  
  57. -- Aimbot Script Button
  58. local aimbotEnabled = false
  59. MainSection:NewButton("Aimbot", "Locks camera onto the closest player", function()
  60.     local Players = game:GetService("Players")
  61.     local RunService = game:GetService("RunService")
  62.     local UserInputService = game:GetService("UserInputService")
  63.     local Camera = workspace.CurrentCamera
  64.  
  65.     local function findClosestPlayer()
  66.         local localPlayer = Players.LocalPlayer
  67.         local closestPlayer = nil
  68.         local shortestDistance = math.huge
  69.  
  70.         for _, player in ipairs(Players:GetPlayers()) do
  71.             if player ~= localPlayer and player.Character and player.Character:FindFirstChild("Head") then
  72.                 local head = player.Character.Head
  73.                 local distance = (localPlayer.Character.HumanoidRootPart.Position - head.Position).magnitude
  74.  
  75.                 if distance < shortestDistance then
  76.                     shortestDistance = distance
  77.                     closestPlayer = player
  78.                 end
  79.             end
  80.         end
  81.  
  82.         return closestPlayer
  83.     end
  84.  
  85.     local function aimCameraAtClosestPlayer()
  86.         RunService.RenderStepped:Connect(function()
  87.             if UserInputService:IsMouseButtonPressed(Enum.UserInputType.MouseButton2) and aimbotEnabled then
  88.                 local closestPlayer = findClosestPlayer()
  89.  
  90.                 if closestPlayer and closestPlayer.Character and closestPlayer.Character:FindFirstChild("Head") then
  91.                     local head = closestPlayer.Character.Head
  92.                     Camera.CFrame = CFrame.new(Camera.CFrame.Position, head.Position)
  93.                 end
  94.             end
  95.         end)
  96.     end
  97.  
  98.     aimbotEnabled = true
  99.     aimCameraAtClosestPlayer()
  100. end)
  101.  
  102. -- Turn Off Aimbot Button
  103. MainSection:NewButton("Turn Off Aimbot", "Disables the aimbot functionality", function()
  104.     aimbotEnabled = false
  105. end)
  106.  
  107. -- Infinite Yield Script
  108. MainSection:NewButton("Infinite Yield", "Load Infinite Yield", function()
  109.     loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
  110. end)
  111.  
  112. -- Infinite Jump Script
  113. MainSection:NewButton("Infinite Jump", "Infinite Jump for any game", function()
  114.     loadstring(game:HttpGet("https://cdn.wearedevs.net/scripts/Infinite%20Jump.txt"))()
  115. end)
  116.  
  117. -- Click To Teleport Button
  118. MainSection:NewButton("Click To Teleport", "Teleport to where you click", function()
  119.     loadstring(game:HttpGet("https://cdn.wearedevs.net/scripts/Click%20Teleport.txt"))()
  120. end)
  121.  
  122. -- AutoParry Tab
  123. local AutoParryTab = Window:NewTab("AutoParry")
  124. local AutoParrySection = AutoParryTab:NewSection("AutoParry")
  125.  
  126. AutoParrySection:NewDropdown("AutoParry Mods", "Choose a mod", {"AutoBlock 1", "AutoBlock 2", "AutoBlock 3"}, function(currentOption)
  127.     if currentOption == "AutoBlock 1" then
  128.         loadstring(game:HttpGet("https://raw.githubusercontent.com/1f0yt/community/main/AutoBlock"))()
  129.     elseif currentOption == "Autoblock 2" then
  130.         loadstring(game:HttpGet("https://raw.githubusercontent.com/1f0yt/community/main/autoparrybest"))()
  131.     elseif currentOption == "AutoBlock 3" then
  132.         loadstring(game:HttpGet("https://api.luarmor.net/files/v3/loaders/b964c4456aeff691784ffaaa181ab423.lua"))()
  133.     end
  134. end)
  135.  
  136. -- Random Scripts Tab
  137. local RandomScriptsTab = Window:NewTab("Random Scripts")
  138. local RandomScriptsSection = RandomScriptsTab:NewSection("Random Scripts")
  139.  
  140. RandomScriptsSection:NewButton("Universal Fly", "Universal Fly Maybe not work", function()
  141.     loadstring(game:HttpGet("https://raw.githubusercontent.com/XNEOFF/FlyGuiV3/main/FlyGuiV3.txt"))()
  142. end)
  143.  
  144. RandomScriptsSection:NewSlider("SpeedHack", "Speed hack for any game", 500, 0, function(s)
  145.     game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
  146. end)
  147.  
  148. RandomScriptsSection:NewSlider("JumpPower", "Jump hack for any game", 500, 0, function(s)
  149.     game.Players.LocalPlayer.Character.Humanoid.JumpPower = s
  150. end)
  151.  
  152. RandomScriptsSection:NewSlider("Gravity", "Gravity Hack for any game", 500, 0, function(s)
  153.     game.workspace.Gravity = s
  154. end)
  155.  
  156. RandomScriptsSection:NewButton("Teleport", "Teleporter for any game", function()
  157.     loadstring(game:HttpGet("https://pastebin.com/raw/AbDM2er1"))()
  158. end)
  159.  
  160. RandomScriptsSection:NewButton("Kat", "Aimbot", function()
  161.     loadstring(game:HttpGet("https://raw.githubusercontent.com/MrPectable/MrPectableSource/main/v1.lua"))()
  162. end)
  163.  
  164. -- Donation Tab
  165. local DonationTab = Window:NewTab("Donation")
  166. local DonationSection = DonationTab:NewSection("Support Us")
  167.  
  168. DonationSection:NewLabel("Cash App Name: $vlad118")
  169.  
  170. -- To close the GUI
  171. Window:OnClose(function()
  172.     game:GetService("CoreGui"):FindFirstChild("NoScope V1.0"):Destroy()
  173. end)
  174.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement