Advertisement
noslenpo

stomedy edit new 1

Nov 8th, 2016
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.43 KB | None | 0 0
  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.  
  27. shirt = Instance.new('Shirt')
  28. shirt.Parent = is
  29. shirt.ShirtTemplate = 'http://www.roblox.com/asset/?id=438281698'
  30.  
  31. pants = Instance.new('Pants')
  32. pants.Parent = is
  33. pants.PantsTemplate = 'http://www.roblox.com/asset/?id=360479711'
  34.  
  35. sound = Instance.new('Sound')
  36. sound.SoundId = 'http://www.roblox.com/asset/?id=314071420' --476296898
  37. sound.Looped = true
  38. sound.Parent = is.Torso
  39. sound.Volume = 1
  40.  
  41. local player = game.Players.LocalPlayer
  42. repeat wait() until player.Character.Humanoid
  43. local humanoid = player.Character.Humanoid
  44. local mouse = player:GetMouse()
  45.  
  46. local anim = Instance.new("Animation")
  47. anim.AnimationId = "http://www.roblox.com/Asset?ID=27789359"
  48.  
  49.  
  50. local msg = Instance.new("Hint")
  51. msg.Parent = game.Workspace
  52. msg.Text = "Click 'z' to get started."
  53. is.Humanoid.WalkSpeed = 0
  54.  
  55. mouse.KeyDown:connect(function(key)
  56. if key == "z" then
  57. sound:Play()
  58. msg:Destroy()
  59. taut:Play()
  60. is.Humanoid.WalkSpeed = 80
  61. is.Animate.walk.WalkAnim.AnimationId = 'http://www.roblox.com/Asset?ID=252557606'
  62. end
  63. end)
  64.  
  65. function onTouch(part)
  66. local humanoid = part.Parent:findFirstChild("Humanoid")
  67. sound1 = Instance.new('Sound')
  68. sound1.SoundId = 'http://www.roblox.com/asset/?id=160432334'
  69. sound1.Looped = false
  70. sound1.Parent = is.Torso
  71. sound1:Play()
  72.  
  73. sound2 = Instance.new('Sound')
  74. sound2.SoundId = 'http://www.roblox.com/asset/?id=170040190'
  75. sound2.Looped = false
  76. sound2.Parent = is.Torso
  77. sound2:Play()
  78. if (humanoid ~=nil) then
  79. humanoid.Health = 0
  80. end
  81. end
  82.  
  83. is.Torso.Touched:connect(onTouch)
  84.  
  85. while true do
  86. wait()
  87. game.Workspace[iz].Head.BrickColor = BrickColor.new('Dark orange')
  88. game.Workspace[iz]['Right Leg'].BrickColor = BrickColor.new('Dark orange')
  89. game.Workspace[iz]['Left Leg'].BrickColor = BrickColor.new('Dark orange')
  90. game.Workspace[iz]['Right Arm'].BrickColor = BrickColor.new('Dark orange')
  91. game.Workspace[iz]['Left Arm'].BrickColor = BrickColor.new('Dark orange')
  92. game.Workspace[iz].Torso.BrickColor = BrickColor.new('Dark orange')
  93. game.Workspace[iz].Head.face.Texture = 'rbxassetid://439557611'
  94. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement