sasod35

Fe Tall Man script

Apr 11th, 2023
11
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.39 KB | None | 0 0
  1. --[[
  2. -How To Use-
  3. *Only works in R15 games*
  4. Set character to R15
  5. Body Type 100%
  6. Scale - Height 105%, Width 100%, Head 100%, Proportions 0%
  7. ]]--
  8.  
  9. --script made by failedmite57926
  10.  
  11. local LocalPlayer = game:GetService("Players").LocalPlayer
  12. local Character = LocalPlayer.Character
  13. local Humanoid = Character:FindFirstChildOfClass("Humanoid")
  14.  
  15. function rm()
  16. for i,v in pairs(Character:GetDescendants()) do
  17. if v:IsA("BasePart") then
  18. if v.Name == "Handle" or v.Name == "Head" then
  19. if Character.Head:FindFirstChild("OriginalSize") then
  20. Character.Head.OriginalSize:Destroy()
  21. end
  22. else
  23. for i,cav in pairs(v:GetDescendants()) do
  24. if cav:IsA("Attachment") then
  25. if cav:FindFirstChild("OriginalPosition") then
  26. cav.OriginalPosition:Destroy()
  27. end
  28. end
  29. end
  30. v:FindFirstChild("OriginalSize"):Destroy()
  31. if v:FindFirstChild("AvatarPartScaleType") then
  32. v:FindFirstChild("AvatarPartScaleType"):Destroy()
  33. end
  34. end
  35. end
  36. end
  37. end
  38.  
  39. rm()
  40. wait(0.5)
  41. Humanoid:FindFirstChild("BodyProportionScale"):Destroy()
  42. wait(1)
  43.  
  44. rm()
  45. wait(0.5)
  46. Humanoid:FindFirstChild("BodyHeightScale"):Destroy()
  47. wait(1)
  48.  
  49. rm()
  50. wait(0.5)
  51. Humanoid:FindFirstChild("BodyWidthScale"):Destroy()
  52. wait(1)
  53.  
  54. rm()
  55. wait(0.5)
  56. Humanoid:FindFirstChild("BodyDepthScale"):Destroy()
  57. wait(1)
  58.  
  59. rm()
  60. wait(0.5)
  61. Humanoid:FindFirstChild("HeadScale"):Destroy()
  62. wait(1)
Add Comment
Please, Sign In to add comment