SCRIPTCUSTOMIZER

Testing again 💀

Nov 11th, 2023
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. --Character
  2. local p = game.Players.LocalPlayer
  3. local c = p.Character
  4.  
  5. --Fake Character
  6. local m = Instance.new("Model",c)
  7. m.Name = "Fake Character"
  8. local t = Instance.new("Part",m)
  9. t.Name = "Torso"
  10. t.Position = c.HumanoidRootPart.Position
  11. local h = Instance.new("Part",m)
  12. h.Name = "Head"
  13. h.Position = c.HumanoidRootPart.Position
  14. local hum = Instance.new("Humanoid",m)
  15.  
  16. --Bypass
  17. p.Character = m
  18. wait(3)
  19. p.Character = c
  20. wait(3)
  21.  
  22. p.Character.Humanoid.Health = 0
Add Comment
Please, Sign In to add comment