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 Src - Strike Back [đŸ”¥Season 1] Script | Free Roblox Script
Strike Back [đŸ”¥Season 1] Strike Back [đŸ”¥Season 1]

Kill All Open Src

Strike Back [đŸ”¥Season 1] • 3 views • 9 hours ago
Kill All Open Src - Roblox Script
Mobile Mobile Friendly
Key Key Required

Description

Credits: 090

Can easily be improved i can care less to so enjoyKill AllMelee Aura

Strike Back [đŸ”¥Season 1]
Explore more scripts
View all Strike Back [đŸ”¥Season 1] scripts

63 Lines 2,653 Bytes
local Players = game:GetService("Players")
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local Workspace = game:GetService("Workspace")

local LocalPlayer = Players.LocalPlayer
local CharFolder = Workspace:WaitForChild("Character")
local WeaponHit = ReplicatedStorage:WaitForChild("WeaponsSystem"):WaitForChild("Network"):WaitForChild("WeaponHit")
local WeaponFired = ReplicatedStorage:WaitForChild("WeaponsSystem"):WaitForChild("Network"):WaitForChild("WeaponFired")

task.spawn(function()
    while task.wait(0.3) do
        local char = CharFolder:FindFirstChild(LocalPlayer.Name)
        if not char then continue end
        
        local weapon = char:FindFirstChildOfClass("Tool")
        if not weapon then continue end

        local isMelee = not weapon:FindFirstChild("AmmoCapacity", true)

        for _, obj in pairs(CharFolder:GetChildren()) do
            if obj:IsA("Model") and obj ~= char then
                local hum = obj:FindFirstChildOfClass("Humanoid")
                local head = obj:FindFirstChild("Head")
                
                if hum and head and hum.Health > 0 then
                    local player = Players:GetPlayerFromCharacter(obj)
                    if player and player.Team == LocalPlayer.Team and not player.Neutral then continue end

                    local pos = head.Position

                    if isMelee then
                        local args = {
                            [1] = weapon,
                            [2] = {
                                attackType = "Normal",
                                comboIndex = 1,
                                position = pos
                            }
                        }
                        WeaponFired:FireServer(unpack(args))
                    else
                        local args = {
                            [1] = weapon,
                            [2] = {
                                p = pos,
                                pid = 1,
                                part = head,
                                d = 1,
                                maxDist = math.huge,
                                h = hum,
                                m = Enum.Material.Snow,
                                n = Vector3.new(1, 0, 0),
                                t = tick() % 1,
                                sid = math.random(1, 10)
                            }
                        }
                        WeaponHit:FireServer(unpack(args))
                    end
                end
            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 Strike Back [đŸ”¥Season 1] 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-src/
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