Advertisement
BAconTUbe

.....K.......

Mar 30th, 2019
407
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.94 KB | None | 0 0
  1. local AddInstance = function(Object, ...)
  2. local Obj = Instance.new(Object)
  3. for i,v in next,(...) do
  4. Obj[i] = v
  5. end
  6. return Obj
  7. end
  8. ----------------------------------------------------
  9. local Reaper = AddInstance("Part",{
  10. Parent = hed,
  11. CFrame = hed.CFrame,
  12. formFactor = "Symmetric",
  13. Size = Vector3.new(1, 1, 1),
  14. CanCollide = false,
  15. TopSurface = "Smooth",
  16. BottomSurface = "Smooth",
  17. Locked = true,
  18. })
  19. local Weld = AddInstance("Weld",{
  20. Parent = Reaper,
  21. Part0 = hed,
  22. C0 = CFrame.new(0, 0.8, 0.4)*CFrame.Angles(0, 0, 0),
  23. Part1 = Reaper,
  24. })
  25. local Mesh = AddInstance("SpecialMesh",{
  26. Parent = Reaper,
  27. MeshId = "rbxassetid://193760002",
  28. TextureId = "rbxassetid://89867215",
  29. Scale = Vector3.new(1.1, 1.1, 1.1),
  30. VertexColor = Vector3.new(0.5, 0.5, 0.5),
  31. })
  32. -------------------------------------------------------
  33. wait(1)
  34. plr = game.Players.LocalPlayer
  35. char = plr.Character
  36. mouse = plr:GetMouse()
  37. whitecolor = Color3.new(1,1,1)
  38. epicmode = false
  39. normal = true
  40. for i,v in pairs(char:GetChildren()) do
  41. if v.ClassName == "Shirt" or v.ClassName == "Pants" or v.ClassName == "ShirtGraphic" then
  42. v:Destroy()
  43. end
  44. end
  45. local shirt = Instance.new("Shirt",char)
  46. shirt.ShirtTemplate = "rbxassetid://2544612637"
  47. local pants = Instance.new("Pants",char)
  48. pants.PantsTemplate = "rbxassetid://2544611861"
  49. local bdycolors = char["Body Colors"]
  50. bdycolors.HeadColor3 = whitecolor
  51. bdycolors.LeftArmColor3 = whitecolor
  52. bdycolors.LeftLegColor3 = whitecolor
  53. bdycolors.RightArmColor3 = whitecolor
  54. bdycolors.RightLegColor3 = whitecolor
  55. bdycolors.TorsoColor3 = whitecolor
  56. for i,v in pairs(char:GetChildren()) do
  57. if v.ClassName == "Hat" or v.ClassName == "Accessory" then
  58. v:Destroy()
  59. end
  60. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement