Advertisement
Guest User

Untitled

a guest
Dec 15th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. 01
  2. game.Players.PlayerAdded:connect(function(p)
  3. 02
  4. p.CharacterAdded:connect(function(c)
  5. 03
  6. local hum = p.Character:WaitForChild("Humanoid")
  7. 04
  8. local bHeight = hum:WaitForChild('BodyHeightScale')
  9. 05
  10. local bDepth = hum:WaitForChild('BodyDepthScale')
  11. 06
  12. local bWidth = hum:WaitForChild('BodyWidthScale')
  13. 07
  14. bHeight.Value = 100 --some value u want
  15. 08
  16. bDepth.Value = 1 --some value u want
  17. 09
  18. bWidth.Value = 100 --some value u want
  19. 10
  20. end)
  21. 11
  22. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement