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



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



  • Recent Roblox Scripts