Well, this is quite the question, but if i cloned an Instance,
TestButton.MouseButton1Down:Connect(function()
print("you clicks me!!!!")
end)
local Cloned = TestButton:Clone()
does the
TestButton.MouseButton1Down
gets cloned too?
Well, this is quite the question, but if i cloned an Instance,
TestButton.MouseButton1Down:Connect(function()
print("you clicks me!!!!")
end)
local Cloned = TestButton:Clone()
does the
TestButton.MouseButton1Down
gets cloned too?
The answer is no.
Always check the wiki before posting: Instance:Clone
(although it looks like the wiki doesnt say anything about it… might need to get that fixed)
I see, thank you for the answer. much appreciate!!