I am studying on how to make my own code I just need help with using the locate feature this is what I got so far
game.Workspace.part:FindFirstChild()
the child of workspace named "part" has a child named "Part" the thing is when I try this it says there is an error at first I tried "workspace.part:FindFirstChild()" but it was still an error then I tried "local game.Workspace.part;FindFirstChild()" but it didn't work either.
can some one show me how to use the find feature without it having an error. thanks
Try
game.Workspace.part:FindFirstChild("Part")