Advertisement
anphu04

ROBLOX Non FE Invisible script

Jul 2nd, 2018
40,013
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. char = game.Players.LocalPlayer.Character
  2. hum = char:FindFirstChildWhichIsA("Humanoid")
  3.  
  4. function scan(p)
  5. for i,v in pairs(p:GetChildren()) do
  6. if v:IsA("BasePart") then
  7. v.Transparency = 1
  8. end
  9. if v:IsA("Decal") then
  10. v.Transparency = 1
  11. end
  12. scan(v)
  13. end
  14. end
  15.  
  16. while true do
  17. if hum.Health <= 0 then break end
  18. scan(char)
  19. wait()
  20. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement