of     1   

kornawe
#44923935Friday, April 01, 2011 4:11 PM GMT

Part.CFrame = CFrame.new(X,Y,0,Part.CFrame * CFrame.fromEulerAnglesXYZ(0,math.rad(100/180),0)) X and Y are Number values. I'm trying to make track without having to CFrame each individule piece it's in A for loop that runs 10,110 It should make a circle, but output says: Invalid number of arguments: 4
kornawe
#44924000Friday, April 01, 2011 4:13 PM GMT

Sorry for stupid name only way people will look at this
akiake
#44924221Friday, April 01, 2011 4:20 PM GMT

Part.CFrame = Part.CFrame*CFrame.fromEulerAnglesXYZ(0,math.rad(100/180),0)
kornawe
#44924677Friday, April 01, 2011 4:33 PM GMT

No, I need to Generate its position and it's roatation I'll post an enhanced version
kornawe
#44924970Friday, April 01, 2011 4:42 PM GMT

Part = Instance.new("Part") Part.Name = "Brick" Part.formFactor = 3 Part.Size = Vector3.new(2,2,4) Part.TopSurface = 0 Part.BottomSurface = 0 Part.Anchored = true for X = -100,100,1 do wait() Part = Part:Clone() Part.Parent = Workspace Y = -(0.1*X)^2 + 100 Part.CFrame = CFrame.new(Vector3.new(X,Y,0)) * CFrame.fromEulerAnglesXYZ(0,math.rad(math.rad(X/180)),0) end Put it in your place, I'm trying to make the arch smooth, it's a porabola
kornawe
#45007282Sunday, April 03, 2011 1:06 AM GMT

Hello?

    of     1