Sign In to Your Account

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

CONTINUE WITH
Kill All Open Source - 🎯 Deadeye[UPD] Script | Free Roblox Script
🎯 Deadeye[UPD] 🎯 Deadeye[UPD]

Kill All Open Source

🎯 Deadeye[UPD] • 1 views • 4 mins ago
Kill All Open Source - Roblox Script
Mobile Mobile Friendly
Key Key Required

Description

Credits: 090

Made in 5 mins so can be better happy skidding

🎯 Deadeye[UPD]
Explore more scripts
View all 🎯 Deadeye[UPD] scripts

62 Lines 2,203 Bytes
local Players = game:GetService("Players")
local RunService = game:GetService("RunService")
local Workspace = game:GetService("Workspace")
local lp = Players.LocalPlayer
local Remote = Workspace:WaitForChild("Event"):WaitForChild("GunShotManage_RemoteEvent")

local lastHealth = {}

local function processTarget(model, originPart)
    local head = model:FindFirstChild("Head")
    local humanoid = model:FindFirstChildOfClass("Humanoid")

    if head and humanoid and humanoid.Health > 0 then
        if model:FindFirstChildOfClass("ForceField") then return false end
        if head:FindFirstChild("TeamMate") then return false end
        
        local myTeam = lp:GetAttribute("TeamNum")
        local targetTeam = model:GetAttribute("TeamNum")
        if targetTeam and myTeam and targetTeam == myTeam then return false end

        local originPos = originPart.Position
        local targetPos = head.Position
        local timestamp = Workspace:GetServerTimeNow()
        
        if lastHealth[model] and lastHealth[model] <= humanoid.Health then
            timestamp = timestamp + 0.1
        end
        
        lastHealth[model] = humanoid.Health

        Remote:FireServer({
            Data = {
                vector.create(originPos.X, originPos.Y, originPos.Z),
                vector.create(targetPos.X, targetPos.Y, targetPos.Z),
                head,
                vector.create(targetPos.X, targetPos.Y, targetPos.Z),
                vector.create(0, 0, 0),
                timestamp
            },
            TYPE = "Shoot"
        })
        return true
    else
        lastHealth[model] = nil
        return false
    end
end

RunService.Heartbeat:Connect(function()
    local char = lp.Character
    local originPart = char and char:FindFirstChild("Head")
    if not originPart then return end

    local playerFolder = Workspace:FindFirstChild("Player")
    if playerFolder then
        for _, targetModel in ipairs(playerFolder:GetChildren()) do
            if targetModel:IsA("Model") and targetModel ~= char then
                processTarget(targetModel, originPart)
            end
        end
    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 🎯 Deadeye[UPD] 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/kill-all-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