Advertisement
Guest User

Untitled

a guest
Jun 21st, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.17 KB | None | 0 0
  1. wait()
  2. player = game.Players.LocalPlayer
  3. char = player.Character
  4. mouse = player:GetMouse()
  5. local txt = Instance.new("BillboardGui", char)
  6. txt.Adornee = char .Orb
  7. txt.Name = "_status"
  8. txt.Size = UDim2.new(2, 0, 1.2, 0)
  9. txt.StudsOffset = Vector3.new(-2, 1.5, 0)
  10. local text = Instance.new("TextLabel", txt)
  11. text.Size = UDim2.new(3, 0, 0.5, 0)
  12. text.FontSize = "Size8"
  13. text.TextScaled = true
  14. text.TextTransparency = 0
  15. text.BackgroundTransparency = 1
  16. text.TextTransparency = 0
  17. text.TextStrokeTransparency = 0
  18. text.Font = "Arial"
  19. text.TextStrokeColor3 = Color3.new(0,0,0)
  20.  
  21. v=Instance.new("Part")
  22. v.Name = "ColorBrick"
  23. v.Parent=p.Character
  24. v.FormFactor="Symmetric"
  25. v.Anchored=true
  26. v.CanCollide=false
  27. v.BottomSurface="Smooth"
  28. v.TopSurface="Smooth"
  29. v.Size=Vector3.new(10,5,3)
  30. v.Transparency=0.7
  31. v.CFrame=char.Torso.CFrame
  32. v.BrickColor=BrickColor.new(CV)
  33. v.Transparency=1
  34. text.TextColor3 = v.BrickColor.Color
  35. v.Shape="Block"
  36. text.Text = "The Goat Man"
  37.  
  38. local skincolor = "Grey" -- change this to whatever brickcolor you want
  39.  
  40. ls = char.Torso["Left Shoulder"]:Clone()
  41. rs = char.Torso["Right Shoulder"]:Clone()
  42. lh = char.Torso["Left Hip"]:Clone()
  43. rh = char.Torso["Right Hip"]:Clone()
  44. ne = char.Torso.Neck
  45. rj = char.HumanoidRootPart.RootJoint
  46.  
  47. char.Torso.BrickColor = BrickColor.new(skincolor)
  48. char.Head.BrickColor = BrickColor.new(skincolor)
  49. char["Right Arm"].BrickColor = BrickColor.new(skincolor)
  50. char["Left Arm"].BrickColor = BrickColor.new(skincolor)
  51. char["Right Leg"].BrickColor = BrickColor.new(skincolor)
  52. char["Left Leg"].BrickColor = BrickColor.new(skincolor)
  53.  
  54. e = Instance.new("Sound", char.Head)
  55. e.SoundId = "rbxassetid://199978045"
  56.  
  57. char.Head.Mesh.Scale = Vector3.new(1.25, 1.5, 1.25)
  58. char["Left Arm"].Size = Vector3.new(1, 3, 1)
  59. char["Right Arm"].Size = Vector3.new(1, 3, 1)
  60. char["Left Leg"].Size = Vector3.new(1, 3, 1)
  61. char["Right Leg"].Size = Vector3.new(1, 3, 1)
  62.  
  63. rj.C0 = CFrame.new(0, -1.5, 0) * CFrame.Angles(0, math.rad(180), 0)
  64. ne.C0 = CFrame.new(0, 1, 0.5) * CFrame.Angles(0, 0, math.rad(180))
  65.  
  66. leftshoulder = ls:Clone()
  67. leftshoulder.Parent = char.Torso
  68. leftshoulder.C0 = CFrame.new(-2, 0.5, -0.5) * CFrame.Angles(math.rad(90), math.rad(90), 0)
  69.  
  70. rightshoulder = rs:Clone()
  71. rightshoulder.Parent = char.Torso
  72. rightshoulder.C0 = CFrame.new(1, 0.5, -0.5) * CFrame.Angles(math.rad(90), math.rad(90), 0)
  73.  
  74. leftleg = lh:Clone()
  75. leftleg.Parent = char.Torso
  76. leftleg.C0 = CFrame.new(1, -1.5, -0) * CFrame.Angles(math.rad(90), math.rad(90), 0)
  77.  
  78. rightleg = rh:Clone()
  79. rightleg.Parent = char.Torso
  80. rightleg.C0 = CFrame.new(0, -1.5, -0) * CFrame.Angles(math.rad(90), math.rad(90), 0)
  81.  
  82. for i, v in pairs(char:GetChildren()) do
  83. if v.ClassName == "Accessory" or v.ClassName == "Shirt" or v.ClassName == "Pants" then
  84. v:Remove()
  85. end
  86. end
  87.  
  88. char.Humanoid.WalkSpeed = 40
  89. char.Humanoid.JumpPower = 150
  90. char.Humanoid.MaxHealth = math.huge
  91. char.Humanoid.Health = math.huge
  92.  
  93. char.Head.face:Remove()
  94.  
  95. char.Head.Touched:connect(function(h)
  96. if h.Parent ~= char then
  97. egg = h.Parent:FindFirstChild("Humanoid")
  98. if egg ~= nil then
  99. egg.Health = egg.Health - 5
  100. egg.WalkSpeed = egg.WalkSpeed - 1
  101. egg.JumpPower = egg.JumpPower - 4
  102. e:Play()
  103. end
  104. end
  105. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement