Advertisement
PersonsadminTeam

STOMEDY SCRIPT

Aug 10th, 2016
788
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.39 KB | None | 0 0
  1. --What does it do?
  2. --Plays the stomedy cardboard music when you execute the script
  3. --Plays the 'Bruh' sound and the hitmarker when you hit someone.
  4. --They die when you hit someone.
  5. --You are faster.
  6.  
  7. wait()
  8.  
  9.  
  10. shirt = Instance.new('Shirt')
  11. shirt.Parent = is
  12. shirt.ShirtTemplate = 'http://www.roblox.com/asset/?id=438281698'
  13.  
  14. pants = Instance.new('Pants')
  15. pants.Parent = is
  16. pants.PantsTemplate = 'http://www.roblox.com/asset/?id=360479711'
  17.  
  18. sound = Instance.new('Sound')
  19. sound.SoundId = 'http://www.roblox.com/asset/?id=439559686' --476296898
  20. sound.Looped = true
  21. sound.Parent = is.Torso
  22. sound.Volume = 1
  23.  
  24. taut = Instance.new('Sound')
  25. taut.SoundId = 'http://www.roblox.com/asset/?id=439550923' --476296898
  26. taut.Looped = true
  27. taut.Parent = is.Torso
  28. taut.Volume = 0.5
  29.  
  30. local player = game.Players.LocalPlayer
  31. repeat wait() until player.Character.Humanoid
  32. local humanoid = player.Character.Humanoid
  33. local mouse = player:GetMouse()
  34.  
  35. local anim = Instance.new("Animation")
  36. anim.AnimationId = "http://www.roblox.com/Asset?ID=27789359"
  37.  
  38.  
  39. local msg = Instance.new("Hint")
  40. msg.Parent = game.Workspace
  41. msg.Text = "Click 'z' to get started."
  42. is.Humanoid.WalkSpeed = 0
  43.  
  44. mouse.KeyDown:connect(function(key)
  45. if key == "z" then
  46. sound:Play()
  47. msg:Destroy()
  48. taut:Play()
  49. is.Humanoid.WalkSpeed = 60
  50. is.Animate.walk.WalkAnim.AnimationId = 'http://www.roblox.com/Asset?ID=252557606'
  51. end
  52. end)
  53.  
  54. function onTouch(part)
  55. local humanoid = part.Parent:findFirstChild("Humanoid")
  56. sound1 = Instance.new('Sound')
  57. sound1.SoundId = 'http://www.roblox.com/asset/?id=160432334'
  58. sound1.Looped = false
  59. sound1.Parent = is.Torso
  60. sound1:Play()
  61.  
  62. sound2 = Instance.new('Sound')
  63. sound2.SoundId = 'http://www.roblox.com/asset/?id=170040190'
  64. sound2.Looped = false
  65. sound2.Parent = is.Torso
  66. sound2:Play()
  67. if (humanoid ~=nil) then
  68. humanoid.Health = 0
  69. end
  70. end
  71.  
  72. is.Torso.Touched:connect(onTouch)
  73.  
  74. while true do
  75. wait()
  76. game.Workspace[iz].Head.BrickColor = BrickColor.new('Dark orange')
  77. game.Workspace[iz]['Right Leg'].BrickColor = BrickColor.new('Dark orange')
  78. game.Workspace[iz]['Left Leg'].BrickColor = BrickColor.new('Dark orange')
  79. game.Workspace[iz]['Right Arm'].BrickColor = BrickColor.new('Dark orange')
  80. game.Workspace[iz]['Left Arm'].BrickColor = BrickColor.new('Dark orange')
  81. game.Workspace[iz].Torso.BrickColor = BrickColor.new('Dark orange')
  82. game.Workspace[iz].Head.face.Texture = 'rbxassetid://439557611'
  83. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement