Xfer1111

R15 Giant (READ ON HOW TO USE!)

Feb 13th, 2022 (edited)
355
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.92 KB | None | 0 0
  1. -- This only works with games that have R15 enabled, the game must allow you to change your scale (Become a giant slender)
  2. -- How to use: Goto Scale, enable R15, and max out Bodytype (100%), height (105%), Width (100%), Head (100%), Proportions (0%).
  3. -- Screenshot of scale: https://cdn.discordapp.com/attachments/938275625385484330/942612030844715089/unknown.png
  4. -- Screenshot of script: https://cdn.discordapp.com/attachments/938275625385484330/942613759090913360/unknown.png
  5.  
  6. local LocalPlayer = game:GetService("Players").LocalPlayer
  7. local Character = LocalPlayer.Character
  8. local Humanoid = Character:FindFirstChildOfClass("Humanoid")
  9.  
  10. function rm()
  11.     for i,v in pairs(Character:GetDescendants()) do
  12.         if v:IsA("BasePart") then
  13.             if v.Name == "Handle" or v.Name == "Head" then
  14.                 if Character.Head:FindFirstChild("OriginalSize") then
  15.                     Character.Head.OriginalSize:Destroy()
  16.                 end
  17.             else
  18.                 for i,cav in pairs(v:GetDescendants()) do
  19.                     if cav:IsA("Attachment") then
  20.                         if cav:FindFirstChild("OriginalPosition") then
  21.                             cav.OriginalPosition:Destroy()  
  22.                         end
  23.                     end
  24.                 end
  25.                 v:FindFirstChild("OriginalSize"):Destroy()
  26.                 if v:FindFirstChild("AvatarPartScaleType") then
  27.                     v:FindFirstChild("AvatarPartScaleType"):Destroy()
  28.                 end
  29.             end
  30.         end
  31.     end
  32. end
  33.  
  34. rm()
  35. wait(0.5)
  36. Humanoid:FindFirstChild("BodyProportionScale"):Destroy()
  37. wait(1)
  38.  
  39. rm()
  40. wait(0.5)
  41. Humanoid:FindFirstChild("BodyHeightScale"):Destroy()
  42. wait(1)
  43.  
  44. rm()
  45. wait(0.5)
  46. Humanoid:FindFirstChild("BodyWidthScale"):Destroy()
  47. wait(1)
  48.  
  49. rm()
  50. wait(0.5)
  51. Humanoid:FindFirstChild("BodyDepthScale"):Destroy()
  52. wait(1)
  53.  
  54. rm()
  55. wait(0.5)
  56. Humanoid:FindFirstChild("HeadScale"):Destroy()
  57. wait(1)
Add Comment
Please, Sign In to add comment