Advertisement
Guest User

Untitled

a guest
Apr 28th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. iz = (game.Players.LocalPlayer.Name)
  2.  
  3. is = (game.Players.LocalPlayer.Character)
  4.  
  5. for i,v in pairs(is:GetChildren()) do
  6. if v.ClassName == 'Hat' then
  7. v:Destroy()
  8. end
  9. end
  10.  
  11. for i,v in pairs(is:GetChildren()) do
  12. if v.ClassName == 'Shirt' then
  13. v:Destroy()
  14. end
  15. end
  16.  
  17. for i,v in pairs(is:GetChildren()) do
  18. if v.ClassName == 'Pants' then
  19. v:Destroy()
  20. end
  21. end
  22.  
  23.  
  24. wait()
  25.  
  26. sound = Instance.new('Sound')
  27. sound.SoundId = 'http://www.roblox.com/asset/?id=132476475' --476296898
  28. sound.Looped = true
  29. sound.Parent = is.Torso
  30. sound.Volume = 1
  31.  
  32. faec = Instance.new('Sound')
  33. faec.SoundId = 'http://www.roblox.com/asset/?id=132476475' --476296898
  34. faec.Looped = false
  35. faec.Parent = is.Torso
  36. faec.Volume = 1
  37.  
  38. taut = Instance.new('Sound')
  39. taut.SoundId = 'http://www.roblox.com/asset/?id=268829264' --476296898
  40. taut.Looped = true
  41. taut.Parent = is.Torso
  42. taut.Volume = 1
  43.  
  44. taut2 = Instance.new('Sound')
  45. taut2.SoundId = 'http://www.roblox.com/asset/?id=268997355' --476296898
  46. taut2.Looped = true
  47. taut2.Parent = is.Torso
  48. taut2.Volume = 1
  49.  
  50.  
  51.  
  52. local player = game.Players.LocalPlayer
  53. repeat wait() until player.Character.Humanoid
  54. local humanoid = player.Character.Humanoid
  55. local mouse = player:GetMouse()
  56.  
  57. local anim = Instance.new("Animation")
  58. anim.AnimationId = "http://www.roblox.com/Asset?ID=87684948"
  59.  
  60. mouse.KeyDown:connect(function(key)
  61. if key == "z" then
  62. sound:Play()
  63. is.Humanoid.WalkSpeed = 16
  64. end
  65. end)
  66.  
  67. mouse.KeyDown:connect(function(key)
  68. if key == "x" then
  69. faec:Play()
  70. sound:Stop()
  71. is.Humanoid.WalkSpeed = 16
  72. local playAnim = humanoid:LoadAnimation(anim)
  73. playAnim:Play()
  74. end
  75. end)
  76.  
  77. mouse.KeyDown:connect(function(key)
  78. if key == "c" then
  79. faec:Stop()
  80. taut:Play()
  81. taut2:Play()
  82. is.Humanoid.WalkSpeed = 45
  83. is.Animate.walk.WalkAnim.AnimationId = 'http://www.roblox.com/Asset?ID=252557606'
  84. end
  85. end)
  86.  
  87. function onTouch(part)
  88. local humanoid = part.Parent:findFirstChild("Humanoid")
  89. if (humanoid ~=nil) then
  90. humanoid.Health = 0
  91. sound1 = Instance.new('Sound')
  92. sound1.SoundId = 'http://www.roblox.com/asset/?id=256509968'
  93. sound1.Looped = false
  94. sound1.Parent = is.Torso
  95. sound1:Play()
  96. end
  97. end
  98.  
  99. is.Torso.Touched:connect(onTouch)
  100.  
  101. while true do
  102. wait()
  103. game.Workspace[iz].Head.BrickColor = BrickColor.new('Fossil')
  104. game.Workspace[iz]['Right Leg'].BrickColor = BrickColor.new('Fossil')
  105. game.Workspace[iz]['Left Leg'].BrickColor = BrickColor.new('Fossil')
  106. game.Workspace[iz]['Right Arm'].BrickColor = BrickColor.new('Fossil')
  107. game.Workspace[iz]['Left Arm'].BrickColor = BrickColor.new('Fossil')
  108. game.Workspace[iz].Torso.BrickColor = BrickColor.new('Fossil')
  109. game.Workspace[iz].Head.face.Texture = 'http://www.roblox.com/asset/?id=133667125'
  110. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement