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



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1. local LocalPlayer = game:GetService("Players").LocalPlayer
  2. local Character = LocalPlayer.Character
  3. local Humanoid = Character:FindFirstChildOfClass("Humanoid")
  4.  
  5. local function rm()
  6.         for i,v in pairs(Character:GetDescendants()) do
  7.                 if v:IsA("BasePart") then
  8.                         if v.Name ~= "Head" then
  9.                                 for i,cav in pairs(v:GetDescendants()) do
  10.                                         if cav:IsA("Attachment") then
  11.                                                 if cav:FindFirstChild("OriginalPosition") then
  12.                                                         cav.OriginalPosition:Destroy()
  13.                                                 end
  14.                                         end
  15.                                 end
  16.                                 v:FindFirstChild("OriginalSize"):Destroy()
  17.                                 if v:FindFirstChild("AvatarPartScaleType") then
  18.                                         v:FindFirstChild("AvatarPartScaleType"):Destroy()
  19.                                 end
  20.                         end
  21.                 end
  22.         end
  23. end
  24.  
  25. rm()
  26. wait(0.5)
  27. Humanoid:FindFirstChild("BodyTypeScale"):Destroy()
  28. wait(1)
  29.  
  30. rm()
  31. wait(0.5)
  32. Humanoid:FindFirstChild("BodyWidthScale"):Destroy()
  33. wait(1)
  34.  
  35. rm()
  36. wait(0.5)
  37. Humanoid:FindFirstChild("BodyDepthScale"):Destroy()
  38. wait(1)
  39.  
  40. rm()
  41. wait(0.5)
  42. Humanoid:FindFirstChild("HeadScale"):Destroy()
  43. wait(1)



  • Recent Roblox Scripts