Advertisement
iProgeny

Untitled

Jan 13th, 2018
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. local myPart = Instance.new("Part")
  2. local i = 1
  3. while i < 10 do
  4. myPart.Parent = game.Workspace
  5. myPart.Size = Vector3.new(10, 10, 10)
  6. myPart.Anchored = false
  7. i++
  8. end
  9.  
  10. local myMass = myPart:GetMass()
  11.  
  12. print("My part's mass is " .. myMass)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement