Advertisement
Guest User

Untitled

a guest
Jul 12th, 2019
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.98 KB | None | 0 0
  1. --[[
  2.  
  3.  
  4.  
  5. CREDITO TO RETROJOOOOONO ONO ROBLOXO
  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. lp = game.Players.Ruan176Br -- change ur name of course
  21. char = lp.Character
  22. gc = char:GetChildren()
  23. for i=1, #gc do
  24. if gc[i].ClassName == "Part" then
  25. gc[i].Transparency = 1
  26. if gc[i]:FindFirstChildOfClass("Decal") then
  27. gc[i]:FindFirstChildOfClass("Decal"):Destroy()
  28. end
  29. end
  30. 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
  31. gc[i]:Destroy()
  32. end
  33. end
  34. decalpart = Instance.new("Part",workspace)
  35. decalpart.Size = Vector3.new(4,6,0.1)
  36. decalpart.Anchored = true
  37. decalpart.CanCollide = false
  38. decalpart.Transparency = 1
  39. decalpart.Parent = char
  40. decal1 = Instance.new("Decal",decalpart)
  41. decal1.Face = Enum.NormalId.Front
  42. decal2 = Instance.new("Decal",decalpart)
  43. decal2.Face = Enum.NormalId.Back
  44.  
  45. function changedecal(decalid)
  46. decal1.Texture = decalid
  47. decal2.Texture = decalid
  48. end
  49.  
  50. changedecal(normal)
  51.  
  52. lp.Chatted:connect(function(msg)
  53. if msg == "/e angry" then
  54. if angry then
  55. angry = false
  56. char.Humanoid.WalkSpeed = 16
  57. char.Humanoid.JumpPower = 50
  58. changedecal(normal)
  59. else
  60. angry = true
  61. char.Humanoid.WalkSpeed = 0
  62. char.Humanoid.JumpPower = 10
  63. changedecal(slap0)
  64. end
  65. end
  66. end)
  67.  
  68. char.Humanoid.Jumping:connect(function()
  69. if angry then
  70. changedecal(slap1)
  71. char.Humanoid.WalkSpeed = 25
  72. wait(0.5)
  73. changedecal(slap0)
  74. char.Humanoid.WalkSpeed = 0
  75. end
  76. end)
  77.  
  78. decalpart.Touched:connect(function(hit)
  79. if hit.Parent:FindFirstChildOfClass("Humanoid") and hit.Parent ~= char and hit.Parent.Parent ~= char then
  80. if angry then
  81. hit:BreakJoints()
  82. end
  83. end
  84. end)
  85.  
  86. while true do
  87. wait(0.01)
  88. decalpart.CFrame = char.Head.CFrame
  89. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement