Advertisement
Guest User

Untitled

a guest
May 6th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.42 KB | None | 0 0
  1. User = game.Players.LocalPlayer
  2. player = Kean_Victourius
  3.  
  4. moving = false
  5.  
  6. for i,v in pairs(player.Character:GetChildren()) do
  7. if v:IsA("CharacterMesh") then
  8. v:Remove()
  9. elseif v.Name == "Shirt" then
  10. v:Remove()
  11. elseif v.Name == "Pants" then
  12. v:Remove()
  13. elseif v:IsA("Hat") then
  14. v:Remove()
  15. elseif v.Name == "Head" then
  16. v.Transparency = 1
  17. local fi = Instance.new("Fire",v)
  18. fi.Color = BrickColor.new("Really red").Color
  19. fi.SecondaryColor = BrickColor.new("Magenta").Color
  20. fi.Size = 3
  21. if v:FindFirstChild("face") ~= nil then
  22. v.face:Remove()
  23. end
  24. elseif v:IsA("Part") and v.Name ~= "Head" then
  25. v.Transparency = 1
  26. local p = Instance.new("Part",v.Parent)
  27. p.Name = "Replacement"
  28. p.formFactor = "Custom"
  29. p.Size = v.Size
  30. p.TopSurface = 0
  31. p.BottomSurface = 0
  32. p.Position = v.Position
  33. p.Transparency = 0
  34. p.Reflectance = 0.5
  35. p.BrickColor = BrickColor.new("Toothpaste")
  36. p.CanCollide = false
  37. local Block = Instance.new("BlockMesh",p)
  38.  
  39. local weld = Instance.new("Weld",p)
  40. weld.Part0 = v
  41. weld.Part1 = p
  42. end
  43. end
  44.  
  45.  
  46. local h = Instance.new("Part",player.Character)
  47. h.Name = "Hood"
  48. h.formFactor = "Custom"
  49. h.Size = Vector3.new(1,1,1)
  50. h.TopSurface = 0
  51. h.Reflectance = 0.5
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement