To do this, you need to place a ClickDetector
into the block itself. You can read more about those here.
Once that is added, you need to add a script under the ClickDetector
that fires whenever it is activated through a mouse click. Below is the example used by Roblox.
1 | local clickDetector = workspace.Part.ClickDetector |
4 | print ( "You clicked me!" ) |
7 | clickDetector.MouseClick:connect(onMouseClick) |
Alternatively, you can replace the clickDetector
variable to just have script.Parent
. Either way, they can work but it gets kinda messy if you have multiple blocks with click detectors. That's why I'd use the script.Parent
method.
If this helped you out, consider accepting this answer for those sweet, sweet reputation points. If not, comment below and I (or someone else) will help you out.
Be sure to check out the Roblox API Documentation as well for additional reference.