Advertisement
OofeyDoofy

Hit man v1

Jan 31st, 2018
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.57 KB | None | 0 0
  1. --The Hit man, By SlayKillerX66--
  2.  
  3. wait(0.25)
  4. local show = false
  5. local player = game.Players.LocalPlayer
  6. local C = player.Character
  7. local RS = C.Torso["Right Shoulder"]
  8. local LS = C.Torso["Left Shoulder"]
  9. local RH = C.Torso["Right Hip"]
  10. local LH = C.Torso["Left Hip"]
  11. RH.C0 = RH.C0 * CFrame.Angles(-0.05,0,0)
  12. LS.C0 = LS.C0 * CFrame.Angles(-0.05,0,0)
  13. RS.C0 = RS.C0 * CFrame.Angles(-0.05,0,0)
  14. LH.C0 = LH.C0 * CFrame.Angles(-0.05,0,0)
  15. local mouse = player:GetMouse()
  16. local shirtid=12786197 --Adjust to your heart's delight
  17. local pantsid=142080544 --Adjust to your heart's delight
  18. local soundss = Instance.new("Sound")
  19. soundss.SoundId = "http://www.roblox.com/asset/?id=364979524"
  20. soundss.Parent = C.Torso
  21. soundss.Volume = 0.5
  22. soundss:play()
  23. soundss.Looped = true
  24.  
  25. C.Head.face:Remove()
  26. local face = Instance.new("Decal")
  27. face.Parent = C.Head
  28. face.Texture = "http://www.roblox.com/asset/?id=868473744"
  29.  
  30. local billboardgui = Instance.new("BillboardGui")
  31. local textbox = Instance.new("TextBox")
  32.  
  33. billboardgui.LightInfluence = 0
  34. billboardgui.SizeOffset = Vector2.new(0, 1.2)
  35. billboardgui.Size = UDim2.new(0, 200, 0, 50)
  36. billboardgui.Parent = C.Head
  37. textbox.TextWrapped = true
  38. textbox.BackgroundTransparency = 1
  39. textbox.BackgroundColor3 = Color3.new(1, 1, 1)
  40. textbox.BorderColor3 = Color3.new(1, 1, 1)
  41. textbox.TextSize = 40
  42. textbox.Font = Enum.Font.SourceSans
  43. textbox.Size = UDim2.new(0, 200, 0, 50)
  44. textbox.Text = "Hitman"
  45. textbox.TextColor3 = Color3.new(0.85098, 0.0196078, 0.0196078)
  46. textbox.Parent = billboardgui
  47.  
  48. function kill(nam, parent) if parent:FindFirstChild(nam) then
  49. parent[nam]:Destroy()
  50. end end
  51. kill("roblox", C.Torso)
  52. kill("Shirt", C)
  53. kill("Pants", C)
  54. local s=Instance.new("Shirt")
  55. s.Parent=C
  56. s.ShirtTemplate="http://www.roblox.com/asset/?id="..(shirtid-1)
  57. local t=Instance.new("Pants")
  58. t.Parent=C
  59. t.PantsTemplate="http://www.roblox.com/asset/?id="..(pantsid-1)
  60.  
  61. C.Animate.walk.WalkAnim.AnimationId = 'http://www.roblox.com/Asset?ID=28440069'
  62.  
  63.  
  64. mouse.KeyDown:connect(function(key)
  65.  
  66. if key == "e" then
  67. local mt = mouse.Target
  68. local h = mt.Parent:findFirstChild("Humanoid")
  69. if h == nil then return end
  70. for i=1,15 do
  71. RS.C0 = RS.C0 * CFrame.Angles(0, 0, 0.1)
  72. wait(0.01)
  73. end
  74. local sounds = Instance.new("Sound")
  75. sounds.SoundId = "http://www.roblox.com/asset/?id=330704232"
  76. sounds.Parent = C.Torso
  77. sounds.Volume = 10
  78. sounds:play()
  79. h.Health = 0
  80. RS.C0 = RS.C0 * CFrame.Angles(0, 0, 1)
  81. for i=1,20 do
  82. RS.C0 = RS.C0 * CFrame.Angles(0 ,0, -0.125)
  83. wait(0.05)
  84. end
  85. end
  86.  
  87. if key == "q" then
  88. if show == false then
  89. local gun = Instance.new("Part")
  90. local weld = Instance.new("Weld")
  91. local sounds = Instance.new("Sound")
  92. sounds.SoundId = "http://www.roblox.com/asset/?id=292201848"
  93. sounds.Parent = C.Torso
  94. sounds.Volume = 10
  95. sounds:play()
  96. C.Animate.idle.Animation2:remove()
  97. gun.Parent = C
  98. gun.Anchored = false
  99. gun.CanCollide = false
  100. weld.Parent = C.Torso
  101. weld.Part0 = gun
  102. weld.Part1 = C:FindFirstChild("Right Arm")
  103. weld.C1 = CFrame.fromEulerAnglesXYZ(-1.5, 3.2, 0)
  104. weld.C0 = CFrame.new(0, -0, -1.6)
  105. local mesh = Instance.new("SpecialMesh")
  106. mesh.MeshType = Enum.MeshType.FileMesh
  107. mesh.Scale = Vector3.new(0.002, 0.002, 0.002)
  108. mesh.MeshId = "rbxassetid://437259501"
  109. mesh.TextureId = "rbxassetid://437259505"
  110. mesh.Parent = gun
  111. wait(0.5)
  112. C:FindFirstChild("Right Arm").Part.CFrame = C.RA.RightGripAttachment.CFrame
  113. wait(0.5)
  114. weld.C0 = Vector3.FromAxis(0, 1, 0)
  115. show = true
  116. end
  117. end
  118.  
  119. end
  120. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement