0% found this document useful (0 votes)
1K views1 page

(Fe) Small People Script Roblox

This script destroys scaling and sizing properties on a player's character model parts and humanoid to make the character model very thin and abnormal looking. It runs a function called "rm" multiple times to remove properties from parts and the humanoid, waiting briefly between each run.

Uploaded by

Pablo ORTEGA MAS
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
1K views1 page

(Fe) Small People Script Roblox

This script destroys scaling and sizing properties on a player's character model parts and humanoid to make the character model very thin and abnormal looking. It runs a function called "rm" multiple times to remove properties from parts and the humanoid, waiting briefly between each run.

Uploaded by

Pablo ORTEGA MAS
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

--Shit ass script made by failedmite57926

local LocalPlayer = game:GetService("Players").LocalPlayer


local Character = LocalPlayer.Character
local Humanoid = Character:FindFirstChildOfClass("Humanoid")

local function rm()


for i,v in pairs(Character:GetDescendants()) do
if v:IsA("BasePart") then
if v.Name ~= "Head" then
for i,cav in pairs(v:GetDescendants()) do
if cav:IsA("Attachment") then
if cav:FindFirstChild("OriginalPosition") then
cav.OriginalPosition:Destroy()
end
end
end
v:FindFirstChild("OriginalSize"):Destroy()
if v:FindFirstChild("AvatarPartScaleType") then
v:FindFirstChild("AvatarPartScaleType"):Destroy()
end
end
end
end
end

rm()

wait(0.5)

Humanoid:FindFirstChild("BodyTypeScale"):Destroy()

wait(1)

rm()

wait(0.5)

Humanoid:FindFirstChild("BodyWidthScale"):Destroy()

wait(1)

rm()

wait(0.5)

Humanoid:FindFirstChild("BodyDepthScale"):Destroy()

wait(1)

rm()

wait()

You might also like