Battleship Battle KILL ALL – EDIT KILLFEED

Created by Bitz#0215

Features:

  • KILL ALL
  • EDIT KILLFEED

GAME LINK:
BATTLESHIP BATTLE

SCRIPT:

local Settings        = {
   DeathReason = "died uwu"; -- this isnt filterd either
   Damage      = 1000; --// (this can also be negative to add hp, or set it to 0/0 for godmode)
   ExcludeLPlr = true;
}


local GetService      = game.GetService
local FindFirstChild  = game.FindFirstChild

local Players       = GetService(game, "Players")
local Workspace     = GetService(game, "Workspace")

local LocalPlayer   = Players.LocalPlayer


local CommonPlayerScript = require(FindFirstChild(Workspace, "CommonPlayerScript"))


function GetPlayerRemotes(Target)
   if Settings.ExcludeLPlr and Target == LocalPlayer then return end
   local TargetCharacter = Target and Target.Character
   local PlayerScript    = TargetCharacter and FindFirstChild(TargetCharacter, "PlayerScript")
   
   return FindFirstChild(PlayerScript, "DealDamage"), FindFirstChild(PlayerScript, "SetCauseOfDeath")
end

for _, Player in next, Players.GetPlayers(Players) do
   local DealDamage, SetCauseOfDeath = GetPlayerRemotes(Player)
   if DealDamage and SetCauseOfDeath then
       SetCauseOfDeath:FireServer( Settings.DeathReason );
       DealDamage:FireServer(Settings.Damage, CommonPlayerScript.makeGauss(Player.Name))
   end
end

⚠️ Warning: Do not download any extensions or anything other than .txt/.lua file, because script will download only in .txt/.lua format or It will redirect you to a pastebin link.

📋 Notice: If you find any of the scripts patched or not working, please report it to Forever4D through Discord. The script will be removed or marked as patched!