17.2K views
9.3K downloads
1 year ago
This new script for Strucid allows you to always headshot others to kill them as quickly as possible!
Script Features:
Silent Aim
This script has remained unmodified since its initial release
--BROUGHT TO YOU BY RSCRIPTS.NET!--
getgenv().Settings = {
Enabled = true,
}
local Players = game:GetService("Players")
local LocalPlayer = Players.LocalPlayer
local Mouse = LocalPlayer:GetMouse()
local Camera = game.Workspace.CurrentCamera
local RunService = game:GetService("RunService")
local UserInputService = game:GetService("UserInputService")
function IsAlive()
if Players.LocalPlayer.PlayerGui:FindFirstChild("MainGui") then
return true
end
return false
end
function Closest()
local Distance = math.huge
local Closest
if IsAlive() then
for i,v in pairs(Players:GetPlayers()) do
if v ~= LocalPlayer then
if v.Character and v.Character:FindFirstChild("HumanoidRootPart") then
local Pos, OnScreen = Camera:WorldToScreenPoint(v.Character.Head.Position)
local RealMouse = UserInputService:GetMouseLocation()
local Dist = (Vector2.new(Pos.X, Pos.Y) - Vector2.new(RealMouse.X, RealMouse.Y)).Magnitude
if Dist < Distance then
Distance = Dist
Closest = v
end
end
end
end
end
return Closest
end
LocalPlayer.PlayerGui.ChildAdded:Connect(function(child)
if child.Name == "MainGui" then
local Module = require(child:FindFirstChild("NewLocal").Tools.Tool.Gun)
local Old = Module.ConeOfFire
Module.ConeOfFire = function(...)
local closest = Closest()
if closest ~= nil and Settings.Enabled then
return closest.Character.HumanoidRootPart.CFrame.p
end
return Old(...)
end
end
end)
Similiar Scripts
Hungry for more? Check out these Roblox Scripts!
17K views
10 months ago

NeptuneHook | Strucid Silent Aimbot, ESP & MORE
Strucid Battle Royale
Strucid Battle Royale
19.6K views
1 year ago

Zombie Rush Silent Aim Script
UPDATE Zombie Rush
UPDATE Zombie Rush
0 Comments
Log in here to comment