Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- This only works with games that have R15 enabled, the game must allow you to change your scale (Become a giant slender)
- -- How to use: Goto Scale, enable R15, and max out Bodytype (100%), height (105%), Width (100%), Head (100%), Proportions (0%).
- -- Screenshot of scale: https://cdn.discordapp.com/attachments/938275625385484330/942612030844715089/unknown.png
- -- Screenshot of script: https://cdn.discordapp.com/attachments/938275625385484330/942613759090913360/unknown.png
- local LocalPlayer = game:GetService("Players").LocalPlayer
- local Character = LocalPlayer.Character
- local Humanoid = Character:FindFirstChildOfClass("Humanoid")
- function rm()
- for i,v in pairs(Character:GetDescendants()) do
- if v:IsA("BasePart") then
- if v.Name == "Handle" or v.Name == "Head" then
- if Character.Head:FindFirstChild("OriginalSize") then
- Character.Head.OriginalSize:Destroy()
- end
- else
- 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("BodyProportionScale"):Destroy()
- wait(1)
- rm()
- wait(0.5)
- Humanoid:FindFirstChild("BodyHeightScale"):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(0.5)
- Humanoid:FindFirstChild("HeadScale"):Destroy()
- wait(1)
Add Comment
Please, Sign In to add comment