of     1   

JellyBlobMatt94
#228135261Monday, November 27, 2017 4:40 AM GMT

I have my script where After a few clicks on the part its transparency turns to 1. I want to be able to click the part with a tool equipped and make the transparency of the part equal to 1.
JellyBlobMatt94
#228428167Monday, December 04, 2017 4:27 PM GMT

I am not trying to work with a ClickDetector and not values. I am not sure if I should run a remote event for the mouse and a server for the parts transparency. Any info is appreciated.
cheesecake123456
#228428750Monday, December 04, 2017 4:54 PM GMT

If I understand you right: local tool = script.Parent local part = ###Put part here### tool.Equipped:connect(function(mouse) mouse.Button1Down:connect(function() local target = mouse.Target if (target == part) then part.Transparency = part.Transparency + 0.1 end end) end)

    of     1