Advertisement
SigmaBoy456

Roblox FE loop kill all Fortline Script

Jun 13th, 2024 (edited)
1,360
1
Never
2
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.69 KB | None | 1 0
  1. --Read Or else you don't know how to use it
  2. --how to use this script? Well basically
  3. ---this script Work on Game that has Free model Gun that Are Model Like For example Fortline Game
  4. ---most of these game are well botted and Free Model Game copy and pasted alot
  5. ---So i decided to Manipulate their remote event game to make Kill all script
  6. ---Change the "Pistol" to gun name that exist in game to make loop kill ALSO YOU MUST CARRY AND EQUIP GUN WHILE THAT/EXECUTE THAT IN order to work
  7. ---if gun name dont appear on you screen use dex explorer to view what the name of gun in you backpack
  8. while true do
  9. local player = game.Players.LocalPlayer
  10.  
  11. for i, v in ipairs(game.Players:GetPlayers()) do
  12.   if v.Name ~= player.Name then
  13.     local upperTorso = v.Character:FindFirstChild("UpperTorso")
  14.     if upperTorso then
  15.       local humanoid = v.Character:FindFirstChild("Humanoid")
  16.       if humanoid then
  17.         local args = {
  18.           [1] = player.Character.Pistol, --Change the Pistol To Gun Name you wanted to Make loop kill all work
  19.           [2] = {
  20.             ["p"] = Vector3.new(-0.04069240391254425, 103.88400268554688, 3.110368251800537),
  21.             ["pid"] = 1,
  22.             ["part"] = upperTorso,
  23.             ["d"] = 2.241058111190796,
  24.             ["maxDist"] = 1.8013105392456055,
  25.             ["h"] = humanoid,
  26.             ["m"] = Enum.Material.Plastic,
  27.             ["sid"] = 1,
  28.             ["t"] = 0.01474018327328561,
  29.             ["n"] = Vector3.new(-0.21247883141040802, 0.5551897287368774, -0.8041250705718994)
  30.           }
  31.         }
  32.  
  33.         game:GetService("ReplicatedStorage").WeaponsSystem.Network.WeaponHit:FireServer(unpack(args))
  34.       end
  35.     end
  36.   end
  37. end
  38. wait(0.1)
  39. end
Advertisement
Comments
  • SigmaBoy456
    1 year
    # text 0.17 KB | 0 0
    1. This script also work on this game
    2. https://www.roblox.com/games/16440734455/FORTLINE
    3. Open dex explorer Then Copy any Gun Name from you backpack Replace it on "Pistol"
  • SigmaBoy456
    1 year
    # text 0.06 KB | 0 0
    1. This script is universal on game that has Fortline gun free model
Add Comment
Please, Sign In to add comment
Advertisement