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



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. rm()
  25. wait(0.5)
  26. Humanoid:FindFirstChild("BodyTypeScale"):Destroy()
  27. wait(1)
  28. rm()
  29. wait(0.5)
  30. Humanoid:FindFirstChild("BodyWidthScale"):Destroy()
  31. wait(1)
  32. rm()
  33. wait(0.5)
  34. Humanoid:FindFirstChild("BodyDepthScale"):Destroy()
  35. wait(1)
  36. rm()
  37. wait()
  38. wait(0.5)
  39. Humanoid:FindFirstChild("HeadScale"):Destroy()
  40. wait(1)



  • Recent Roblox Scripts