Advertisement
hackerzaba

FE Headless Roblox Script

Dec 24th, 2022
5,760
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. game.Players.LocalPlayer.ChildAdded:Connect(function()
  2.     wait()
  3.     game.Players.LocalPlayer.ChildRemoved:Connect(function()
  4.         CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  5.         print(CFrame)
  6.     end)
  7. end)
  8.  
  9. game.Players.LocalPlayer.ChildAdded:Connect(function()
  10.     task.wait()
  11.     y = game.Players.LocalPlayer.Character:FindFirstChild("Humanoid")
  12.     if y ~= nil then
  13.         y:SetStateEnabled(Enum.HumanoidStateType.Dead,false)
  14.     end
  15.     x = game.Players.LocalPlayer.Character:FindFirstChild("Head")
  16.     if x ~= nil then
  17.         game.Players.LocalPlayer.Character.Head:Destroy()
  18.     end
  19.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame
  20. end)
  21.  
  22. game.Players.LocalPlayer.Character.Humanoid:SetStateEnabled(Enum.HumanoidStateType.Dead,false)
  23. wait()
  24. x = game.Players.LocalPlayer.Character:FindFirstChild("Head")
  25. if x ~= nil then
  26.     x:Destroy()
  27. end
  28.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement