Guest User

Untitled

a guest
Sep 28th, 2016
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.64 KB | None | 0 0
  1. --[[
  2. Harambe The Heroic Gorilla:
  3. By: KrystalTeam
  4. Features: Being the legendary harambe that kills people, fart included
  5. Version: 1.0.0.1
  6. --]]
  7.  
  8. local p = game.Players.LocalPlayer.Character
  9. local weld = Instance.new("Weld",p.Torso)
  10. weld.Part0 = p.Torso
  11.  
  12. local Harambe = Instance.new("Part",p.Torso)
  13. Harambe.Anchored = true
  14. Harambe.CanCollide = false
  15. Harambe.Size = Vector3.new(3,2,6)
  16. Harambe.CustomPhysicalProperties = PhysicalProperties.new(0,0,0,0,0)
  17. weld.Part1 = Harambe
  18. weld.C1 = CFrame.new(0,0.5,0) * CFrame.Angles(0,math.rad(270),0)
  19. Harambe.Anchored = false
  20. local HarambeMesh = Instance.new("SpecialMesh",Harambe)
  21. HarambeMesh.MeshType = Enum.MeshType.FileMesh
  22. HarambeMesh.Scale = Vector3.new(0.0075,0.0075,0.0075)
  23. HarambeMesh.MeshId = "rbxassetid://430330296"
  24. HarambeMesh.TextureId = "rbxassetid://430330316"
  25.  
  26.  
  27. local weld2 = Instance.new("Weld",p.Torso)
  28. weld2.Part0 = p.Torso
  29. local Smoke = Instance.new("Part",p.Torso)
  30. Smoke.Anchored = true
  31. Smoke.CanCollide = false
  32. Smoke.Size = Vector3.new(0.2,0.2,0.2)
  33. Smoke.CustomPhysicalProperties = PhysicalProperties.new(0,0,0,0,0)
  34. weld2.Part1 = Smoke
  35. weld2.C1 = CFrame.new(0,-3,0) * CFrame.Angles(math.rad(270),0,0)
  36. Smoke.Anchored = false
  37. Smoke.Transparency = 1;
  38.  
  39. local Particle = Instance.new("ParticleEmitter",Smoke)
  40. Particle.Rate = 1;
  41. Particle.Speed = NumberRange.new(5,10);
  42. Particle.Lifetime = NumberRange.new(0.5,1);
  43. local A = {NumberSequenceKeypoint.new(0, 0, 0),NumberSequenceKeypoint.new(1, 1, 0)}
  44. local B = {NumberSequenceKeypoint.new(0, 1, 0),NumberSequenceKeypoint.new(1, 0, 0)}
  45. Particle.Transparency = NumberSequence.new(A);
  46. Particle.Size = NumberSequence.new(A);
  47. Particle.Color = ColorSequence.new(Color3.new(85/255,1,0),Color3.new(85/255,1,0))
  48. Particle.Rotation = NumberRange.new(-360, 360)
  49. Particle.VelocitySpread = 10;
  50. Particle.Texture = "rbxassetid://133619974"
  51.  
  52. p.Humanoid.WalkSpeed = 35;
  53.  
  54.  
  55. for i,v in pairs(p:GetChildren()) do
  56. if v:IsA("Part") then
  57. v.Transparency = 1;
  58. elseif v:IsA("Hat") then
  59. v:Destroy()
  60. elseif v:IsA("Model") then
  61. v:Destroy()
  62. end
  63. end
  64.  
  65. p.Head.face:Destroy()
  66.  
  67. local function SFX(id) local s=Instance.new("Sound",p.Torso); s.SoundId = "rbxassetid://"..id; s.Volume = 1; return s; end
  68. Harambe.Touched:connect(function(p)
  69. if p.Parent then
  70. if p.Parent:IsA("Model") then
  71. if game.Players:FindFirstChild(p.Parent.Name) then
  72. if p.Parent.Name ~= game.Players.LocalPlayer.Name then
  73. game.Players:FindFirstChild(p.Parent.Name).Character:BreakJoints()
  74. local Fart = SFX(131314452)
  75. Fart:Play()
  76. end
  77. end
  78. end
  79. end
  80. end)
  81.  
  82. local Music = SFX(144708511)
  83. Music.Looped = true;
  84. wait(1)
  85. Music:Play();
Add Comment
Please, Sign In to add comment