Sign In to Your Account

Manual registration is temporarily disabled. Please use Discord, Google or GitHub to create an account.

CONTINUE WITH
Flick Silent Aim Open Source - [FPS] Flick Script | Free Roblox Script
[FPS] Flick [FPS] Flick

Flick Silent Aim Open Source

[FPS] Flick 4 views 3 days ago
Flick Silent Aim Open Source - Roblox Script
Mobile Mobile Friendly
Key Key Required

Description

Credits: 090

Open Source Silent Aim Have Fun Skidding

[FPS] Flick
Explore more scripts
View all [FPS] Flick scripts

44 Lines 1,776 Bytes
local Players = game:GetService("Players")
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local Workspace = game:GetService("Workspace")
local lp = game:GetService("Players").LocalPlayer
local Camera = Workspace.CurrentCamera
local BulletHandler = require(ReplicatedStorage.ModuleScripts.GunModules.BulletHandler)

local function getClosestToCrosshair()
    local closestDist = math.huge
    local closestPlayer = nil
    local mousePos = Camera.ViewportSize / 2
    for _, player in pairs(game:GetService("Players"):GetPlayers()) do
        if player ~= lp and player.Character and player.Character:FindFirstChild("Head") and player.Character:FindFirstChild("Humanoid") then
            if player.Character.Humanoid.Health > 0 then
                local screenPos, onScreen = Camera:WorldToViewportPoint(player.Character.Head.Position)
                if onScreen then
                    local dist = (Vector2.new(screenPos.X, screenPos.Y) - mousePos).Magnitude
                    if dist < closestDist then
                        closestDist = dist
                        closestPlayer = player
                    end
                end
            end
        end
    end
    return closestPlayer
end

local oldFire = BulletHandler.Fire
BulletHandler.Fire = function(arg1)
    if not (arg1 and arg1.Misc) then return oldFire(arg1) end

    local target = getClosestToCrosshair()
    if target and target.Character and target.Character:FindFirstChild("Head") then
        local headPos = target.Character.Head.Position
        arg1.Direction = (headPos - arg1.Origin).Unit
        if arg1.Misc then
            arg1.Misc.CamCFrame = CFrame.new(arg1.Origin, headPos)
        end
    end

    oldFire(arg1)
end

Comments

Comments section coming soon...

Frequently Asked Questions

To use this script, you need a Roblox Executor. Simply copy the script from this page, paste it into your executor, and run it while you are in the [FPS] Flick game.

This script may require a payment or subscription. Please check the script's description for more details.

Yes, this script has a key system. You may need to complete a task or join a Discord server to get a key.

Yes, this script is designed to be compatible with mobile executors.

Similar Scripts

Share Script

Share this script with others by copying the link or using your device's share options.

https://rbxscripts.net/scripts/flick-silent-aim-open-source/
or

Report Script

Help us maintain a safe community. Your report will be reviewed by our moderation team and appropriate action will be taken if needed.

Select a reason...
Malicious Code
Inappropriate Content
Copyright Infringement
Spam
Misleading Information
Other