I’m trying to make a print loop without using ANY methods of looping but it only prints once. How do I make it run forever?
local D
function Check(Child)
if tostring(Child):match(Child.Name) then
print(tostring(Child))
D = Child
end
end
workspace.ChildAdded:Connect(function(Child)
if tostring(Child):match(Child.Name) then
print(tostring(Child))
D = Child
end
end)
game:GetService("LogService").MessageOut:Connect(function(Message)
if Message == tostring(D) then
Check(D)
end
end)