DefaltedDED

Untitled

May 4th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.10 KB | None | 0 0
  1. print'poo'
  2. wait()
  3. local player = game:GetService("Players").LocalPlayer
  4. local character = player.Character
  5. local humanoid = character:FindFirstChild("Humanoid")
  6. local LeftArm = character["Left Arm"]
  7. local RightArm = character["Right Arm"]
  8. local LeftLeg = character["Left Leg"]
  9. local RightLeg = character["Right Leg"]
  10. local Head = character.Head
  11. local Torso = character.Torso
  12. local RS = Torso:FindFirstChild("Right Shoulder")
  13. local LS = Torso:FindFirstChild("Left Shoulder")
  14. local RunService = game:GetService("RunService")
  15. local UIS = game:GetService("UserInputService")
  16. local TweenService = game:GetService("TweenService")
  17. local Info = TweenInfo.new(4, Enum.EasingStyle.Quad, Enum.EasingDirection.Out, 0, false, 0)
  18. local Goal = {Size = Vector3.new(100,50,100);
  19. Transparency = 1}
  20. local Scream = Instance.new("Sound")
  21. Scream.Parent = Head
  22. Scream.Name = "aaa"
  23. Scream.Volume = 10
  24. Scream.SoundId = "rbxassetid://197054133"
  25.  
  26. for i,v in pairs(character:GetChildren()) do
  27. if v:IsA("Accoutrement") or v:IsA("Shirt") or v:IsA("Pants") then
  28. v:Destroy()
  29. end
  30. end
  31.  
  32. local Accessory = Instance.new("Part")
  33. Accessory.Parent = character
  34. Accessory.Size = Vector3.new(2,1,1)
  35. Accessory.CanCollide = false
  36. Accessory.Name = "Sheik"
  37. Accessory.CFrame = Head.CFrame
  38. Accessory.BottomSurface = Enum.SurfaceType.Smooth
  39. Accessory.TopSurface = Enum.SurfaceType.Smooth
  40. local Weld = Instance.new("ManualWeld")
  41. Weld.Parent = Accessory
  42. Weld.Part0 = Accessory
  43. Weld.Part1 = Head
  44. local Mesh = Instance.new("SpecialMesh")
  45. Mesh.Parent = Accessory
  46. Mesh.MeshId = "rbxassetid://12305010"
  47. Mesh.TextureId = "rbxassetid://21729264"
  48. Mesh.Scale = Vector3.new(1, 1, 1)
  49. local Shirt = Instance.new("Shirt")
  50. Shirt.Parent = character
  51. Shirt.ShirtTemplate = "rbxassetid://386951550"
  52. local Pants = Instance.new("Pants")
  53. Pants.Parent = character
  54. Pants.PantsTemplate = "rbxassetid://386952142"
  55. Head:FindFirstChild("face").Texture = "rbxassetid://143032348"
  56. local Vest = Instance.new("Part")
  57. Vest.Parent = character
  58. Vest.CFrame = Torso.CFrame
  59. Vest.Size = Vector3.new(.5, .5, .5)
  60. Vest.BrickColor = BrickColor.new("Black")
  61. Vest.CanCollide = false
  62. Vest.BottomSurface = Enum.SurfaceType.Smooth
  63. Vest.TopSurface = Enum.SurfaceType.Smooth
  64. local VestWeld = Instance.new("ManualWeld")
  65. VestWeld.Parent = Vest
  66. VestWeld.Part0 = Vest
  67. VestWeld.Part1 = Torso
  68. local VestMesh = Instance.new("SpecialMesh")
  69. VestMesh.Parent = Vest
  70. VestMesh.MeshId = "rbxassetid://1282440941"
  71. VestMesh.Offset = Vector3.new(-0.1, 0.1, -0.25)
  72.  
  73. UIS.InputBegan:Connect(function(Key)
  74. if Key.KeyCode == Enum.KeyCode.F then
  75. if humanoid.Health == 0 or character == nil then
  76. return
  77. end
  78. Scream:Play()
  79. humanoid.WalkSpeed = 24
  80. RunService.Stepped:Connect(function()
  81. RS.Transform = CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  82. LS.Transform = CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  83. RS.C0 = RS.C0:lerp(CFrame.new(1, 0.5, 0, 0, 0, 1, 8.74227766e-08, -1, 0, 1, 8.74227766e-08, 0), 0.1)
  84. LS.C0 = LS.C0:lerp(CFrame.new(-1, 0.5, 0, 0, -0, -1, 8.74227766e-08, -1, 0, -1, -8.74227766e-08, 0), 0.1)
  85. end)
  86. wait(1.8)
  87. local x = Instance.new("Explosion")
  88. x.Parent = workspace
  89. x.BlastRadius = 100
  90. x.BlastPressure = 1000000
  91. x.ExplosionType = Enum.ExplosionType.CratersAndDebris
  92. x.Position = Torso.Position
  93. local vis = Instance.new("Part")
  94. vis.Parent = workspace
  95. local vism = Instance.new("SpecialMesh")
  96. vism.Parent = vis
  97. vism.MeshId = "rbxassetid://92588061"
  98. vism.Scale = Vector3.new(1, 1, 1)
  99. vis.Name = "ExplosionVisualise"
  100. vis.CanCollide = false
  101. vis.Material = Enum.Material.Neon
  102. vis.Transparency = 0.15
  103. vis.Size = Vector3.new(1,1,1)
  104. vis.Position = x.Position + Vector3.new(0, -2, 0)
  105. vis.BrickColor = BrickColor.new("Bright yellow")
  106. vis.Anchored = true
  107. vis.Touched:Connect(function(hit)
  108. if hit and hit.Name ~= "Baseplate" and hit.Name ~= "Base" then
  109. hit:breakJoints()
  110. hit.Anchored = false
  111. end
  112. end)
  113. vis.Changed:Connect(function()
  114. vism.Scale = vism.Scale + Vector3.new(.25, .25, .25)
  115. vism.Offset = vism.Offset + Vector3.new(0, .35, 0)
  116. end)
  117. local tween = TweenService:Create(vis, Info, Goal)
  118. tween:Play()
  119. local deb = game:GetService("Debris")
  120. deb:AddItem(vis, 5)
  121. end
  122. end)
Add Comment
Please, Sign In to add comment