Phantom Forces AIMBOT - LOWER CAM SENSITIVITY
Phantom Forces AIMBOT - LOWER CAM SENSITIVITY
Phantom Forces AIMBOT - LOWER CAM SENSITIVITY
getgenv().AIMBOT_SETTINGS = {
smoothness = 2,
FOV = 400,
VisibleCheck = true,
}
-- services
local players = game:GetService("Players")
local RunService = game:GetService("RunService")
local UserInputService = game:GetService("UserInputService")
-- variables
local client = players.LocalPlayer
local shared = getrenv().shared
local camera = workspace.CurrentCamera
local mouseLocation = UserInputService.GetMouseLocation
local WorldToViewportPoint = camera.WorldToViewportPoint
-- modules
local replicationObject = shared.require("ReplicationObject")
local replicationInterface = shared.require("ReplicationInterface")
-- functions
local function isAlive(entry)
return replicationObject.isAlive(entry)
end
RunService.RenderStepped:Connect(function()
if UserInputService:IsMouseButtonPressed(Enum.UserInputType.MouseButton2) then
local _pos = get_closest(getgenv().AIMBOT_SETTINGS.FOV)
if _pos then
aimAt(_pos, getgenv().AIMBOT_SETTINGS.smoothness)
end
end
if circle.__OBJECT_EXISTS then
circle.Position = mouseLocation(UserInputService)
circle.Radius = getgenv().AIMBOT_SETTINGS.FOV
end
end)