Advertisement
Xfer1111

FE Amongus (F3X)

Aug 10th, 2021
3,389
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.13 KB | None | 0 0
  1. --FE Amongus works on most if not all f3x games. (You dont need to have f3x equipped to use!)
  2. --Can be spammed (Might glitch server)
  3. --Script not made by me, credits to the original owner.
  4. --Xfer was here!
  5.  
  6. local F3X = loadstring(game:HttpGet("https://pastebin.com/raw/TQgu7X5u"))()
  7.  
  8. for _,player in pairs(game.Players:GetPlayers()) do
  9.    spawn(function()
  10.        F3X.Edit(player.Character:GetChildren(), {Transparency = 1})
  11.        for _,limb in pairs(player.Character:GetChildren()) do
  12.            if limb:IsA("Accessory") and limb:FindFirstChildWhichIsA("BasePart") then
  13.                F3X.Object(limb:FindFirstChildWhichIsA("BasePart")):Destroy()
  14.            end
  15.        end
  16.        local part = F3X.new("Part", workspace)
  17.        part.CanCollide = false
  18.        part.Size = Vector3.new(3, 4, 3)
  19.        part.CFrame = player.Character.HumanoidRootPart.CFrame * CFrame.new(0, -0.5, 0)
  20.        wait()
  21.        part:WeldTo(player.Character.HumanoidRootPart)
  22.        local mesh = part:AddMesh()
  23.        mesh.MeshId = "rbxassetid://6235963214"
  24.        mesh.TextureId = "rbxassetid://6235963270"
  25.        mesh.Scale = Vector3.new(.1, .1, .1)
  26.    end)
  27. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement