I've read every tutorial, I've seen every wiki article and I still only understand the basics of CFraming and Vector3, I don't know why or how CFrame or Vector3 works but I know how to rotate parts using CFrame.Angles() and all that but how do I learn beyond that?
The wiki is very vague and is confusing, doesn't even explain what any of the advanced stuff is and makes things complicated.
How do you learn about all those functions like CFrame.p and lookVector and how to utilize them properly to make stuff like a placement system and what not. I feel like theres a tutorial out there that everyone but me has seen.
When I first started scripting 3 years ago I was like that I learnt from examples so..
CFrame
local Obj = workspace.Object local Obj2 = workspace.Object2 Obj.CFrame = Obj2.CFrame -- You can use other parts as a target
Vector3
local Obj = workspace.Object local Obj2 = workspace.Object2 x =0 y = 2 z = 0 Obj.Position = Obj2.Position + Vector3.new(x,y,z)