Sign In to Your Account

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

CONTINUE WITH
Knife Aura - [FPS] Flick Script | Free Roblox Script
[FPS] Flick [FPS] Flick

Knife Aura

[FPS] Flick 105 views 3 months ago
Knife Aura - Roblox Script

Description

Credits: 090

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

38 Lines 1,367 Bytes
-- Adonis Bypass (Not Mine)
loadstring(
    game:HttpGet(
        'https://raw.githubusercontent.com/Pixeluted/adoniscries/main/Source.lua',
        true
    )
)()

-- Knife Aura
local Players = game:GetService("Players")
local LocalPlayer = Players.LocalPlayer

while task.wait(0.1) do
    local Character = LocalPlayer.Character or LocalPlayer.CharacterAdded:Wait()
    local Root = Character:FindFirstChild("HumanoidRootPart")
    local LocalCrit = Character:FindFirstChild("Crit")
    if not (Root and LocalCrit) then continue end

    local Closest, Distance = nil, math.huge

    for _, Player in pairs(Players:GetPlayers()) do
        if Player ~= LocalPlayer and Player.Character and Player.Character:FindFirstChild("HumanoidRootPart") then
            local Magnitude = (Player.Character.HumanoidRootPart.Position - Root.Position).Magnitude
            if Magnitude < Distance then
                Distance = Magnitude
                Closest = Player
            end
        end
    end

    if Closest and Closest.Character and Closest.Character:FindFirstChild("Crit") then
        local TargetCrit = Closest.Character.Crit
        TargetCrit.CFrame = LocalCrit.CFrame
        local args = { TargetCrit }
        LocalPlayer:WaitForChild("ClientRemotes"):WaitForChild("MeleeEvent"):FireServer(unpack(args))
    end
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.

Yes, this script is completely free to use.

No, this script does not require a key.

This script is primarily designed for desktop. Mobile compatibility is not guaranteed.

Similar Scripts

Share Script

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

https://rbxscripts.net/scripts/knife-aura/
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