I have a LocalScript in StarterPlayerScripts that handle most of the client stuff. In this local script I have a while loop which just refuses to run after waiting for no apparent reason. It was working yesterday, I didn’t change anything but it just stops now?
-- Part of the script before the loop (which runs fine)
while true do
print("A") --> prints A
local Delta = task.wait(0.05)
print("B") --> Doesn't print B??
-- Rest of the Loop
Nvm I figured it out I had a local script that was deleting StarterPlayerScripts (I did script.Parent:Destroy() instead of script:Destroy() on accident)