Advertisement
Bendy928443534

Untitled

Jul 15th, 2019
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.91 KB | None | 0 0
  1. --[[
  2.  
  3.  
  4.  
  5. CREDITO TO ehanjerome8
  6. WHYO AMIO SPEAKINGO LIKE-THISO HELP-MEO PLEASO
  7.  
  8.  
  9.  
  10.  
  11.  
  12.  
  13. --]]
  14.  
  15. angry = false
  16. wait(1)
  17. normal = "http://www.roblox.com/asset/?id=2178100649"
  18. slap0 = "http://www.roblox.com/asset/?id=2178101474"
  19. slap1 = "http://www.roblox.com/asset/?id=2178101742"
  20. char = lp.Character
  21. gc = char:GetChildren()
  22. for i=1, #gc do
  23. if gc[i].ClassName == "Part" then
  24. gc[i].Transparency = 1
  25. if gc[i]:FindFirstChildOfClass("Decal") then
  26. gc[i]:FindFirstChildOfClass("Decal"):Destroy()
  27. end
  28. end
  29. if gc[i].ClassName == "Shirt" or gc[i].ClassName == "Pants" or gc[i].ClassName == "Hat" or gc[i].ClassName == "Accessory" or gc[i].ClassName == "ShirtGraphic" or gc[i].ClassName == "ShirtGraphics" then
  30. gc[i]:Destroy()
  31. end
  32. end
  33. decalpart = Instance.new("Part",workspace)
  34. decalpart.Size = Vector3.new(4,6,0.1)
  35. decalpart.Anchored = true
  36. decalpart.CanCollide = false
  37. decalpart.Transparency = 1
  38. decalpart.Parent = char
  39. decal1 = Instance.new("Decal",decalpart)
  40. decal1.Face = Enum.NormalId.Front
  41. decal2 = Instance.new("Decal",decalpart)
  42. decal2.Face = Enum.NormalId.Back
  43.  
  44. function changedecal(decalid)
  45. decal1.Texture = decalid
  46. decal2.Texture = decalid
  47. end
  48.  
  49. changedecal(normal)
  50.  
  51. lp.Chatted:connect(function(msg)
  52. if msg == "/e angry" then
  53. if angry then
  54. angry = false
  55. char.Humanoid.WalkSpeed = 16
  56. char.Humanoid.JumpPower = 50
  57. changedecal(normal)
  58. else
  59. angry = true
  60. char.Humanoid.WalkSpeed = 0
  61. char.Humanoid.JumpPower = 10
  62. changedecal(slap0)
  63. end
  64. end
  65. end)
  66.  
  67. char.Humanoid.Jumping:connect(function()
  68. if angry then
  69. changedecal(slap1)
  70. char.Humanoid.WalkSpeed = 25
  71. wait(0.5)
  72. changedecal(slap0)
  73. char.Humanoid.WalkSpeed = 0
  74. end
  75. end)
  76.  
  77. decalpart.Touched:connect(function(hit)
  78. if hit.Parent:FindFirstChildOfClass("Humanoid") and hit.Parent ~= char and hit.Parent.Parent ~= char then
  79. if angry then
  80. hit:BreakJoints()
  81. end
  82. end
  83. end)
  84.  
  85. while true do
  86. wait(0.01)
  87. decalpart.CFrame = char.Head.CFrame
  88. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement