Advertisement
SigmaBoy456

FE kill all Script roblox 2025(OUTDATED)(look for v2)

May 14th, 2024 (edited)
5,965
2
Never
2
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.62 KB | None | 2 0
  1. --this script Updated for 2025 Due To some Reason of script I fixed and Try it myself
  2. --How to use this Script? Well This don't mean you kill everyone instantly But is basically just like loop kill Script
  3. ---this script are pretty powerful if you know how to use it
  4. --how to use this? For example you play a sword fight game and you loopbring all player but is only run for client but the Damage you did the kill you did to player is FE which mean other can see them Died or damaged while you loopbring them on client
  5. ---this script work on lot of game Cus is Universal
  6. ---you just basically loopkill all if you know how to use this script
  7. ---also edit or modify or make this Script better If you want no problem!
  8. -- LocalScript in StarterPlayerScripts
  9. local player = game.Players.LocalPlayer
  10.  
  11. local function getLookVector()
  12.     return player.Character and player.Character.PrimaryPart.CFrame.lookVector or Vector3.new(0, 0, -1)
  13. end
  14.  
  15. local function bringPlayers()
  16.     if not player.Character then return end
  17.     local pos = player.Character.PrimaryPart.Position + getLookVector() * 5
  18.     for _, otherPlayer in pairs(game.Players:GetPlayers()) do
  19.         if otherPlayer ~= player and otherPlayer.Character and otherPlayer.Character.PrimaryPart then
  20.             local otherCharacter = otherPlayer.Character
  21.             local humanoid = otherCharacter:FindFirstChildOfClass("Humanoid")
  22.             if humanoid and humanoid.Health > 0 then
  23.                 otherCharacter:SetPrimaryPartCFrame(CFrame.new(pos))
  24.             end
  25.         end
  26.     end
  27. end
  28.  
  29. while true do
  30.     bringPlayers()
  31.     wait(0.1) -- Adjust the delay as needed
  32. end
  33.  
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement