RobloxFeScripts

Big Head/Big Scale Script (Roblox)

Dec 14th, 2021 (edited)
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.30 KB | None | 0 0
  1. --Shit ass script made by failedmite57926
  2. --Warning! You need a specified avatar scale!
  3.  
  4. local LocalPlayer = game:GetService("Players").LocalPlayer
  5. local Character = LocalPlayer.Character
  6. local Humanoid = Character:FindFirstChildOfClass("Humanoid")
  7.  
  8. function rm()
  9. for i,v in pairs(Character:GetDescendants()) do
  10. if v:IsA("BasePart") then
  11. if v.Name == "Handle" or v.Name == "Head" then
  12. if Character.Head:FindFirstChild("OriginalSize") then
  13. Character.Head.OriginalSize:Destroy()
  14. end
  15. else
  16. for i,cav in pairs(v:GetDescendants()) do
  17. if cav:IsA("Attachment") then
  18. if cav:FindFirstChild("OriginalPosition") then
  19. cav.OriginalPosition:Destroy()
  20. end
  21. end
  22. end
  23. v:FindFirstChild("OriginalSize"):Destroy()
  24. if v:FindFirstChild("AvatarPartScaleType") then
  25. v:FindFirstChild("AvatarPartScaleType"):Destroy()
  26. end
  27. end
  28. end
  29. end
  30. end
  31.  
  32. rm()
  33. wait(0.5)
  34. Humanoid:FindFirstChild("BodyProportionScale"):Destroy()
  35. wait(1)
  36.  
  37. rm()
  38. wait(0.5)
  39. Humanoid:FindFirstChild("BodyHeightScale"):Destroy()
  40. wait(1)
  41.  
  42. rm()
  43. wait(0.5)
  44. Humanoid:FindFirstChild("BodyWidthScale"):Destroy()
  45. wait(1)
  46.  
  47. rm()
  48. wait(0.5)
  49. Humanoid:FindFirstChild("BodyDepthScale"):Destroy()
  50. wait(1)
  51.  
  52. rm()
  53. wait(0.5)
  54. Humanoid:FindFirstChild("HeadScale"):Destroy()
  55. wait(1)
Add Comment
Please, Sign In to add comment