script.Parent.Touched:Connect(function(yum)
if yum and yum.Parent:FindFirstChild(game.Workspace.Drop.Drop) then
print(yum.Parent)
print("Hooraw")
else
print(yum.Parent)
end
end)
Ok so this is suppose to first trigger all this when a small part is touch then it checks what thing touched the small part and if the part is Drop in the Drop file then it would then print "Hooraw" but it doesnt work i tried to fix it by adding more here (game.Workspace.Drop.Drop) it was ("Drop") and it doesnt work either way can you help?
What exactly is the "yum" function? You haven't put anything there, so it won't do anything. Also, use a code block next time.