SpiritualDonut

Untitled

May 30th, 2018
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.48 KB | None | 0 0
  1. local Player = game:service'Players'.LocalPlayer
  2. repeat wait() until Player.Character
  3. local Character = Player.Character
  4. local Char, Plr = Character, Player
  5. local Mouse = Player:GetMouse()
  6.  
  7. Reaper2 = Instance.new("Model") --anime
  8. Reaper2.Parent = Player.Character
  9. Reaper2.Name = "Reaper2"
  10. rh2 = Instance.new("Part")
  11. rh2.Parent = Reaper2
  12. rh2.Locked = true
  13. rh2.CanCollide = false
  14. mesh2 = Instance.new("SpecialMesh")
  15. rh2.formFactor = "Symmetric"
  16. mesh2.MeshType = "FileMesh"
  17. mesh2.MeshId = "http://www.roblox.com/asset/?id=1581328341"
  18. mesh2.TextureId = "http://www.roblox.com/asset/?id=653059989"
  19. mesh2.Scale = Vector3.new(0.0413, 0.0413, 0.0413)
  20. mesh2.Parent = rh2
  21. local weld2 = Instance.new("Weld")
  22. weld2.Parent = rh2
  23. rh2.Transparency = 0
  24. weld2.Part0 = rh2
  25. weld2.Part1 = Player.Character.Head
  26. weld2.C0 = CFrame.new(-0, 1.4, -0.3)*CFrame.Angles(0, 0, 0)
  27. --------------------------------------------------------------------
  28. local Module_Id = 0 --// Not required, but I use modules somtimes to load union'd models
  29. local Player = game:service'Players'.LocalPlayer
  30. repeat wait() until Player.Character
  31. local Character = Player.Character
  32. local Char, Plr = Character, Player
  33.  
  34. --// Removers
  35. for i,v in pairs(Char:children()) do
  36. if v:IsA("Hat") then
  37. v:Destroy()
  38. end
  39. end
  40. for i,v in pairs(Char:children()) do
  41. if v:IsA("Accessory") then
  42. v:Destroy()
  43. end
  44. end
  45. for i,v in pairs(Char:children()) do
  46. if v:IsA("Hair") then
  47. v:Destroy()
  48. end
  49. end
Add Comment
Please, Sign In to add comment