Advertisement
VoidScript

darkk

May 18th, 2018
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.32 KB | None | 0 0
  1. wait()
  2. player = game.Players.LocalPlayer
  3. char = player.Character
  4. mouse = player:GetMouse()
  5.  
  6. local skincolor = "Bright blue" -- change this to whatever brickcolor you want
  7.  
  8. ls = char.Torso["Left Shoulder"]:Clone()
  9. rs = char.Torso["Right Shoulder"]:Clone()
  10. lh = char.Torso["Left Hip"]:Clone()
  11. rh = char.Torso["Right Hip"]:Clone()
  12. ne = char.Torso.Neck
  13. rj = char.HumanoidRootPart.RootJoint
  14.  
  15. char.Torso.BrickColor = BrickColor.new(skincolor)
  16. char.Head.BrickColor = BrickColor.new(skincolor)
  17. char["Right Arm"].BrickColor = BrickColor.new(skincolor)
  18. char["Left Arm"].BrickColor = BrickColor.new(skincolor)
  19. char["Right Leg"].BrickColor = BrickColor.new(skincolor)
  20. char["Left Leg"].BrickColor = BrickColor.new(skincolor)
  21.  
  22. e = Instance.new("Sound", char.Head)
  23. e.SoundId = "rbxassetid://199978045"
  24.  
  25. char.Head.Mesh.Scale = Vector3.new(1.25, 1.5, 1.25)
  26. char["Left Arm"].Size = Vector3.new(1, 3, 1)
  27. char["Right Arm"].Size = Vector3.new(1, 3, 1)
  28. char["Left Leg"].Size = Vector3.new(1, 3, 1)
  29. char["Right Leg"].Size = Vector3.new(1, 3, 1)
  30.  
  31. rj.C0 = CFrame.new(0, -1.5, 0) * CFrame.Angles(0, math.rad(180), 0)
  32. ne.C0 = CFrame.new(0, 1, 0.5) * CFrame.Angles(0, 0, math.rad(180))
  33.  
  34. leftshoulder = ls:Clone()
  35. leftshoulder.Parent = char.Torso
  36. leftshoulder.C0 = CFrame.new(-2, 0.5, -0.5) * CFrame.Angles(math.rad(90), math.rad(90), 0)
  37.  
  38. rightshoulder = rs:Clone()
  39. rightshoulder.Parent = char.Torso
  40. rightshoulder.C0 = CFrame.new(1, 0.5, -0.5) * CFrame.Angles(math.rad(90), math.rad(90), 0)
  41.  
  42. leftleg = lh:Clone()
  43. leftleg.Parent = char.Torso
  44. leftleg.C0 = CFrame.new(1, -1.5, -0) * CFrame.Angles(math.rad(90), math.rad(90), 0)
  45.  
  46. rightleg = rh:Clone()
  47. rightleg.Parent = char.Torso
  48. rightleg.C0 = CFrame.new(0, -1.5, -0) * CFrame.Angles(math.rad(90), math.rad(90), 0)
  49.  
  50. for i, v in pairs(char:GetChildren()) do
  51. if v.ClassName == "Accessory" or v.ClassName == "Shirt" or v.ClassName == "Pants" then
  52. v:Remove()
  53. end
  54. end
  55.  
  56. char.Humanoid.WalkSpeed = 40
  57. char.Humanoid.JumpPower = 80
  58. char.Humanoid.MaxHealth = math.huge
  59. char.Humanoid.Health = math.huge
  60.  
  61. char.Head.face:Remove()
  62.  
  63. char.Head.Touched:connect(function(h)
  64. if h.Parent ~= char then
  65. egg = h.Parent:FindFirstChild("Humanoid")
  66. if egg ~= nil then
  67. egg.Health = egg.Health - 5
  68. egg.WalkSpeed = egg.WalkSpeed - 1
  69. egg.JumpPower = egg.JumpPower - 4
  70. e:Play()
  71. end
  72. end
  73. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement