User:Buckethead101: Difference between revisions
From Legacy Roblox Wiki
Jump to navigationJump to search
>Buckethead101 |
>Buckethead101 |
||
Line 22: | Line 22: | ||
After messing around with one of [http://wiki.roblox.com/index.php/User:Mindraker/Mathematical#Hypotrochoids Mindraker's scripts] for a while, I came up with this: | After messing around with one of [http://wiki.roblox.com/index.php/User:Mindraker/Mathematical#Hypotrochoids Mindraker's scripts] for a while, I came up with this: | ||
[[Image:Formula.png|thumb|This is what I got from messing around with Mindraker's script.]] | [[Image:Formula.png|300px|thumb|This is what I got from messing around with Mindraker's script.]] | ||
<pre>for i = 0,1000, 1 do | <pre>for i = 0,1000, 1 do |
Revision as of 10:52, 30 December 2008
My Tutorial is On!
I guess I won't be neeeding it on my user page anymore.
Speaking of My Tutorial...
Here's a link to it.
Make Meh Happy
Go to my Destuction Derby place.
Well, actually, go to any of my places.
Lolwut
My first Yu-Gi-Oh card!
File:Shoop Da Whoop Yu-Gi-Oh Card.PNG
Cool Design
After messing around with one of Mindraker's scripts for a while, I came up with this:
for i = 0,1000, 1 do R=12 r=7 d=17 x=((R-r)*math.cos(i))+d*math.cos(((R-r)/r)*i) y=((R-r)*math.sin(i))-d*math.sin(((R-r)/r)*i) p = Instance.new("Part") p.CFrame = CFrame.new(Vector3.new(5*x, 5*y, 5)) p.Size = Vector3.new(7,7,7) p.Anchored = true p.BottomSurface = "Smooth" p.TopSurface = "Smooth" p.Parent = game.Workspace p.BrickColor = BrickColor.new(26) end