User:Buckethead101: Difference between revisions
From Legacy Roblox Wiki
Jump to navigationJump to search
>Buckethead101 |
>Buckethead101 No edit summary |
||
Line 19: | Line 19: | ||
[[Image:Shoop_Da_Whoop_Yu-Gi-Oh_Card.PNG]] | [[Image:Shoop_Da_Whoop_Yu-Gi-Oh_Card.PNG]] | ||
== Cool Design == | |||
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: | |||
[ Picture Yet to be Uploaded ] | |||
Here's the script. | |||
<pre>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 </pre> | |||
== User Subpages == | == User Subpages == |
Revision as of 10:24, 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:
[ Picture Yet to be Uploaded ]
Here's the script.
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