ADVERTISEMENTREMOVE ADS

F3X Torso Removal

Universal script
3 months ago
Script preview thumbnail
Script Preview

Description

A script that uses the F3X remote api and removes other people's torsos, making them die.

Note: Change the name of "Btools" to the name of the game's modified btools in your backpack using Dex Explorer. (In case it doesn't work)

Features:

  • Remove Torso
  • Kill Others
  • Aura
ADVERTISEMENTREMOVE ADS
65 Lines • 2.1 KiB
Raw
local shouldRun = true
local player = game:GetService("Players").LocalPlayer
-- Function to detect character death
local function setupDeathListener(character)
local humanoid = character:FindFirstChildOfClass("Humanoid")
if humanoid then
humanoid.Died:Connect(function()
shouldRun = false
end)
end
end
-- Initial listener
if player.Character then
setupDeathListener(player.Character)
end
-- Listen for character respawn
player.CharacterAdded:Connect(function(character)
if not shouldRun then return end
setupDeathListener(character)
end)
-- Main loop
while shouldRun do
local character = player.Character
if not character then wait(0.1) continue end
local rootPart = character:FindFirstChild("HumanoidRootPart")
if not rootPart then wait(0.1) continue end
local backpack = player:FindFirstChild("Backpack")
if not backpack then wait(0.1) continue end
local btools = backpack:FindFirstChild("Btools")
if not btools then wait(0.1) continue end
local syncAPI = btools:FindFirstChild("SyncAPI")
if not syncAPI then wait(0.1) continue end
local serverEndpoint = syncAPI:FindFirstChild("ServerEndpoint")
if not serverEndpoint then wait(0.1) continue end
for _, otherPlayer in pairs(game:GetService("Players"):GetPlayers()) do
if otherPlayer ~= player and otherPlayer.Character then
local otherRoot = otherPlayer.Character:FindFirstChild("HumanoidRootPart")
if otherRoot and (otherRoot.Position - rootPart.Position).Magnitude <= 20 then
local targetTorso = otherPlayer.Character:FindFirstChild("Torso") or otherPlayer.Character:FindFirstChild("UpperTorso")
if targetTorso then
local args = {
"Remove",
{
targetTorso
}
}
serverEndpoint:InvokeServer(unpack(args))
end
end
end
end
wait(0.1)
end
ADVERTISEMENTREMOVE ADS

Comments

0 comments
to add a comment
Loading comments
ADVERTISEMENTREMOVE ADS