Advertisement
Guest User

dont steal - datboi edit

a guest
Dec 3rd, 2016
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.97 KB | None | 0 0
  1. wait(1)
  2. local a = Instance.new("Sound")
  3. a.Name = "Sound"
  4. a.SoundId = "http://www.roblox.com/asset/?id=483435228"
  5. a.Volume = 5
  6. a.Pitch = 1
  7. a.Looped = true
  8. a.archivable = false
  9. a.Parent = game.Workspace
  10. a:play()
  11.  
  12. for i, v in pairs(game.Players:GetChildren()) do--this is going down in order of evrything in players, v is the variable
  13. p = v.Character
  14. local weld = Instance.new("Weld",p.Torso)
  15. weld.Part0 = p.Torso
  16.  
  17. local Harambe = Instance.new("Part",p.Torso)
  18. Harambe.Anchored = true
  19. Harambe.CanCollide = false
  20. Harambe.Size = Vector3.new(3,2,6)
  21. Harambe.CustomPhysicalProperties = PhysicalProperties.new(0,0,0,0,0)
  22. weld.Part1 = Harambe
  23. weld.C1 = CFrame.new(0,0.5,0) * CFrame.Angles(0,math.rad(180),0)
  24. Harambe.Anchored = false
  25. local HarambeMesh = Instance.new("SpecialMesh",Harambe)
  26. HarambeMesh.MeshType = Enum.MeshType.FileMesh
  27. HarambeMesh.Scale = Vector3.new(0.0075,0.0075,0.0075)
  28. HarambeMesh.MeshId = "rbxassetid://430095888"
  29.  
  30.  
  31.  
  32. local weld2 = Instance.new("Weld",p.Torso)
  33. weld2.Part0 = p.Torso
  34. local Smoke = Instance.new("Part",p.Torso)
  35. Smoke.Anchored = true
  36. Smoke.CanCollide = false
  37. Smoke.Size = Vector3.new(0.2,0.2,0.2)
  38. Smoke.CustomPhysicalProperties = PhysicalProperties.new(0,0,0,0,0)
  39. weld2.Part1 = Smoke
  40. weld2.C1 = CFrame.new(0,-3,0) * CFrame.Angles(math.rad(270),0,0)
  41. Smoke.Anchored = false
  42. Smoke.Transparency = 1;
  43.  
  44.  
  45. p.Humanoid.WalkSpeed = 35;
  46.  
  47.  
  48. for i,v in pairs(p:GetChildren()) do
  49. if v:IsA("Part") then
  50. v.Transparency = 1;
  51. elseif v:IsA("Hat") then
  52. v:Destroy()
  53. elseif v:IsA("Model") then
  54. v:Destroy()
  55. end
  56. end
  57.  
  58. p.Head.face:Destroy()
  59.  
  60. local function SFX(id) local s=Instance.new("Sound",p.Torso); s.SoundId = "rbxassetid://"..id; s.Volume = 1; return s; end
  61. Harambe.Touched:connect(function(p)
  62. if p.Parent then
  63. if p.Parent:IsA("Model") then
  64. if game.Players:FindFirstChild(p.Parent.Name) then
  65. if p.Parent.Name ~= game.Players.LocalPlayer.Name then
  66. local Fart = SFX(131314452)
  67. -- Fart:Play()
  68. end
  69. end
  70. end
  71. end
  72. end)
  73. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement