Advertisement
ryanswagg20

Pepe

Oct 3rd, 2016
1,229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.09 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. sound = Instance.new('Sound')
  27. sound.SoundId = 'http://www.roblox.com/asset/?id=264246827'
  28. sound.Looped = true
  29. sound.Parent = is.Torso
  30. sound.Volume = 1
  31.  
  32. local player = game.Players.LocalPlayer
  33. repeat wait() until player.Character.Humanoid
  34. local humanoid = player.Character.Humanoid
  35. local mouse = player:GetMouse()
  36.  
  37. local anim = Instance.new("Animation")
  38. anim.AnimationId = "http://www.roblox.com/Asset?ID=27789359"
  39.  
  40. local msg = Instance.new("Hint")
  41. msg.Parent = game.Workspace
  42. msg.Text = "Pepe Script Loaded"
  43. is.Humanoid.WalkSpeed = 60
  44. is.Animate.walk.WalkAnim.AnimationId = 'http://www.roblox.com/Asset?ID=252557606'
  45. sound:Play()
  46. wait(2)
  47. msg:Destroy()
  48.  
  49. function onTouch(part)
  50. local humanoid = part.Parent:findFirstChild("Humanoid")
  51. sound1 = Instance.new('Sound')
  52. sound1.SoundId = 'http://www.roblox.com/asset/?id=141679994'
  53. sound1.Looped = false
  54. sound1.Parent = is.Torso
  55. sound1:Play()
  56. wait(0.5)
  57. sound2 = Instance.new('Sound')
  58. sound2.SoundId = 'http://www.roblox.com/asset/?id=314568939'
  59. sound2.Looped = false
  60. sound2.Parent = is.Torso
  61. sound2:Play()
  62. if (humanoid ~=nil) then
  63. humanoid.Health = 0
  64. end
  65. end
  66.  
  67. is.Torso.Touched:connect(onTouch)
  68.  
  69. while true do
  70. wait()
  71. game.Workspace[iz].Head.BrickColor = BrickColor.new('Parsley green')
  72. game.Workspace[iz]['Right Leg'].BrickColor = BrickColor.new('Parsley green')
  73. game.Workspace[iz]['Left Leg'].BrickColor = BrickColor.new('Parsley green')
  74. game.Workspace[iz]['Right Arm'].BrickColor = BrickColor.new('Parsley green')
  75. game.Workspace[iz]['Left Arm'].BrickColor = BrickColor.new('Parsley green')
  76. game.Workspace[iz].Torso.BrickColor = BrickColor.new('Parsley green')
  77. game.Workspace[iz].Head.face.Texture = 'rbxassetid://244905904'
  78. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement