Advertisement
Guest User

Untitled

a guest
Jul 28th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. local p = game.Players.LocalPlayer.Character
  2. local weld = Instance.new("Weld",p.Torso)
  3. weld.Part0 = p.Torso
  4.  
  5. local tele = Instance.new("HopperBin",game.Players.LocalPlayer.Backpack)
  6. tele.Name = "Teleport"
  7. local mouse = game.Players.LocalPlayer:GetMouse()
  8. mouse.Button1Down:connect(function()
  9. if mouse.Target and tele.Active then
  10. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = mouse.Hit + Vector3.new(0,2,0)
  11. end
  12. end)
  13.  
  14. local Ink = Instance.new("Part",p.Torso)
  15. Ink.Anchored = true
  16. Ink.CanCollide = false
  17. Ink.Size = Vector3.new(4,5,4)
  18. Ink.CustomPhysicalProperties = PhysicalProperties.new(0,0,0,0,0)
  19. weld.Part1 = Ink
  20. weld.C1 = CFrame.new(0,0,-1) * CFrame.Angles(0,math.rad(0),0)
  21. Ink.Anchored = false
  22. local InkMesh = Instance.new("SpecialMesh",Ink)
  23. InkMesh.MeshType = Enum.MeshType.FileMesh
  24. InkMesh.Scale = Vector3.new(0.6,0.6,0.6)
  25. InkMesh.MeshId = "rbxassetid://749927813"
  26. InkMesh.TextureId = "rbxassetid://749927884"
  27.  
  28.  
  29. local weld2 = Instance.new("Weld",p.Torso)
  30. weld2.Part0 = p.Torso
  31. local Bendy = Instance.new("Part",p.Torso)
  32. Bendy.Anchored = true
  33. Bendy.CanCollide = false
  34. Bendy.Size = Vector3.new(1,1,1)
  35. Bendy.CustomPhysicalProperties = PhysicalProperties.new(0,0,0,0,0)
  36. weld2.Part1 = Bendy
  37. weld2.C1 = CFrame.new(0,0,0)-- * CFrame.Angles(0,math.rad(180),0)
  38. Bendy.Anchored = false
  39. Bendy.Transparency = 1;
  40.  
  41. local Particle = Instance.new("ParticleEmitter",Bendy)
  42. Particle.Color = ColorSequence.new(Color3.new(0,0,0))
  43. Particle.LockedToPart = true
  44. Particle.ZOffset = 2;
  45. Particle.Rate = 50;
  46. Particle.Transparency = NumberSequence.new(0.9,0.9)
  47. Particle.Size = NumberSequence.new(3,3)
  48. Particle.Lifetime = NumberRange.new(1,1)
  49. Particle.Rotation = NumberRange.new(0,360)
  50. Particle.Speed = NumberRange.new(3,3);
  51. Particle.VelocitySpread = 360;
  52. Particle.Texture = "rbxassetid://133619974"
  53.  
  54. p.Humanoid.WalkSpeed = 60;
  55.  
  56.  
  57. for i,v in pairs(p:GetChildren()) do
  58. if v:IsA("Part") then
  59. v.Transparency = 1;
  60. elseif v:IsA("Accessory") then
  61. v:Destroy()
  62. elseif v:IsA("Model") then
  63. v:Destroy()
  64. end
  65. end
  66.  
  67. local function SFX(id) local s=Instance.new("Sound",p.Torso); s.SoundId = "rbxassetid://"..id; s.Volume = 1; return s; end
  68. Ink.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 Slush = SFX(379698301)
  75. Slush:Play()
  76. end
  77. end
  78. end
  79. end
  80. end)
  81.  
  82. local Music = SFX(882172805)
  83. Music.Volume = 100
  84. Music.Looped = true;
  85. wait(1)
  86. Music:Play();
  87. -- ~CL 2016
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement