of     1   

ATestAccount420
#228243451Thursday, November 30, 2017 12:34 AM GMT

how do i make a touch interest but only if it touches a part then it does something not like humanoid
LaeMVP
#228243498Thursday, November 30, 2017 12:35 AM GMT

thing.Touched:Connect(function(hit) if hit == yourPart then end end)
ATestAccount420
#228243676Thursday, November 30, 2017 12:39 AM GMT

No like if the class "Part" ## ###
Shylerz
#228244010Thursday, November 30, 2017 12:47 AM GMT

If you want it to check if it is a certain class than it would be: thing.Touched:Connect(function(hit) if ############## ###### then --Code end end) http://wiki.roblox.com/index.php?title=API:Class/Instance/IsA
Shylerz
#228244067Thursday, November 30, 2017 12:49 AM GMT

Sorry, my previous didn't print correctly, I'll type it again: thing.Touched:connect(function(hit) if ############## ###### then --What you want it to do. end end) http://wiki.roblox.com/index.php?title=API:Class/Instance/IsA
Shylerz
#228244236Thursday, November 30, 2017 12:53 AM GMT

It is still tagged for me, basically just change "if hit == yourPart then", from @LaeMVP, to the boolean "IsA". It would end up being "if hit:IsA() then" put your class in the parenthesis and use quotation marks

    of     1