Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

Parts that know when the player is/isn't looking at them?

Asked by
Troidit 253 Moderation Voter
8 years ago
Edited 8 years ago

I've seen it done on games before so I know it's possible.

I'm trying to create a scenario where when the player looks at an object, looks away, and looks back again, the object is removed/destroyed. I've tried using a local script, and using the function WorldToScreenPoint() with the camera but I failed tragically.

How would I accomplish this?

My failed attempt that gave me the error "Unable to cast array to Vector3"

1local cam = workspace.CurrentCamera
2 
3while true do
4    if cam:WorldToScreenPoint({-28, 0.6, 25}) == true then --checking if anyone is looking at camera
5        repeat wait() until cam:WorldToScreenPoint({-28, 0.6, 25}) == false -- waits until they aren't looking at the camera
6        game.Workspace.Part:Destory()
7    end
8end
0
Good Question. User#11440 120 — 8y

1 answer

Log in to vote
1
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

01--[[
02It seemed to work for me, but remember it is an example, it is not meant to be good I guess.
03]]
04local player = game:GetService("Players").LocalPlayer
05local workspace = game:GetService("Workspace")
06local camera = workspace:FindFirstChild("Camera") --you could do workspace.CurrentCamera
07local test = workspace:FindFirstChild("TestPart")
08local deb = false
09local counter = 0
10 
11function Looked()
12    if (not camera) then return end
13    if (not test) then return end
14    local a, b = camera:WorldToScreenPoint(test.CFrame.p)
15 
View all 34 lines...

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

0
Ill make an example TheLowOne 85 — 8y
0
I tried it on a new place that I didn't save. But I can make the code again quickly Troidit 253 — 8y
0
also TheLowOne 85 — 8y
0
The error you got is because it returns 2 results TheLowOne 85 — 8y
Ad

Answer this question