gdgrg

Untitled

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