Advertisement
DrawingJhon

Invisible (Root)

Sep 29th, 2022 (edited)
1,327
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.86 KB | None | 0 0
  1. local speaker = game.Players.LocalPlayer
  2.  
  3. local ch = speaker.Character
  4. ch.Humanoid:Destroy()
  5. Instance.new("Humanoid", ch)
  6. local prt=Instance.new("Model")
  7. prt.Parent = speaker.Character
  8. local z1 = Instance.new("Part")
  9. z1.Name="Torso"
  10. z1.CanCollide = false
  11. z1.Anchored = true
  12. local z2 = Instance.new("Part")
  13. z2.Name="Head"
  14. z2.Parent = prt
  15. z2.Anchored = true
  16. z2.CanCollide = false
  17. local z3 =Instance.new("Humanoid")
  18. z3.Name="Humanoid"
  19. z3.Parent = prt
  20. z1.Position = Vector3.new(0,9999,0)
  21. speaker.Character=prt
  22. wait(3)
  23. speaker.Character=ch
  24. wait(3)
  25. local Hum = Instance.new("Humanoid")
  26. z2:Clone()
  27. Hum.Parent = speaker.Character
  28. local root =  speaker.Character.HumanoidRootPart
  29. for i,v in pairs(speaker.Character:GetChildren()) do
  30.     if v ~= root and  v.Name ~= "Humanoid" then
  31.         v:Destroy()
  32.     end
  33. end
  34. root.Transparency = 0
  35. root.Color = Color3.new(1, 1, 1)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement