Advertisement
replic8

Untitled

Jul 12th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. plr = game.Players.LocalPlayer
  2.  
  3. plr.Character.Parent = workspace
  4. plr.Character.Archivable = false
  5. plr.Character:FindFirstChildOfClass("ForceField"):Remove()
  6. for y,t in pairs(plr.Character:GetChildren()) do
  7. if t:IsA("Part") and t.Name ~= "HumanoidRootPart" then
  8. t.Transparency = 0
  9. if t.Name == "Head" and t:FindFirstChild("face") then
  10. t.face.Transparency = 0
  11. end
  12. elseif t:IsA("Accessory") and t:FindFirstChild("Handle") then
  13. t.Handle.Transparency = 0
  14. end
  15. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement