Answered by
8 years ago Edited 8 years ago
Using the Camera method is a good idea, do you still have the code with it? If I was in this scenario I would use it. Sorry I cannot use the comments yet, so if you do paste it, ill edit this post again.
EDITED (6:42) - the error you got is because it returns 2 values, a Vector3 and a boolean
EDITED (6:44) - Just looked at your code again, the argument for it needs to be a Vector3 also
04 | local player = game:GetService( "Players" ).LocalPlayer |
05 | local workspace = game:GetService( "Workspace" ) |
06 | local camera = workspace:FindFirstChild( "Camera" ) |
07 | local test = workspace:FindFirstChild( "TestPart" ) |
12 | if ( not camera) then return end |
13 | if ( not test) then return end |
14 | local a, b = camera:WorldToScreenPoint(test.CFrame.p) |
29 | game:GetService( "RunService" ).RenderStepped:connect( function () |
31 | if (counter = = 2 ) then |
my comment did not complete
Theres one thing wrong with it, you should disconnect the event when (RenderStepped) when the part is no more, and instead of upvaluing the test variable from the main scope, you could pass it as an argument in the function