I would like to be able to end a while true loop by using a ClickDetector button but I am unsure how. Any help would be appreciated.
while whatever do --do your loop code if clickdetector.mouseclick then break else continue end end
matiss is correct, but it is a bit off. This is more how it should be.
while condition do --loop code ClickDetector.MouseClick:Connect(function() break end) end