please tell me how i can make a simulator click-detector it should add 1 point when holding an item... please help
script.Parent.Equipped:Connect(function(mouse) mouse.Button1Down:Connect(function() print ("clicked") end) end)
I am shy to say the explaination.
The click detector is in a tool? or what?
simple, use the Activated event (reference here: https://developer.roblox.com/api-reference/event/Tool/Activated)
local Tool = script.Parent; -- you should know how to modify this Tool.Activated:Connect(function() -- Example code: print("Clicked"); end);
This will print "Clicked" once the tool has been activated (by pressing mouse 1). Reminder; this should be inside a LocalScript. You'll have to use RemoteEvents / RemoteFunctions to add points.