After clicking on ClickDetector from the distance, it does, well, nothing.
I am also clicking from the set distance.
Code:
local clickDetector = script.Parent
local function onClicked()
print("onClicked")
game.Players.LocalPlayer.PlayerGui.TalkCampman.Enabled = true
end
-- Connect the function to the MouseClick event
clickDetector.MouseClick:Connect(onClicked)
P.S. Never done ClickDetector before, so dont mock me.