Whoui
|
  |
| Joined: 26 Jul 2013 |
| Total Posts: 219 |
|
|
| 16 Jun 2014 08:38 PM |
| How do I make a hollow sphere that a ROBLOXian can fit in. Also if I made this would It be able to roll. If you could please tell me how to make one or a link to one it would be helpfuls. :D:P:):( |
|
|
| Report Abuse |
|
|
|
| 16 Jun 2014 08:43 PM |
u mean a hamster ball? FOUND IT!
http://www.roblox.com/hamster-ball-works-item?id=36623459 |
|
|
| Report Abuse |
|
|
|
| 16 Jun 2014 08:44 PM |
hey would u be interested in this i can teach u everything to help me
http://www.roblox.com/Forum/ShowPost.aspx?PostID=137219332 |
|
|
| Report Abuse |
|
|
MADTBONE
|
  |
| Joined: 28 Apr 2011 |
| Total Posts: 274 |
|
|
| 16 Jun 2014 08:44 PM |
Get a circle, and go to properties and change the mesh to -(Whatever number). That's how you make a atmosphere sorta thingy, And remember. 1 = 1 Stud |
|
|
| Report Abuse |
|
|
|
| 16 Jun 2014 08:53 PM |
Here is a circle script that will create a sphere. I didn't write it, I got it from someone here and don't remember who.
It is easy to change the numbers for less parts or smaller sphere.
for run = 0,20 do for angle = 1, 360, 15 do local p = Instance.new('Part') p.Parent = Workspace p.FormFactor = "Custom" p.Size = Vector3.new(4,2.9,1) p.Anchored = true p.CFrame = CFrame.new(0, 0, 0) --Start at the center of the circle * CFrame.Angles(math.rad(angle), run*2, 0) --Rotate the brick * CFrame.new(0, 0, 10) --Move it out by 50 units wait() end wait() end
|
|
|
| Report Abuse |
|
|