gilward

Hello Neighbor

Feb 20th, 2018
249
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.65 KB | None | 0 0
  1. --This is made by OneBullet360 aka Big L. Hope you enjoy--
  2. iz = (game.Players.LocalPlayer.Name)
  3.  
  4. is = (game.Players.LocalPlayer.Character)
  5.  
  6. for i,v in pairs(is:GetChildren()) do
  7. if v.ClassName == 'Hat' then
  8. v:Destroy()
  9. end
  10. end
  11.  
  12. for i,v in pairs(is:GetChildren()) do
  13. if v.ClassName == 'Shirt' then
  14. v:Destroy()
  15. end
  16. end
  17.  
  18. for i,v in pairs(is:GetChildren()) do
  19. if v.ClassName == 'Pants' then
  20. v:Destroy()
  21. end
  22. end
  23.  
  24.  
  25. wait()
  26.  
  27.  
  28. shirt = Instance.new('Shirt')
  29. shirt.Parent = is
  30. shirt.ShirtTemplate = 'http://www.roblox.com/asset/?id=648561877'
  31.  
  32. pants = Instance.new('Pants')
  33. pants.Parent = is
  34. pants.PantsTemplate = 'http://www.roblox.com/asset/?id=591736179'
  35.  
  36. sound = Instance.new('Sound')
  37. sound.SoundId = 'http://www.roblox.com/asset/?id=595265353' --595265353
  38. sound.Looped = true
  39. sound.Parent = is.Torso
  40. sound.Volume = 1
  41.  
  42. taut = Instance.new('Sound')
  43. taut.SoundId = 'http://www.roblox.com/asset/?id=595265353' --595265353
  44. taut.Looped = true
  45. taut.Parent = is.Torso
  46. taut.Volume = 1
  47.  
  48. local player = game.Players.LocalPlayer
  49. repeat wait() until player.Character.Humanoid
  50. local humanoid = player.Character.Humanoid
  51. local mouse = player:GetMouse()
  52.  
  53. local anim = Instance.new("Animation")
  54. anim.AnimationId = "http://www.roblox.com/Asset?ID=27789359"
  55.  
  56.  
  57. local msg = Instance.new("Hint")
  58. msg.Parent = game.Workspace
  59. msg.Text = "Click 'z' to get ready."
  60. is.Humanoid.WalkSpeed = 0
  61.  
  62. mouse.KeyDown:connect(function(key)
  63. if key == "z" then
  64. sound:Play()
  65. msg:Destroy()
  66. taut:Play()
  67. is.Humanoid.WalkSpeed = 60
  68. is.Animate.walk.WalkAnim.AnimationId = 'http://www.roblox.com/Asset?ID=252557606'
  69. end
  70. end)
  71.  
  72. function onTouch(part)
  73. local humanoid = part.Parent:findFirstChild("Humanoid")
  74. sound1 = Instance.new('Sound')
  75. sound1.SoundId = 'http://www.roblox.com/asset/?id=634710465'
  76. sound1.Looped = false
  77. sound1.Parent = is.Torso
  78. sound1:Play()
  79.  
  80. sound2 = Instance.new('Sound')
  81. sound2.SoundId = 'http://www.roblox.com/asset/?id=634710465'
  82. sound2.Looped = false
  83. sound2.Parent = is.Torso
  84. sound2:Play()
  85. if (humanoid ~=nil) then
  86. humanoid.Health = 0
  87. end
  88. end
  89.  
  90. is.Torso.Touched:connect(onTouch)
  91.  
  92. while true do
  93. wait()
  94. game.Workspace[iz].Head.BrickColor = BrickColor.new('Light orange')
  95. game.Workspace[iz]['Right Leg'].BrickColor = BrickColor.new('Light orange')
  96. game.Workspace[iz]['Left Leg'].BrickColor = BrickColor.new('Light orange')
  97. game.Workspace[iz]['Right Arm'].BrickColor = BrickColor.new('Light orange')
  98. game.Workspace[iz]['Left Arm'].BrickColor = BrickColor.new('Light orange')
  99. game.Workspace[iz].Torso.BrickColor = BrickColor.new('Light orange')
  100. game.Workspace[iz].Head.face.Texture = 'rbxassetid://154020737'
  101. end
Add Comment
Please, Sign In to add comment