Advertisement
2021_pogg

xdddddd

Sep 11th, 2021
18
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.54 KB | None | 0 0
  1. local Player = game.Players.LocalPlayer
  2.  
  3. Player.Chatted:connect(function(cht)
  4. if cht:match("Demon!") then
  5. wait(0.1)
  6. local lplr = game.Players.LocalPlayer
  7. local chara = lplr.Character
  8.  
  9. function rm()
  10. for i,v in pairs(chara:GetDescendants()) do
  11. if v:IsA("BasePart") then
  12. if v.Name == ("Handle") or v.Name == ("Head") then
  13. if chara.Head:FindFirstChild("OriginalSize") then
  14. chara.Head.OriginalSize:Destroy()
  15. end
  16.  
  17. else
  18.  
  19. for i,cav in pairs(v:GetDescendants()) do
  20. if cav:IsA("Attachment") then
  21. if cav:FindFirstChild("OriginalPosition") then
  22. cav.OriginalPosition:Destroy()
  23. end
  24. end
  25. end
  26. if v:FindFirstChild("OriginalSize") then
  27. v:FindFirstChild("OriginalSize"):Destroy()
  28. end
  29. if v:FindFirstChild("AvatarPartScaleType") then
  30. v:FindFirstChild("AvatarPartScaleType"):Destroy()
  31. end
  32.  
  33. end
  34. end
  35. end
  36. end
  37.  
  38.  
  39. rm()
  40.  
  41. wait(0.5)
  42.  
  43. game.Players.LocalPlayer.Character.Humanoid.BodyProportionScale:Destroy()
  44.  
  45.  
  46. wait(1)
  47.  
  48. rm()
  49.  
  50. wait(0.5)
  51.  
  52. game.Players.LocalPlayer.Character.Humanoid.BodyHeightScale:Destroy()
  53.  
  54.  
  55. wait(1)
  56.  
  57. rm()
  58.  
  59. wait(0.5)
  60.  
  61. game.Players.LocalPlayer.Character.Humanoid.BodyWidthScale:Destroy()
  62.  
  63.  
  64. wait(1)
  65.  
  66. rm()
  67.  
  68.  
  69. wait(0.5)
  70.  
  71. game.Players.LocalPlayer.Character.Humanoid.BodyDepthScale:Destroy()
  72.  
  73.  
  74. wait(1)
  75.  
  76. rm()
  77.  
  78. wait()
  79.  
  80.  
  81. wait(0.5)
  82.  
  83. game.Players.LocalPlayer.Character.Humanoid.HeadScale:Destroy()
  84.  
  85.  
  86. wait(1)
  87. end
  88. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement