Advertisement
Gememed

Invisible script

Jun 5th, 2019
482
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. char = game.Players.Killerlol603.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