Advertisement
HenloMyDude

fight me im now strong

Jul 12th, 2019
276
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1.  
  2. char = owner.Character
  3. hum = char.Humanoid
  4. hum.BodyDepthScale.Value = 0.25
  5. hum.BodyWidthScale.Value = 0.25
  6.  
  7. weight = Instance.new("Tool",owner.Backpack)
  8. weight.Name = "Weight"
  9. weight.RequiresHandle = false
  10.  
  11. model = Instance.new("Part",weight)
  12. model.Name = "Handle"
  13. model.Size = Vector3.new(0.1, 0.1, 0.1)
  14.  
  15. mesh = Instance.new("SpecialMesh",model)
  16. mesh.MeshId = "http://www.roblox.com/asset/?id=122333663"
  17. mesh.TextureId = "http://www.roblox.com/asset/?id=122333759"
  18.  
  19. --Scripts--
  20.  
  21. weight.Activated:connect(function()
  22. hum.BodyDepthScale.Value = hum.BodyDepthScale.Value + 0.05
  23. hum.BodyWidthScale.Value = hum.BodyWidthScale.Value + 0.05
  24. hum.BodyHeightScale.Value = hum.BodyHeightScale.Value + 0.05
  25. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement