I am making a game. I have apple trees which apples fall off of from the client side.
Which is pretty much just removing the apples from the tree and moving apples in from workspace from serverstorage. This is all done by a clientscript as I don’t want other players to see it. Then those apples have clickdetectors and when I click on the apples nothing happens. Clickdetector is placed in the main part of the apple i’ve tried both client and sever script inside the clickdetector to print(“Click”) when I click on the apple.
script.Parent.MouseClick:Connect(function(plr)
print("click")
end)
My cursor will let me click on it, but doesn’t print “CLICK”