Advertisement
KewlROBLOXExploiter

Small Script (R15)

Feb 17th, 2019
6,921
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. function PlayerSize(player)
  2. local SizeValue = 0.5
  3.  
  4. local humanoid = player.Character.Humanoid
  5. if humanoid then
  6. if humanoid:FindFirstChild("BodyHeightScale") then
  7. humanoid.BodyHeightScale.Value = SizeValue
  8. end
  9. if humanoid:FindFirstChild("BodyWidthScale") then
  10. humanoid.BodyWidthScale.Value = SizeValue
  11. end
  12. if humanoid:FindFirstChild("BodyDepthScale") then
  13. humanoid.BodyDepthScale.Value = SizeValue
  14. end
  15. if humanoid:FindFirstChild("BodyHeadScale") then
  16. humanoid.BodyHeadScale.Value = 1
  17. end
  18. end
  19. end
  20.  
  21. wait(1)
  22. PlayerSize(game.players.LocalPlayer)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement