The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
Fe Tall Man script pastebin roblox
By Fe Tall Man on 2024-11-11 08:00 am | Syntax: LUA | Views: 16



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1. --body sizes: BodyHeightScale: 105%
  2. --            BodyWidthScale: 100%
  3. --            HeadScale: 100%
  4. --            BodyProportionScale: 0%
  5. --            AvatarPartScaleType: 100%
  6.  
  7.  
  8. local LocalPlayer = game:GetService("Players").LocalPlayer
  9. local Character = LocalPlayer.Character
  10. local Humanoid = Character:FindFirstChildOfClass("Humanoid")
  11.  
  12. function rm()
  13.  for i,v in pairs(Character:GetDescendants()) do
  14.   if v:IsA("BasePart") then
  15.    if v.Name == "Handle" or v.Name == "Head" then
  16.     if Character.Head:FindFirstChild("OriginalSize") then
  17.      Character.Head.OriginalSize:Destroy()
  18.     end
  19.    else
  20.     for i,cav in pairs(v:GetDescendants()) do
  21.      if cav:IsA("Attachment") then
  22.       if cav:FindFirstChild("OriginalPosition") then
  23.        cav.OriginalPosition:Destroy()  
  24.       end
  25.      end
  26.     end
  27.     v:FindFirstChild("OriginalSize"):Destroy()
  28.     if v:FindFirstChild("AvatarPartScaleType") then
  29.      v:FindFirstChild("AvatarPartScaleType"):Destroy()
  30.     end
  31.    end
  32.   end
  33.  end
  34. end
  35.  
  36. rm()
  37. wait(0.5)
  38. Humanoid:FindFirstChild("BodyProportionScale"):Destroy()
  39. wait(1)
  40.  
  41. rm()
  42. wait(0.5)
  43. Humanoid:FindFirstChild("BodyHeightScale"):Destroy()
  44. wait(1)
  45.  
  46. rm()
  47. wait(0.5)
  48. Humanoid:FindFirstChild("BodyWidthScale"):Destroy()
  49. wait(1)
  50.  
  51. rm()
  52. wait(0.5)
  53. Humanoid:FindFirstChild("BodyDepthScale"):Destroy()
  54. wait(1)
  55.  
  56. rm()
  57. wait(0.5)
  58. Humanoid:FindFirstChild("HeadScale"):Destroy()
  59. wait(1)