Phantom Forces Aimbot (Legit Style) 4th March 2023
Phantom Forces Aimbot (Legit Style) 4th March 2023
S = {
Legit = true,
FOV = 250,
WallCheck = true,
Smooth = 0.1
}
for i,v in pairs(game:GetChildren()) do
getgenv()[v.ClassName] = v
end
local Player = Players.LocalPlayer
local Mouse = Player:GetMouse()
local Shoot = false
function NotObstructing(i, v)
if S.WallCheck then
c = Workspace.CurrentCamera.CFrame.Position
a = Ray.new(c, i - c)
f = Workspace:FindPartOnRayWithIgnoreList(a, v)
return f == nil
else
return true
end
end
UserInputService.InputBegan:Connect(
function(v)
if v.UserInputType == Enum.UserInputType.MouseButton2 then
Shoot = true
end
end
)
UserInputService.InputEnded:Connect(
function(v)
if v.UserInputType == Enum.UserInputType.MouseButton2 then
Shoot = false
end
end
)
RunService.Stepped:Connect(function()
pcall(function()
if not S.Legit or not Shoot then return end
local SexPosition =
Return(GetClosestPlayerToCurser():GetModelCFrame().Position)
local MousePosition = Return(Mouse.Hit.Position)
local OldX, OldY = (SexPosition.X - MousePosition.X), (SexPosition.Y -
MousePosition.Y)
mousemoverel(OldX * S.Smooth, OldY * S.Smooth)
end)
end)