Advertisement
otorp2

roblox scale

Jun 28th, 2019
458
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. print("hu")
  2. game.Players.PlayerAdded:connect(function(p)
  3. p.CharacterAdded:connect(function(c)
  4. local hum = p.Character:WaitForChild("Humanoid") -- U forgot that variable
  5. if hum then
  6. print("hum")
  7. end
  8. local bHeight = hum:WaitForChild('BodyHeightScale')
  9. -- local bDepth = hum:WaitForChild('BodyDepthScale')
  10. -- local bWidth = hum:WaitForChild('BodyWidthScale')
  11. -- local bHead = hum:WaitForChild('HeadScale')
  12. bHeight.Value = 10
  13. -- bDepth.Value = 1
  14. -- bWidth.Value = 1
  15. -- bHead.Value = 5
  16. print("kdk")
  17.  
  18. end)
  19.  
  20. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement