Creating a local arrow gui between players

I’d like to be able to make a local arrow to show one player the direction of another players. I keep geting error attempt to call a nil value for line 18 when line 18 is local bb = Instance.new('BillboardGui') Line 17 is the event when it’s called. Anybody have any clue what the issue is?

2 Likes

" attempt to call a nil value" calling means you are trying to call (run) a function, but the thing you are trying to call is nil (i.e. doesn’t exist) so it is throwing an error.

You haven’t posted much of your code. My guess is that it might be a bracketing error on one of the above lines if you haven’t connected to the event correctly?